From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 939CC7F7F5; Mon, 8 Apr 2024 14:01:57 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712584917; cv=none; b=HkyP+3tWFjJTdXoisVDE06VzbtZLjigEwSdGJeFKC7z2Nrt4/P8by0kIBrHTwohGzWmtg0D2Gkzlo9GNHjuWSnmFKV5M2AWjrD2Y+KxrPT7iXuCNExXk2SGo54kgGNSUu5+pxhx1/YmCuEdGerYWSWew8pQYYgy9dnps7k2f/Y4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712584917; c=relaxed/simple; bh=9I5o45zZLWBFo43GFvtE98egA3pbJKnISyczmjt+LBk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=VlHeIt9ijl52nlBdypoU3BUt6NE/xEPkRNayps8Xe/Mua6t/6hiuYThKR2LINjYxkrfM4rAT2QTWUKcbVaL1QhIvEWnLR9R7IcUCQCoclW6NRXz1r6bCI4q6WV7r1JQV2w5NLYSqJCxeNzxY9ahQrCsHcXMrtmoS6q9OrPmTiTI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Xg9J5aMA; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="Xg9J5aMA" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C52E1C433F1; Mon, 8 Apr 2024 14:01:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1712584917; bh=9I5o45zZLWBFo43GFvtE98egA3pbJKnISyczmjt+LBk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Xg9J5aMA4mqnFAUMnjKS/p2V/JPilqYmtDfC3VI2NpuiKEaMoZh2y1sHiMCJxiE4s auHQcyxkTVYTrX8PP7J48zPmusL4rKvmqb9JxQCI4zSUQVhn0PPZoFalP/mkFItUA3 yADsOElrLGhMyWLB9DGldbbP0IK9aXmIiaU5/Jdk= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Saurav Kashyap , Nilesh Javali , Himanshu Madhani , "Martin K. Petersen" Subject: [PATCH 5.15 600/690] scsi: qla2xxx: Change debug message during driver unload Date: Mon, 8 Apr 2024 14:57:46 +0200 Message-ID: <20240408125421.328083560@linuxfoundation.org> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240408125359.506372836@linuxfoundation.org> References: <20240408125359.506372836@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Saurav Kashyap commit b5a30840727a3e41d12a336d19f6c0716b299161 upstream. Upon driver unload, purge_mbox flag is set and the heartbeat monitor thread detects this flag and does not send the mailbox command down to FW with a debug message "Error detected: purge[1] eeh[0] cmd=0x0, Exiting". This being not a real error, change the debug message. Cc: stable@vger.kernel.org Signed-off-by: Saurav Kashyap Signed-off-by: Nilesh Javali Link: https://lore.kernel.org/r/20240227164127.36465-10-njavali@marvell.com Reviewed-by: Himanshu Madhani Signed-off-by: Martin K. Petersen Signed-off-by: Greg Kroah-Hartman --- drivers/scsi/qla2xxx/qla_mbx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/scsi/qla2xxx/qla_mbx.c +++ b/drivers/scsi/qla2xxx/qla_mbx.c @@ -194,7 +194,7 @@ qla2x00_mailbox_command(scsi_qla_host_t if (ha->flags.purge_mbox || chip_reset != ha->chip_reset || ha->flags.eeh_busy) { ql_log(ql_log_warn, vha, 0xd035, - "Error detected: purge[%d] eeh[%d] cmd=0x%x, Exiting.\n", + "Purge mbox: purge[%d] eeh[%d] cmd=0x%x, Exiting.\n", ha->flags.purge_mbox, ha->flags.eeh_busy, mcp->mb[0]); rval = QLA_ABORTED; goto premature_exit;