Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
White Rabbit Switch - Software
Manage
Activity
Members
Labels
Plan
Issues
87
Issue boards
Milestones
Wiki
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
White Rabbit Switch - Software
Commits
7b77fa1d
Commit
7b77fa1d
authored
12 years ago
by
Tomasz Wlostowski
Browse files
Options
Downloads
Patches
Plain Diff
userspace/rtu_stat: support variable number of ports, show MAC/portmask
parent
7c75c8b1
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
userspace/rtu_stat/Makefile
+2
-2
2 additions, 2 deletions
userspace/rtu_stat/Makefile
userspace/rtu_stat/rtu_stat.c
+15
-6
15 additions, 6 deletions
userspace/rtu_stat/rtu_stat.c
with
17 additions
and
8 deletions
userspace/rtu_stat/Makefile
+
2
−
2
View file @
7b77fa1d
...
...
@@ -9,9 +9,9 @@ STRIP = $(CROSS_COMPILE)strip
OBJCOPY
=
$(
CROSS_COMPILE
)
objcopy
OBJDUMP
=
$(
CROSS_COMPILE
)
objdump
OBJS
=
rtu_stat.o
OBJS
=
rtu_stat.o
../ptp-noposix/libptpnetif/hal_client.o
CFLAGS
=
-O2
-I
../include
-DDEBUG
-I
$(
LINUX
)
/include
-I
../libptpnetif
\
CFLAGS
=
-O2
-I
../include
-DDEBUG
-I
$(
LINUX
)
/include
-I
../
ptp-noposix/
libptpnetif
\
-I
../wrsw_hal
-I
../wrsw_rtud
-I
../mini-rpc
-g
LDFLAGS
=
-L
$(
WR_INSTALL_ROOT
)
/lib
-L
../mini-rpc
-lminipc
...
...
This diff is collapsed.
Click to expand it.
userspace/rtu_stat/rtu_stat.c
+
15
−
6
View file @
7b77fa1d
...
...
@@ -9,7 +9,7 @@
static
struct
minipc_ch
*
rtud_ch
;
static
hexp_port_list_t
plist
;
void
rtudexp_get_fd_list
(
rtudexp_fd_list_t
*
list
,
int
start_from
)
{
minipc_call
(
rtud_ch
,
200
,
&
rtud_export_get_fd_list
,
list
,
...
...
@@ -61,7 +61,7 @@ char *decode_ports(int dpm)
static
char
str
[
80
],
str2
[
20
];
int
i
;
if
((
dpm
&
0x7ff
)
==
0x7ff
)
if
((
dpm
&
((
1
<<
plist
.
num_physical_ports
)
-
1
))
==
((
1
<<
plist
.
num_physical_ports
)
-
1
)
)
{
strcpy
(
str
,
"ALL"
);
return
str
;
...
...
@@ -76,7 +76,7 @@ char *decode_ports(int dpm)
if
(
dpm
&
(
1
<<
i
))
strcat
(
str
,
str2
);
}
if
(
dpm
&
(
1
<<
10
))
if
(
dpm
&
(
1
<<
plist
.
num_physical_ports
))
strcat
(
str
,
"CPU"
);
return
str
;
...
...
@@ -87,17 +87,26 @@ char *decode_ports(int dpm)
main
()
{
rtudexp_fd_entry_t
fd_list
[
RTU_MAX_ENTRIES
];
int
n_entries
;
int
i
;
if
(
halexp_client_init
()
<
0
)
{
printf
(
"Can't conenct to HAL mini-rpc server
\n
"
);
return
-
1
;
}
rtud_ch
=
minipc_client_create
(
"rtud"
,
0
);
if
(
!
rtud_ch
)
{
printf
(
"Can't conenct to RTUd
wri
pc server
\n
"
);
return
0
;
printf
(
"Can't conenct to RTUd
mini-r
pc server
\n
"
);
return
-
1
;
}
halexp_query_ports
(
&
plist
);
fetch_rtu_fd
(
fd_list
,
&
n_entries
);
qsort
(
fd_list
,
n_entries
,
sizeof
(
rtudexp_fd_entry_t
),
cmp_entries
);
...
...
@@ -109,7 +118,7 @@ main()
for
(
i
=
0
;
i
<
n_entries
;
i
++
)
{
printf
(
"%-25s %-22s %s
\n
"
,
mac_to_string
(
fd_list
[
i
].
mac
),
decode_ports
(
fd_list
[
i
].
dpm
),
fd_list
[
i
].
dynamic
?
"DYNAMIC"
:
"STATIC"
);
printf
(
"%-25s %-22s %s
(mask %x hash %x)
\n
"
,
mac_to_string
(
fd_list
[
i
].
mac
),
decode_ports
(
fd_list
[
i
].
dpm
),
fd_list
[
i
].
dynamic
?
"DYNAMIC"
:
"STATIC"
,
fd_list
[
i
].
dpm
,
fd_list
[
i
].
hash
);
}
printf
(
"
\n
"
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment