[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20120504182114.24883.40748.stgit@beardog.cce.hp.com>
Date: Fri, 04 May 2012 13:21:14 -0500
From: "Stephen M. Cameron" <scameron@...rdog.cce.hp.com>
To: axboe@...nel.dk
Cc: stephenmcameron@...il.com, akpm@...ux-foundation.org,
mikem@...rdog.cce.hp.com, linux-kernel@...r.kernel.org,
thenzl@...hat.com
Subject: [PATCH] cciss: fix incorrect scsi status reporting
From: Stephen M. Cameron <scameron@...rdog.cce.hp.com>
Delete code which sets SCSI status incorrectly as it's already
been set correctly above this incorrect code. Bug was introduced
by b0e15f6db1110319cb2e747e59e1200450a5ba3e
"cciss: fix typo that causes scsi status to be lost." in 2009.
Signed-off-by: Stephen M. Cameron <scameron@...rdog.cce.hp.com>
Reported-and-tested-by: Roel van Meer <roel.vanmeer@...xing.nl>
Cc: stable@...r.kernel.org
---
drivers/block/cciss_scsi.c | 11 +----------
1 files changed, 1 insertions(+), 10 deletions(-)
diff --git a/drivers/block/cciss_scsi.c b/drivers/block/cciss_scsi.c
index acda773..38aa6dd 100644
--- a/drivers/block/cciss_scsi.c
+++ b/drivers/block/cciss_scsi.c
@@ -763,16 +763,7 @@ static void complete_scsi_command(CommandList_struct *c, int timeout,
{
case CMD_TARGET_STATUS:
/* Pass it up to the upper layers... */
- if( ei->ScsiStatus)
- {
-#if 0
- printk(KERN_WARNING "cciss: cmd %p "
- "has SCSI Status = %x\n",
- c, ei->ScsiStatus);
-#endif
- cmd->result |= (ei->ScsiStatus << 1);
- }
- else { /* scsi status is zero??? How??? */
+ if (!ei->ScsiStatus) {
/* Ordinarily, this case should never happen, but there is a bug
in some released firmware revisions that allows it to happen
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists