diff options
author | Maciej Patelczyk <maciej.patelczyk@intel.com> | 2012-10-15 14:29:03 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-12-03 11:46:49 -0800 |
commit | 6417635908e7643800141fc1d6cf7fe43f4fb5e3 (patch) | |
tree | 39b9f3287b371655bd1d0e9235edf5b9a6c59d46 /drivers/scsi | |
parent | 8d8c210794bb574b1d04492332a399e679caaa63 (diff) | |
download | linux-3.10-6417635908e7643800141fc1d6cf7fe43f4fb5e3.tar.gz linux-3.10-6417635908e7643800141fc1d6cf7fe43f4fb5e3.tar.bz2 linux-3.10-6417635908e7643800141fc1d6cf7fe43f4fb5e3.zip |
SCSI: isci: copy fis 0x34 response into proper buffer
commit 49bd665c5407a453736d3232ee58f2906b42e83c upstream.
SATA MICROCODE DOWNALOAD fails on isci driver. After receiving Register
Device to Host (FIS 0x34) frame Initiator resets phy.
In the frame handler routine response (FIS 0x34) was copied into wrong
buffer and upper layer did not receive any answer which resulted in
timeout and reset.
This patch corrects this bug.
Signed-off-by: Maciej Patelczyk <maciej.patelczyk@intel.com>
Signed-off-by: Lukasz Dorau <lukasz.dorau@intel.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/isci/request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/isci/request.c b/drivers/scsi/isci/request.c index 2def1e3960f..05c3fc0ce27 100644 --- a/drivers/scsi/isci/request.c +++ b/drivers/scsi/isci/request.c @@ -1970,7 +1970,7 @@ sci_io_request_frame_handler(struct isci_request *ireq, frame_index, (void **)&frame_buffer); - sci_controller_copy_sata_response(&ireq->stp.req, + sci_controller_copy_sata_response(&ireq->stp.rsp, frame_header, frame_buffer); |