Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1454679 > unrolled thread

[PATCH 0903/1285] Replace numeric parameter like 0444 with macro

Started byBaole Ni <baolex.ni@intel.com>
First post2016-08-02 17:10 +0200
Last post2016-08-02 17:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH 0903/1285] Replace numeric parameter like 0444 with macro Baole Ni <baolex.ni@intel.com> - 2016-08-02 17:10 +0200

#1454679 — [PATCH 0903/1285] Replace numeric parameter like 0444 with macro

FromBaole Ni <baolex.ni@intel.com>
Date2016-08-02 17:10 +0200
Subject[PATCH 0903/1285] Replace numeric parameter like 0444 with macro
Message-ID<s1Jup-68b-3@gated-at.bofh.it>
I find that the developers often just specified the numeric value
when calling a macro which is defined with a parameter for access permission.
As we know, these numeric value for access permission have had the corresponding macro,
and that using macro can improve the robustness and readability of the code,
thus, I suggest replacing the numeric parameter with the macro.

Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com>
Signed-off-by: Baole Ni <baolex.ni@intel.com>
---
 drivers/s390/scsi/zfcp_scsi.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/s390/scsi/zfcp_scsi.c b/drivers/s390/scsi/zfcp_scsi.c
index b3c6ff4..a16afd8 100644
--- a/drivers/s390/scsi/zfcp_scsi.c
+++ b/drivers/s390/scsi/zfcp_scsi.c
@@ -21,15 +21,15 @@
 #include "zfcp_reqlist.h"
 
 static unsigned int default_depth = 32;
-module_param_named(queue_depth, default_depth, uint, 0600);
+module_param_named(queue_depth, default_depth, uint, S_IRUSR | S_IWUSR);
 MODULE_PARM_DESC(queue_depth, "Default queue depth for new SCSI devices");
 
 static bool enable_dif;
-module_param_named(dif, enable_dif, bool, 0400);
+module_param_named(dif, enable_dif, bool, S_IRUSR);
 MODULE_PARM_DESC(dif, "Enable DIF/DIX data integrity support");
 
 static bool allow_lun_scan = 1;
-module_param(allow_lun_scan, bool, 0600);
+module_param(allow_lun_scan, bool, S_IRUSR | S_IWUSR);
 MODULE_PARM_DESC(allow_lun_scan, "For NPIV, scan and attach all storage LUNs");
 
 static void zfcp_scsi_slave_destroy(struct scsi_device *sdev)
-- 
2.9.2

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web