Skip to content

Commit

Permalink
Add sequence id to IPMI timeout traces
Browse files Browse the repository at this point in the history
Adding the very important IPMI sequence id to the trace that
we push out when we get a timeout on a IPMI message.

Change-Id: Ia89332defba1fd2901a17fb3cefeeb7d69e9737a
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/75039
Tested-by: Jenkins Server <[email protected]>
Tested-by: Jenkins OP Build CI <[email protected]>
Tested-by: Jenkins OP HW <[email protected]>
Reviewed-by: William G. Hoffa <[email protected]>
  • Loading branch information
dcrowell77 authored and wghoffa committed Apr 10, 2019
1 parent e319903 commit d7b076b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/usr/ipmibase/ipmirp.C
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,8 @@ void IpmiRP::timeoutThread(void)

if (now >= timeout)
{
IPMI_TRAC("timeout: %x:%x", msg->iv_netfun, msg->iv_cmd);
IPMI_TRAC("timeout: %x:%x, seq=x%X",
msg->iv_netfun, msg->iv_cmd, msg->iv_seq );

// This little bugger timed out. Get him off the timeoutq
iv_timeoutq.pop_front();
Expand Down

0 comments on commit d7b076b

Please sign in to comment.