From 9adc308a2aa2e623a0c5766a64fdc9ff07015a03 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Mon, 21 Sep 2009 18:43:15 +0000 Subject: [PATCH] Since it is normal that the SCST core calls srpt_xmit_response() for a command that has already been aborted, changed the message that reports this from an error message to an informational message. git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@1123 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- srpt/src/ib_srpt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srpt/src/ib_srpt.c b/srpt/src/ib_srpt.c index ec1b72590..6bb46badf 100644 --- a/srpt/src/ib_srpt.c +++ b/srpt/src/ib_srpt.c @@ -2340,8 +2340,8 @@ static int srpt_xmit_response(struct scst_cmd *scmnd) srp_rsp = ioctx->buf; if (unlikely(scst_cmd_aborted(scmnd))) { - PRINT_ERROR("%s: tag= %lld already got aborted", - __func__, (unsigned long long)tag); + PRINT_INFO("%s: tag= %lld already got aborted", + __func__, (unsigned long long)tag); goto out_aborted; }