diff --git a/scst/src/dev_handlers/scst_vdisk.c b/scst/src/dev_handlers/scst_vdisk.c index 654372dfa..3a363b2cb 100644 --- a/scst/src/dev_handlers/scst_vdisk.c +++ b/scst/src/dev_handlers/scst_vdisk.c @@ -235,7 +235,7 @@ static struct kmem_cache *blockio_work_cachep; #define DEF_NUM_THREADS 5 static int num_threads = DEF_NUM_THREADS; -module_param_named(num_threads, num_threads, int, 0); +module_param_named(num_threads, num_threads, int, S_IRUGO); MODULE_PARM_DESC(num_threads, "vdisk threads count"); static int vdisk_attach(struct scst_device *dev); @@ -375,7 +375,7 @@ static char *vcdrom_proc_help_string = static int scst_vdisk_ID; -module_param_named(scst_vdisk_ID, scst_vdisk_ID, int, 0); +module_param_named(scst_vdisk_ID, scst_vdisk_ID, int, S_IRUGO); MODULE_PARM_DESC(scst_vdisk_ID, "SCST virtual disk subsystem ID"); diff --git a/scst/src/scst_main.c b/scst/src/scst_main.c index 40cb9ecd2..c29cbc6db 100644 --- a/scst/src/scst_main.c +++ b/scst/src/scst_main.c @@ -146,11 +146,11 @@ unsigned int scst_max_dev_cmd_mem; module_param_named(scst_threads, scst_threads, int, 0); MODULE_PARM_DESC(scst_threads, "SCSI target threads count"); -module_param_named(scst_max_cmd_mem, scst_max_cmd_mem, int, 0); +module_param_named(scst_max_cmd_mem, scst_max_cmd_mem, int, S_IRUGO); MODULE_PARM_DESC(scst_max_cmd_mem, "Maximum memory allowed to be consumed by " "all SCSI commands of all devices at any given time in MB"); -module_param_named(scst_max_dev_cmd_mem, scst_max_dev_cmd_mem, int, 0); +module_param_named(scst_max_dev_cmd_mem, scst_max_dev_cmd_mem, int, S_IRUGO); MODULE_PARM_DESC(scst_max_dev_cmd_mem, "Maximum memory allowed to be consumed " "by all SCSI commands of a device at any given time in MB");