The patch titled
Subject: cciss: fix incorrect scsi status reporting
has been removed from the -mm tree. Its filename was
cciss-fix-incorrect-scsi-status-reporting.patch
This patch was dropped because it was merged into mainline or a subsystem tree
------------------------------------------------------
From: Stephen M. Cameron <[email protected]>
Subject: cciss: fix incorrect scsi status reporting
Delete code which sets SCSI status incorrectly as it's already been set
correctly above this incorrect code. Bug was introduced by b0e15f6db1110
("cciss: fix typo that causes scsi status to be lost.") in 2009.
Signed-off-by: Stephen M. Cameron <[email protected]>
Reported-by: Roel van Meer <[email protected]>
Tested-by: Roel van Meer <[email protected]>
Cc: Jens Axboe <[email protected]>
Cc: <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
---
drivers/block/cciss_scsi.c | 11 +----------
1 file changed, 1 insertion(+), 10 deletions(-)
diff -puN drivers/block/cciss_scsi.c~cciss-fix-incorrect-scsi-status-reporting
drivers/block/cciss_scsi.c
--- a/drivers/block/cciss_scsi.c~cciss-fix-incorrect-scsi-status-reporting
+++ a/drivers/block/cciss_scsi.c
@@ -763,16 +763,7 @@ static void complete_scsi_command(Comman
{
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
_
Patches currently in -mm which might be from [email protected] are
origin.patch
cciss-cleanup-bitops-usage.patch
cciss-use-check_signature.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html