libsas: fix taskfile corruption in sas_ata_qc_fill_rtf
authorDan Williams <dan.j.williams@intel.com>
Fri, 22 Jun 2012 17:52:34 +0000 (10:52 -0700)
committerBen Hutchings <ben@decadent.org.uk>
Wed, 25 Jul 2012 03:11:12 +0000 (04:11 +0100)
commitcb480c94c8e89014cdb54201a413bf9d36f6cd41
tree53b08d4b2a74135d723a5be54409a0541855b44c
parent1e1cdddbadc5f3044882127f3931a19f48b1a69b
libsas: fix taskfile corruption in sas_ata_qc_fill_rtf

commit 6ef1b512f4e6f936d89aa20be3d97a7ec7c290ac upstream.

fill_result_tf() grabs the taskfile flags from the originating qc which
sas_ata_qc_fill_rtf() promptly overwrites.  The presence of an
ata_taskfile in the sata_device makes it tempting to just copy the full
contents in sas_ata_qc_fill_rtf().  However, libata really only wants
the fis contents and expects the other portions of the taskfile to not
be touched by ->qc_fill_rtf.  To that end store a fis buffer in the
sata_device and use ata_tf_from_fis() like every other ->qc_fill_rtf()
implementation.

Reported-by: Praveen Murali <pmurali@logicube.com>
Tested-by: Praveen Murali <pmurali@logicube.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
[bwh: Backported to 3.2: adjust context]
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
drivers/scsi/aic94xx/aic94xx_task.c
drivers/scsi/libsas/sas_ata.c
include/scsi/libsas.h