From c68cbb3274ef284cedbf0cbaae9bd79499f6dab0 Mon Sep 17 00:00:00 2001 From: "vwan@ti.com" Date: Fri, 14 Nov 2014 16:26:22 -0800 Subject: [PATCH] Make MessageQCopy_send less noisy in QNX This patch downgrades a common error message from MessageQCopy_send to an info message of GT_2CLASS. The message was appearing even during normal operation when a slave is not attached. This addresses SDOCM00106179. Signed-off-by: VW --- qnx/src/ipc3x_dev/ti/syslink/ipc/hlos/knl/MessageQCopy.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/qnx/src/ipc3x_dev/ti/syslink/ipc/hlos/knl/MessageQCopy.c b/qnx/src/ipc3x_dev/ti/syslink/ipc/hlos/knl/MessageQCopy.c index b03ae30..874b5e7 100644 --- a/qnx/src/ipc3x_dev/ti/syslink/ipc/hlos/knl/MessageQCopy.c +++ b/qnx/src/ipc3x_dev/ti/syslink/ipc/hlos/knl/MessageQCopy.c @@ -1373,11 +1373,9 @@ MessageQCopy_send (UInt16 dstProc, UInt16 srcProc, UInt32 dstEndpt, if (obj == NULL) { status = MessageQCopy_E_INVALIDARG; - GT_setFailureReason (curTrace, - GT_4CLASS, - "MessageQCopy_send", - status, - "obj is NULL."); + GT_1trace(curTrace, GT_2CLASS, + "MessageQCopy_send: obj is NULL. Core %d is not attached", + dstProc); } else if (obj->vq[1] == NULL) { status = MessageQCopy_E_INVALIDSTATE; -- 2.39.2