This is a note to let you know that I've just added the patch titled

    [SCSI] fix incorrect value of SCSI_MAX_SG_CHAIN_SEGMENTS due to include 
file ordering

to the 2.6.37-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:
     
fix-incorrect-value-of-scsi_max_sg_chain_segments-due-to-include-file-ordering.patch
and it can be found in the queue-2.6.37 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.


>From ac61c46f4f7665ab4548e90430c37b2529e16cff Mon Sep 17 00:00:00 2001
From: David Dillow <[email protected]>
Date: Sun, 16 Jan 2011 15:12:39 -0500
Subject: [SCSI] fix incorrect value of SCSI_MAX_SG_CHAIN_SEGMENTS due to 
include file ordering

From: David Dillow <[email protected]>

commit ac61c46f4f7665ab4548e90430c37b2529e16cff upstream.

If the compiled object doesn't include linux/scatterlist.h before
scsi/scsi.h, it will get an incorrect definition of
SCSI_MAX_SG_CHAIN_SEGMENTS.

Signed-off-by: David Dillow <[email protected]>
Signed-off-by: James Bottomley <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>

---
 include/scsi/scsi.h |    1 +
 1 file changed, 1 insertion(+)

--- a/include/scsi/scsi.h
+++ b/include/scsi/scsi.h
@@ -9,6 +9,7 @@
 #define _SCSI_SCSI_H
 
 #include <linux/types.h>
+#include <linux/scatterlist.h>
 
 struct scsi_cmnd;
 


Patches currently in stable-queue which might be from [email protected] are

queue-2.6.37/fix-incorrect-value-of-scsi_max_sg_chain_segments-due-to-include-file-ordering.patch

_______________________________________________
stable mailing list
[email protected]
http://linux.kernel.org/mailman/listinfo/stable

Reply via email to