Skip to content

Commit d644508

Browse files
cvswendcrowell77
authored andcommitted
Make MCTP depth counter traces debug only
These traces are triggering often and no longer provide much value so remove from default tracing. Change-Id: I2fe80cd0eb8d05b5736cfe612f94e7b618cb2d60 Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/130737 Tested-by: Jenkins OP Build CI <[email protected]> Tested-by: Jenkins Server <[email protected]> Tested-by: Jenkins Combined Simics CI <[email protected]> Tested-by: FSP CI Jenkins <[email protected]> Tested-by: Jenkins OP HW <[email protected]> Tested-by: Hostboot CI <[email protected]> Reviewed-by: Chen Du <[email protected]> Reviewed-by: Ilya Smirnov <[email protected]> Reviewed-by: Daniel M Crowell <[email protected]>
1 parent 01fcff2 commit d644508

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/usr/util/runtime/rt_fwreq_helper.C

+2-2
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,7 @@ void setMctpBridgeState(hostInterfaces::MCTP_BRIDGE_STATE_t i_mctpBridgeState,
10481048
{
10491049
case hostInterfaces::MCTP_BRIDGE_ENABLED:
10501050
g_MctpDepthCounter++;
1051-
TRACFCOMP(g_trac_runtime,
1051+
TRACDCOMP(g_trac_runtime,
10521052
"Inc MCTP depth counter = %d",g_MctpDepthCounter);
10531053
assert(g_MctpDepthCounter != 0,
10541054
"setMctpBridgeState: MCTP depth counter exceeded max value");
@@ -1061,7 +1061,7 @@ void setMctpBridgeState(hostInterfaces::MCTP_BRIDGE_STATE_t i_mctpBridgeState,
10611061
assert(g_MctpDepthCounter > 0,
10621062
"setMctpBridgeState: MCTP depth counter < 0");
10631063
g_MctpDepthCounter--;
1064-
TRACFCOMP(g_trac_runtime,
1064+
TRACDCOMP(g_trac_runtime,
10651065
"Dec MCTP depth counter = %d",g_MctpDepthCounter);
10661066
break;
10671067
}

0 commit comments

Comments
 (0)