[SCSI] qla2xxx: Remove redundant module parameter permission bits
For driver module parameters that have permission bits set to (S_IRUGO|S_IRUSR), remove the second term since it is already included in the first term. S_IRUGO comes defined as (S_IRUSR|S_IRGRP|S_IROTH). Signed-off-by: Joe Carnuccio <joe.carnuccio@qlogic.com> Signed-off-by: Madhuranath Iyengar <Madhu.Iyengar@qlogic.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
This commit is contained in:
Родитель
794a569114
Коммит
f2019cb117
|
@ -37,12 +37,12 @@ static struct kmem_cache *srb_cachep;
|
||||||
static struct kmem_cache *ctx_cachep;
|
static struct kmem_cache *ctx_cachep;
|
||||||
|
|
||||||
int ql2xlogintimeout = 20;
|
int ql2xlogintimeout = 20;
|
||||||
module_param(ql2xlogintimeout, int, S_IRUGO|S_IRUSR);
|
module_param(ql2xlogintimeout, int, S_IRUGO);
|
||||||
MODULE_PARM_DESC(ql2xlogintimeout,
|
MODULE_PARM_DESC(ql2xlogintimeout,
|
||||||
"Login timeout value in seconds.");
|
"Login timeout value in seconds.");
|
||||||
|
|
||||||
int qlport_down_retry;
|
int qlport_down_retry;
|
||||||
module_param(qlport_down_retry, int, S_IRUGO|S_IRUSR);
|
module_param(qlport_down_retry, int, S_IRUGO);
|
||||||
MODULE_PARM_DESC(qlport_down_retry,
|
MODULE_PARM_DESC(qlport_down_retry,
|
||||||
"Maximum number of command retries to a port that returns "
|
"Maximum number of command retries to a port that returns "
|
||||||
"a PORT-DOWN status.");
|
"a PORT-DOWN status.");
|
||||||
|
@ -55,12 +55,12 @@ MODULE_PARM_DESC(ql2xplogiabsentdevice,
|
||||||
"Default is 0 - no PLOGI. 1 - perfom PLOGI.");
|
"Default is 0 - no PLOGI. 1 - perfom PLOGI.");
|
||||||
|
|
||||||
int ql2xloginretrycount = 0;
|
int ql2xloginretrycount = 0;
|
||||||
module_param(ql2xloginretrycount, int, S_IRUGO|S_IRUSR);
|
module_param(ql2xloginretrycount, int, S_IRUGO);
|
||||||
MODULE_PARM_DESC(ql2xloginretrycount,
|
MODULE_PARM_DESC(ql2xloginretrycount,
|
||||||
"Specify an alternate value for the NVRAM login retry count.");
|
"Specify an alternate value for the NVRAM login retry count.");
|
||||||
|
|
||||||
int ql2xallocfwdump = 1;
|
int ql2xallocfwdump = 1;
|
||||||
module_param(ql2xallocfwdump, int, S_IRUGO|S_IRUSR);
|
module_param(ql2xallocfwdump, int, S_IRUGO);
|
||||||
MODULE_PARM_DESC(ql2xallocfwdump,
|
MODULE_PARM_DESC(ql2xallocfwdump,
|
||||||
"Option to enable allocation of memory for a firmware dump "
|
"Option to enable allocation of memory for a firmware dump "
|
||||||
"during HBA initialization. Memory allocation requirements "
|
"during HBA initialization. Memory allocation requirements "
|
||||||
|
@ -73,7 +73,7 @@ MODULE_PARM_DESC(ql2xextended_error_logging,
|
||||||
"Default is 0 - no logging. 1 - log errors.");
|
"Default is 0 - no logging. 1 - log errors.");
|
||||||
|
|
||||||
int ql2xshiftctondsd = 6;
|
int ql2xshiftctondsd = 6;
|
||||||
module_param(ql2xshiftctondsd, int, S_IRUGO|S_IRUSR);
|
module_param(ql2xshiftctondsd, int, S_IRUGO);
|
||||||
MODULE_PARM_DESC(ql2xshiftctondsd,
|
MODULE_PARM_DESC(ql2xshiftctondsd,
|
||||||
"Set to control shifting of command type processing "
|
"Set to control shifting of command type processing "
|
||||||
"based on total number of SG elements.");
|
"based on total number of SG elements.");
|
||||||
|
@ -81,7 +81,7 @@ MODULE_PARM_DESC(ql2xshiftctondsd,
|
||||||
static void qla2x00_free_device(scsi_qla_host_t *);
|
static void qla2x00_free_device(scsi_qla_host_t *);
|
||||||
|
|
||||||
int ql2xfdmienable=1;
|
int ql2xfdmienable=1;
|
||||||
module_param(ql2xfdmienable, int, S_IRUGO|S_IRUSR);
|
module_param(ql2xfdmienable, int, S_IRUGO);
|
||||||
MODULE_PARM_DESC(ql2xfdmienable,
|
MODULE_PARM_DESC(ql2xfdmienable,
|
||||||
"Enables FDMI registrations. "
|
"Enables FDMI registrations. "
|
||||||
"0 - no FDMI. Default is 1 - perform FDMI.");
|
"0 - no FDMI. Default is 1 - perform FDMI.");
|
||||||
|
@ -106,27 +106,27 @@ MODULE_PARM_DESC(ql2xenablehba_err_chk,
|
||||||
" Default is 0 - Error isolation disabled, 1 - Enable it");
|
" Default is 0 - Error isolation disabled, 1 - Enable it");
|
||||||
|
|
||||||
int ql2xiidmaenable=1;
|
int ql2xiidmaenable=1;
|
||||||
module_param(ql2xiidmaenable, int, S_IRUGO|S_IRUSR);
|
module_param(ql2xiidmaenable, int, S_IRUGO);
|
||||||
MODULE_PARM_DESC(ql2xiidmaenable,
|
MODULE_PARM_DESC(ql2xiidmaenable,
|
||||||
"Enables iIDMA settings "
|
"Enables iIDMA settings "
|
||||||
"Default is 1 - perform iIDMA. 0 - no iIDMA.");
|
"Default is 1 - perform iIDMA. 0 - no iIDMA.");
|
||||||
|
|
||||||
int ql2xmaxqueues = 1;
|
int ql2xmaxqueues = 1;
|
||||||
module_param(ql2xmaxqueues, int, S_IRUGO|S_IRUSR);
|
module_param(ql2xmaxqueues, int, S_IRUGO);
|
||||||
MODULE_PARM_DESC(ql2xmaxqueues,
|
MODULE_PARM_DESC(ql2xmaxqueues,
|
||||||
"Enables MQ settings "
|
"Enables MQ settings "
|
||||||
"Default is 1 for single queue. Set it to number "
|
"Default is 1 for single queue. Set it to number "
|
||||||
"of queues in MQ mode.");
|
"of queues in MQ mode.");
|
||||||
|
|
||||||
int ql2xmultique_tag;
|
int ql2xmultique_tag;
|
||||||
module_param(ql2xmultique_tag, int, S_IRUGO|S_IRUSR);
|
module_param(ql2xmultique_tag, int, S_IRUGO);
|
||||||
MODULE_PARM_DESC(ql2xmultique_tag,
|
MODULE_PARM_DESC(ql2xmultique_tag,
|
||||||
"Enables CPU affinity settings for the driver "
|
"Enables CPU affinity settings for the driver "
|
||||||
"Default is 0 for no affinity of request and response IO. "
|
"Default is 0 for no affinity of request and response IO. "
|
||||||
"Set it to 1 to turn on the cpu affinity.");
|
"Set it to 1 to turn on the cpu affinity.");
|
||||||
|
|
||||||
int ql2xfwloadbin;
|
int ql2xfwloadbin;
|
||||||
module_param(ql2xfwloadbin, int, S_IRUGO|S_IRUSR);
|
module_param(ql2xfwloadbin, int, S_IRUGO);
|
||||||
MODULE_PARM_DESC(ql2xfwloadbin,
|
MODULE_PARM_DESC(ql2xfwloadbin,
|
||||||
"Option to specify location from which to load ISP firmware:\n"
|
"Option to specify location from which to load ISP firmware:\n"
|
||||||
" 2 -- load firmware via the request_firmware() (hotplug)\n"
|
" 2 -- load firmware via the request_firmware() (hotplug)\n"
|
||||||
|
@ -135,39 +135,39 @@ MODULE_PARM_DESC(ql2xfwloadbin,
|
||||||
" 0 -- use default semantics.\n");
|
" 0 -- use default semantics.\n");
|
||||||
|
|
||||||
int ql2xetsenable;
|
int ql2xetsenable;
|
||||||
module_param(ql2xetsenable, int, S_IRUGO|S_IRUSR);
|
module_param(ql2xetsenable, int, S_IRUGO);
|
||||||
MODULE_PARM_DESC(ql2xetsenable,
|
MODULE_PARM_DESC(ql2xetsenable,
|
||||||
"Enables firmware ETS burst."
|
"Enables firmware ETS burst."
|
||||||
"Default is 0 - skip ETS enablement.");
|
"Default is 0 - skip ETS enablement.");
|
||||||
|
|
||||||
int ql2xdbwr = 1;
|
int ql2xdbwr = 1;
|
||||||
module_param(ql2xdbwr, int, S_IRUGO|S_IRUSR);
|
module_param(ql2xdbwr, int, S_IRUGO);
|
||||||
MODULE_PARM_DESC(ql2xdbwr,
|
MODULE_PARM_DESC(ql2xdbwr,
|
||||||
"Option to specify scheme for request queue posting\n"
|
"Option to specify scheme for request queue posting\n"
|
||||||
" 0 -- Regular doorbell.\n"
|
" 0 -- Regular doorbell.\n"
|
||||||
" 1 -- CAMRAM doorbell (faster).\n");
|
" 1 -- CAMRAM doorbell (faster).\n");
|
||||||
|
|
||||||
int ql2xdontresethba;
|
int ql2xdontresethba;
|
||||||
module_param(ql2xdontresethba, int, S_IRUGO|S_IRUSR);
|
module_param(ql2xdontresethba, int, S_IRUGO);
|
||||||
MODULE_PARM_DESC(ql2xdontresethba,
|
MODULE_PARM_DESC(ql2xdontresethba,
|
||||||
"Option to specify reset behaviour\n"
|
"Option to specify reset behaviour\n"
|
||||||
" 0 (Default) -- Reset on failure.\n"
|
" 0 (Default) -- Reset on failure.\n"
|
||||||
" 1 -- Do not reset on failure.\n");
|
" 1 -- Do not reset on failure.\n");
|
||||||
|
|
||||||
int ql2xtargetreset = 1;
|
int ql2xtargetreset = 1;
|
||||||
module_param(ql2xtargetreset, int, S_IRUGO|S_IRUSR);
|
module_param(ql2xtargetreset, int, S_IRUGO);
|
||||||
MODULE_PARM_DESC(ql2xtargetreset,
|
MODULE_PARM_DESC(ql2xtargetreset,
|
||||||
"Enable target reset."
|
"Enable target reset."
|
||||||
"Default is 1 - use hw defaults.");
|
"Default is 1 - use hw defaults.");
|
||||||
|
|
||||||
int ql2xgffidenable;
|
int ql2xgffidenable;
|
||||||
module_param(ql2xgffidenable, int, S_IRUGO|S_IRUSR);
|
module_param(ql2xgffidenable, int, S_IRUGO);
|
||||||
MODULE_PARM_DESC(ql2xgffidenable,
|
MODULE_PARM_DESC(ql2xgffidenable,
|
||||||
"Enables GFF_ID checks of port type. "
|
"Enables GFF_ID checks of port type. "
|
||||||
"Default is 0 - Do not use GFF_ID information.");
|
"Default is 0 - Do not use GFF_ID information.");
|
||||||
|
|
||||||
int ql2xasynctmfenable;
|
int ql2xasynctmfenable;
|
||||||
module_param(ql2xasynctmfenable, int, S_IRUGO|S_IRUSR);
|
module_param(ql2xasynctmfenable, int, S_IRUGO);
|
||||||
MODULE_PARM_DESC(ql2xasynctmfenable,
|
MODULE_PARM_DESC(ql2xasynctmfenable,
|
||||||
"Enables issue of TM IOCBs asynchronously via IOCB mechanism"
|
"Enables issue of TM IOCBs asynchronously via IOCB mechanism"
|
||||||
"Default is 0 - Issue TM IOCBs via mailbox mechanism.");
|
"Default is 0 - Issue TM IOCBs via mailbox mechanism.");
|
||||||
|
|
Загрузка…
Ссылка в новой задаче