Browse Source

[SCSI] Fix signness of parameters in scsi module

In scsi module I've found some inconsistency between variable type
used in module_param_named and type passed to module_param_named as an
argument. Especially the inconsistency of `max_scsi_luns' parameter is
a bit serious because the description text says "last scsi LUN (should
be between 1 and 2^32-1)".

Signed-off-by: Masatake YAMATO <jet@gyve.org>
Acked-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Masatake YAMATO 17 years ago
parent
commit
10f4b89a0f
2 changed files with 4 additions and 4 deletions
  1. 3 3
      drivers/scsi/scsi_scan.c
  2. 1 1
      drivers/scsi/scsi_transport_fc.c

+ 3 - 3
drivers/scsi/scsi_scan.c

@@ -85,7 +85,7 @@ static unsigned int max_scsi_luns = MAX_SCSI_LUNS;
 static unsigned int max_scsi_luns = 1;
 static unsigned int max_scsi_luns = 1;
 #endif
 #endif
 
 
-module_param_named(max_luns, max_scsi_luns, int, S_IRUGO|S_IWUSR);
+module_param_named(max_luns, max_scsi_luns, uint, S_IRUGO|S_IWUSR);
 MODULE_PARM_DESC(max_luns,
 MODULE_PARM_DESC(max_luns,
 		 "last scsi LUN (should be between 1 and 2^32-1)");
 		 "last scsi LUN (should be between 1 and 2^32-1)");
 
 
@@ -109,14 +109,14 @@ MODULE_PARM_DESC(scan, "sync, async or none");
  */
  */
 static unsigned int max_scsi_report_luns = 511;
 static unsigned int max_scsi_report_luns = 511;
 
 
-module_param_named(max_report_luns, max_scsi_report_luns, int, S_IRUGO|S_IWUSR);
+module_param_named(max_report_luns, max_scsi_report_luns, uint, S_IRUGO|S_IWUSR);
 MODULE_PARM_DESC(max_report_luns,
 MODULE_PARM_DESC(max_report_luns,
 		 "REPORT LUNS maximum number of LUNS received (should be"
 		 "REPORT LUNS maximum number of LUNS received (should be"
 		 " between 1 and 16384)");
 		 " between 1 and 16384)");
 
 
 static unsigned int scsi_inq_timeout = SCSI_TIMEOUT/HZ+3;
 static unsigned int scsi_inq_timeout = SCSI_TIMEOUT/HZ+3;
 
 
-module_param_named(inq_timeout, scsi_inq_timeout, int, S_IRUGO|S_IWUSR);
+module_param_named(inq_timeout, scsi_inq_timeout, uint, S_IRUGO|S_IWUSR);
 MODULE_PARM_DESC(inq_timeout, 
 MODULE_PARM_DESC(inq_timeout, 
 		 "Timeout (in seconds) waiting for devices to answer INQUIRY."
 		 "Timeout (in seconds) waiting for devices to answer INQUIRY."
 		 " Default is 5. Some non-compliant devices need more.");
 		 " Default is 5. Some non-compliant devices need more.");

+ 1 - 1
drivers/scsi/scsi_transport_fc.c

@@ -474,7 +474,7 @@ static DECLARE_TRANSPORT_CLASS(fc_vport_class,
  */
  */
 static unsigned int fc_dev_loss_tmo = 60;		/* seconds */
 static unsigned int fc_dev_loss_tmo = 60;		/* seconds */
 
 
-module_param_named(dev_loss_tmo, fc_dev_loss_tmo, int, S_IRUGO|S_IWUSR);
+module_param_named(dev_loss_tmo, fc_dev_loss_tmo, uint, S_IRUGO|S_IWUSR);
 MODULE_PARM_DESC(dev_loss_tmo,
 MODULE_PARM_DESC(dev_loss_tmo,
 		 "Maximum number of seconds that the FC transport should"
 		 "Maximum number of seconds that the FC transport should"
 		 " insulate the loss of a remote port. Once this value is"
 		 " insulate the loss of a remote port. Once this value is"