]> git.baikalelectronics.ru Git - kernel.git/commit
[SCSI] sd: remove command-size switching code
authorAlan Stern <stern@rowland.harvard.edu>
Fri, 10 Oct 2008 20:03:20 +0000 (16:03 -0400)
committerJames Bottomley <James.Bottomley@HansenPartnership.com>
Thu, 23 Oct 2008 16:42:19 +0000 (11:42 -0500)
commitbc98e683f657c5032a632486c29bf124bcb6a2de
treee27d56d2cb3ee0ffcab0499654105cad5efa1627
parent8c74fe700b3a39da254196518525d39a5659bf31
[SCSI] sd: remove command-size switching code

This patch (as1138) removes from sd.c some old code for switching from
10-byte commands to 6-byte commands.  This code is redundant -- the
switching for READ and WRITE is already handled in
scsi_io_completion() and the switching for MODE SENSE is already
handled in scsi_mode_sense().  (There is no comparable switch for MODE
SELECT, but I doubt one is needed.)

Furthermore the other handlers do a better job; they check for
appropriate ASC and ASCQ values before blindly switching the size.
The code in sd.c is known to cause problems with some devices by
switching when it shouldn't.

Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
drivers/scsi/sd.c