diff options
author | Andrew Jeffery <andrewrj@au1.ibm.com> | 2018-09-21 10:08:35 +0930 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2018-09-25 12:34:13 -0500 |
commit | 2c582e41b2817400e8511716901cb0d012a251b2 (patch) | |
tree | 5eb1e5474e0534cfaca391f278e7769ce64f942f /src | |
parent | 9b1dcc3aeea988aab3b1ee583d9d94fbb37d9fd1 (diff) | |
download | blackbird-hostboot-2c582e41b2817400e8511716901cb0d012a251b2.tar.gz blackbird-hostboot-2c582e41b2817400e8511716901cb0d012a251b2.zip |
intr: Use the correct trace handle in intrrp TRACDCOMP calls
Change-Id: If352854176ada680856bba0ea6cb5df92e8ed8f4
Signed-off-by: Andrew Jeffery <andrewrj@au1.ibm.com>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/66569
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/usr/intr/intrrp.C | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr/intr/intrrp.C b/src/usr/intr/intrrp.C index dffdc6273..3c2e53110 100644 --- a/src/usr/intr/intrrp.C +++ b/src/usr/intr/intrrp.C @@ -128,7 +128,7 @@ errlHndl_t IntrRp::resetIntpForMpipl() if (hb_existing_image == 0) { //single node system so do nothing - TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, + TRACDCOMP( g_trac_intr, "IntrRp::resetIntpForMpipl() called on a single node system, skip INTRP sync steps"); } else @@ -1313,8 +1313,8 @@ void IntrRp::msgHandler() case MSG_INTR_ADD_CPU_TIMEOUT: { PIR_t pir = msg->data[0]; - TRACDCOMP("IntrRp::msgHandler() CPU Timeout Message " - "received for: %x", pir.word); + TRACDCOMP(g_trac_intr, "IntrRp::msgHandler() CPU Timeout Message received for: %x", + pir.word); size_t count = msg->data[1]; if(iv_ipisPending.count(pir)) |