summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/linux-api-headers/scsi.patch
diff options
context:
space:
mode:
authorCecil Hugh Watson <knoppmyth@gmail.com>2010-09-04 23:59:24 (GMT)
committerCecil Hugh Watson <knoppmyth@gmail.com>2010-09-04 23:59:24 (GMT)
commit96e7fd102d427ccab2fd62b05b32dbcc40c3f70e (patch)
tree0ee6d98048fd4fc43530195a70f6022959d58163 /abs/core-testing/linux-api-headers/scsi.patch
parente3b0184d8c41dd10e7a5926f1bf4bf228038189a (diff)
downloadlinhes_pkgbuild-96e7fd102d427ccab2fd62b05b32dbcc40c3f70e.zip
linhes_pkgbuild-96e7fd102d427ccab2fd62b05b32dbcc40c3f70e.tar.gz
linhes_pkgbuild-96e7fd102d427ccab2fd62b05b32dbcc40c3f70e.tar.bz2
linux-api-headers:Bumped/Updated for LinHES 7.
Diffstat (limited to 'abs/core-testing/linux-api-headers/scsi.patch')
-rw-r--r--abs/core-testing/linux-api-headers/scsi.patch42
1 files changed, 42 insertions, 0 deletions
diff --git a/abs/core-testing/linux-api-headers/scsi.patch b/abs/core-testing/linux-api-headers/scsi.patch
new file mode 100644
index 0000000..f85a3b7
--- /dev/null
+++ b/abs/core-testing/linux-api-headers/scsi.patch
@@ -0,0 +1,42 @@
+diff -Naur linux-2.6.32-old/include/scsi/scsi.h linux-2.6.32/include/scsi/scsi.h
+--- linux-2.6.32-old/include/scsi/scsi.h 2009-12-03 13:51:21.000000000 +1000
++++ linux-2.6.32/include/scsi/scsi.h 2009-12-12 10:43:11.000000000 +1000
+@@ -145,14 +145,15 @@
+
+ /* defined in T10 SCSI Primary Commands-2 (SPC2) */
+ struct scsi_varlen_cdb_hdr {
+- u8 opcode; /* opcode always == VARIABLE_LENGTH_CMD */
+- u8 control;
+- u8 misc[5];
+- u8 additional_cdb_length; /* total cdb length - 8 */
++ __u8 opcode; /* opcode always == VARIABLE_LENGTH_CMD */
++ __u8 control;
++ __u8 misc[5];
++ __u8 additional_cdb_length; /* total cdb length - 8 */
+ __be16 service_action;
+ /* service specific data follows */
+ };
+
++#ifdef __KERNEL__
+ static inline unsigned
+ scsi_varlen_cdb_length(const void *hdr)
+ {
+@@ -168,6 +169,7 @@
+ return (cmnd[0] == VARIABLE_LENGTH_CMD) ?
+ scsi_varlen_cdb_length(cmnd) : COMMAND_SIZE(cmnd[0]);
+ }
++#endif
+
+ /*
+ * SCSI Architecture Model (SAM) Status codes. Taken from SAM-3 draft
+@@ -284,8 +286,10 @@
+ SCSI_PROTOCOL_UNSPEC = 0xf, /* No specific protocol */
+ };
+
++#ifdef __KERNEL__
+ /* Returns a human-readable name for the device */
+ extern const char * scsi_device_type(unsigned type);
++#endif
+
+ /*
+ * standard mode-select header prepended to all mode-select commands