This is a note to let you know that I've just added the patch titled
SCSI: isci: copy fis 0x34 response into proper buffer
to the 3.0-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
scsi-isci-copy-fis-0x34-response-into-proper-buffer.patch
and it can be found in the queue-3.0 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From 49bd665c5407a453736d3232ee58f2906b42e83c Mon Sep 17 00:00:00 2001
From: Maciej Patelczyk <[email protected]>
Date: Mon, 15 Oct 2012 14:29:03 +0200
Subject: SCSI: isci: copy fis 0x34 response into proper buffer
From: Maciej Patelczyk <[email protected]>
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 <[email protected]>
Signed-off-by: Lukasz Dorau <[email protected]>
Signed-off-by: James Bottomley <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
drivers/scsi/isci/request.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/drivers/scsi/isci/request.c
+++ b/drivers/scsi/isci/request.c
@@ -1693,7 +1693,7 @@ sci_io_request_frame_handler(struct isci
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);
Patches currently in stable-queue which might be from
[email protected] are
queue-3.0/scsi-isci-copy-fis-0x34-response-into-proper-buffer.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