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
2631ce92
Commit
2631ce92
authored
5 years ago
by
Grzegorz Daniluk
Browse files
Options
Downloads
Patches
Plain Diff
snmp: fix wrsSlaveLinksStatus and wrsTimingStatus errors
parent
a3292984
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/snmpd/wrsPtpInstanceTable.c
+6
-17
6 additions, 17 deletions
userspace/snmpd/wrsPtpInstanceTable.c
userspace/snmpd/wrsTimingStatusGroup.c
+41
-0
41 additions, 0 deletions
userspace/snmpd/wrsTimingStatusGroup.c
with
47 additions
and
17 deletions
userspace/snmpd/wrsPtpInstanceTable.c
+
6
−
17
View file @
2631ce92
...
...
@@ -78,7 +78,6 @@ time_t wrsPtpInstanceTable_data_fill(unsigned int *n_rows)
char
*
tmpstr_p
;
int
vlan_i
;
float
tmp_f
;
int
bc_has_slave
=
0
;
slog_obj_name
=
wrsPtpInstanceStatusError_str
;
/* number of rows does not change for wrsPortStatusTable */
...
...
@@ -208,8 +207,9 @@ time_t wrsPtpInstanceTable_data_fill(unsigned int *n_rows)
{
i_a
[
i
].
wrsPtpInstanceStatusError
=
WRS_SLAVE_LINK_STATUS_OK
;
if
((
p_a
[
phys_port
].
wrsPortStatusMonitor
!=
WRS_PORT_STATUS_MONITOR_DISABLE
)
&&
(
p_a
[
phys_port
].
wrsPortStatusLink
==
WRS_PORT_STATUS_LINK_UP
))
/* error when there is an active Slave port in GM of FM mode */
if
((
p_a
[
phys_port
-
1
].
wrsPortStatusMonitor
!=
WRS_PORT_STATUS_MONITOR_DISABLE
)
&&
(
p_a
[
phys_port
-
1
].
wrsPortStatusLink
==
WRS_PORT_STATUS_LINK_UP
))
{
if
((
i_a
[
i
].
wrsPtpInstanceState
==
PPS_SLAVE
||
i_a
[
i
].
wrsPtpInstanceState
==
PPS_UNCALIBRATED
)
&&
...
...
@@ -232,12 +232,8 @@ time_t wrsPtpInstanceTable_data_fill(unsigned int *n_rows)
slog_obj_name
,
i
,
phys_port
,
i_a
[
i
].
wrsPtpInstancePortName
);
}
}
if
((
p_a
[
phys_port
].
wrsPortStatusLink
==
WRS_PORT_STATUS_LINK_UP
)
&&
(
i_a
[
i
].
wrsPtpInstanceState
==
PPS_SLAVE
))
{
bc_has_slave
=
1
;
}
if
((
p_a
[
phys_port
].
wrsPortStatusMonitor
!=
WRS_PORT_STATUS_MONITOR_DISABLE
)
&&
if
((
p_a
[
phys_port
-
1
].
wrsPortStatusMonitor
!=
WRS_PORT_STATUS_MONITOR_DISABLE
)
&&
(
hal_shmem
->
hal_mode
==
HAL_TIMING_MODE_BC
)
&&
(
i_a
[
i
].
wrsPtpInstanceExtPortCfgDesSt
==
PPS_SLAVE
))
{
...
...
@@ -251,7 +247,7 @@ time_t wrsPtpInstanceTable_data_fill(unsigned int *n_rows)
"is not in SLAVE state.
\n
"
,
slog_obj_name
,
i
,
phys_port
,
i_a
[
i
].
wrsPtpInstancePortName
);
}
if
(
p_a
[
phys_port
].
wrsPortStatusLink
==
WRS_PORT_STATUS_LINK_DOWN
)
if
(
p_a
[
phys_port
-
1
].
wrsPortStatusLink
==
WRS_PORT_STATUS_LINK_DOWN
)
{
i_a
[
i
].
wrsPtpInstanceStatusError
=
WRS_SLAVE_LINK_STATUS_ERROR
;
snmp_log
(
LOG_ERR
,
"SNMP: "
SL_ER
" %s: "
...
...
@@ -263,13 +259,6 @@ time_t wrsPtpInstanceTable_data_fill(unsigned int *n_rows)
}
}
}
if
(
hal_shmem
->
hal_mode
==
HAL_TIMING_MODE_BC
&&
bc_has_slave
==
0
)
{
i_a
[
i
].
wrsPtpInstanceStatusError
=
WRS_SLAVE_LINK_STATUS_ERROR
;
snmp_log
(
LOG_ERR
,
"SNMP: "
SL_ER
" %s: "
"In Boundary Clock mode, there is no port in SLAVE state
\n
"
,
slog_obj_name
);
}
retries
++
;
if
(
retries
>
100
)
{
...
...
This diff is collapsed.
Click to expand it.
userspace/snmpd/wrsTimingStatusGroup.c
+
41
−
0
View file @
2631ce92
...
...
@@ -3,6 +3,7 @@
#include
"wrsPtpDataTable.h"
#include
"wrsSpllStatusGroup.h"
#include
"wrsPortStatusTable.h"
#include
"wrsPtpInstanceTable.h"
#include
"wrsTimingStatusGroup.h"
static
struct
pickinfo
wrsTimingStatus_pickinfo
[]
=
{
...
...
@@ -313,7 +314,11 @@ static void get_wrsSlaveLinksStatus(unsigned int port_status_nrows)
{
struct
wrsSpllStatus_s
*
s
;
struct
wrsPortStatusTable_s
*
p_a
;
struct
wrsPtpInstanceTable_s
*
i_a
;
struct
wrsTimingStatus_s
*
t
;
struct
pp_instance
*
ppsi_i
;
int
phys_port
;
int
has_slave
=
0
;
int
i
;
/*********************************************************************\
...
...
@@ -326,9 +331,45 @@ static void get_wrsSlaveLinksStatus(unsigned int port_status_nrows)
*/
s
=
&
wrsSpllStatus_s
;
p_a
=
wrsPortStatusTable_array
;
i_a
=
wrsPtpInstanceTable_array
;
t
=
&
wrsTimingStatus_s
;
slog_obj_name
=
wrsSlaveLinksStatus_str
;
t
->
wrsSlaveLinksStatus
=
WRS_SLAVE_LINK_STATUS_OK
;
if
(
!
shmem_ready_hald
())
{
/* HAL shmem not available yet */
t
->
wrsSlaveLinksStatus
=
WRS_SLAVE_LINK_STATUS_WARNING_NA
;
return
;
}
for
(
i
=
0
;
i
<
*
ppsi_ppi_nlinks
;
i
++
)
{
ppsi_i
=
ppsi_ppi
+
i
;
/* wrsSlaveLinksStatus is ERROR if any of the instances are ERROR */
if
(
i_a
[
i
].
wrsPtpInstanceStatusError
==
WRS_SLAVE_LINK_STATUS_ERROR
)
{
t
->
wrsSlaveLinksStatus
=
WRS_SLAVE_LINK_STATUS_ERROR
;
snmp_log
(
LOG_ERR
,
"SNMP: "
SL_ER
" %s: "
"One of the PTP Instances reports link status error. "
"Check wrsPtpInstanceTable for more details.
\n
"
,
slog_obj_name
);
}
phys_port
=
i_a
[
i
].
wrsPtpInstancePort
;
if
((
p_a
[
phys_port
-
1
].
wrsPortStatusLink
==
WRS_PORT_STATUS_LINK_UP
)
&&
(
i_a
[
i
].
wrsPtpInstanceState
==
PPS_SLAVE
))
{
has_slave
=
1
;
}
}
/* wrsSlaveLinksStatus is ERROR if the configured mode is BC (defined by
* the clock class of defaultDS) and there is no active slave port*/
if
(
ppsi_defaultDS
->
clockQuality
.
clockClass
>
127
&&
has_slave
==
0
)
{
t
->
wrsSlaveLinksStatus
=
WRS_SLAVE_LINK_STATUS_ERROR
;
snmp_log
(
LOG_ERR
,
"SNMP: "
SL_ER
" %s: "
"In Boundary Clock mode, there is no active port in "
"SLAVE state
\n
"
,
slog_obj_name
);
}
}
static
void
get_wrsPTPFramesFlowing
(
unsigned
int
port_status_nrows
)
...
...
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