aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/s390/scsi/zfcp_scsi.c
diff options
context:
space:
mode:
authorSteffen Maier <maier@linux.vnet.ibm.com>2011-08-15 08:40:30 -0400
committerJames Bottomley <JBottomley@Parallels.com>2011-08-27 10:37:00 -0400
commitcc405acee244310cc87ddc5e3f4bc61342ec8161 (patch)
tree8f814a83f0b950527fba5a9215ff866f875cf20b /drivers/s390/scsi/zfcp_scsi.c
parentf0c568a478f03536602b1730b9473ee86d61d836 (diff)
[SCSI] zfcp: non-experimental support for DIF/DIX
DIF/DIX support for zfcp is no longer experimental, and config option is no longer necessary. Return error from queuecommand for unsupported data directions. Signed-off-by: Steffen Maier <maier@linux.vnet.ibm.com> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/s390/scsi/zfcp_scsi.c')
-rw-r--r--drivers/s390/scsi/zfcp_scsi.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/s390/scsi/zfcp_scsi.c b/drivers/s390/scsi/zfcp_scsi.c
index 7cac873c7383..96c31a70445f 100644
--- a/drivers/s390/scsi/zfcp_scsi.c
+++ b/drivers/s390/scsi/zfcp_scsi.c
@@ -24,11 +24,8 @@ module_param_named(queue_depth, default_depth, uint, 0600);
24MODULE_PARM_DESC(queue_depth, "Default queue depth for new SCSI devices"); 24MODULE_PARM_DESC(queue_depth, "Default queue depth for new SCSI devices");
25 25
26static bool enable_dif; 26static bool enable_dif;
27 27module_param_named(dif, enable_dif, bool, 0400);
28#ifdef CONFIG_ZFCP_DIF
29module_param_named(dif, enable_dif, bool, 0600);
30MODULE_PARM_DESC(dif, "Enable DIF/DIX data integrity support"); 28MODULE_PARM_DESC(dif, "Enable DIF/DIX data integrity support");
31#endif
32 29
33static bool allow_lun_scan = 1; 30static bool allow_lun_scan = 1;
34module_param(allow_lun_scan, bool, 0600); 31module_param(allow_lun_scan, bool, 0600);