]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[PATCH] libata: fix passthru sense data header
authorTejun Heo <htejun@gmail.com>
Tue, 14 Nov 2006 13:37:35 +0000 (22:37 +0900)
committerJeff Garzik <jeff@garzik.org>
Sat, 2 Dec 2006 03:46:00 +0000 (22:46 -0500)
sb[7] should contain the length of whole information sense data
descriptor while desc[1] should contain the number of following bytes
in the descriptor.  ie. 14 for sb[7] but 12 for desc[1].

Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
drivers/ata/libata-scsi.c

index 7a55c2e4ea6ed4db5b5bda615cc0807e8bc75e3e..87f82827c1bf60117927b6bd5614ca6c00b7564d 100644 (file)
@@ -713,12 +713,9 @@ void ata_gen_ata_desc_sense(struct ata_queued_cmd *qc)
 
        desc[0] = 0x09;
 
-       /*
-        * Set length of additional sense data.
-        * Since we only populate descriptor 0, the total
-        * length is the same (fixed) length as descriptor 0.
-        */
-       desc[1] = sb[7] = 14;
+       /* set length of additional sense data */
+       sb[7] = 14;
+       desc[1] = 12;
 
        /*
         * Copy registers into sense buffer.