[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20160802121221.20512-1-baolex.ni@intel.com>
Date: Tue, 2 Aug 2016 20:12:21 +0800
From: Baole Ni <baolex.ni@...el.com>
To: mfasheh@...e.com, jlbec@...lplan.org,
trond.myklebust@...marydata.com, anna.schumaker@...app.com,
tomi.valkeinen@...com, m.chehab@...sung.com,
gregkh@...uxfoundation.org, m.szyprowski@...sung.com,
kyungmin.park@...sung.com, k.kozlowski@...sung.com
Cc: ocfs2-devel@....oracle.com, linux-kernel@...r.kernel.org,
mhocko@...e.com, akpm@...ux-foundation.org, hannes@...xchg.org,
kirill.shutemov@...ux.intel.com, vdavydov@...tuozzo.com,
chuansheng.liu@...el.com, baolex.ni@...el.com, oneukum@...e.com
Subject: [PATCH 1056/1285] Replace numeric parameter like 0444 with macro
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@...el.com>
Signed-off-by: Baole Ni <baolex.ni@...el.com>
---
fs/ocfs2/dlmfs/dlmfs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/ocfs2/dlmfs/dlmfs.c b/fs/ocfs2/dlmfs/dlmfs.c
index 47b3b2d..40c4a3a 100644
--- a/fs/ocfs2/dlmfs/dlmfs.c
+++ b/fs/ocfs2/dlmfs/dlmfs.c
@@ -100,7 +100,7 @@ static int param_get_dlmfs_capabilities(char *buffer,
strlen(DLMFS_CAPABILITIES) + 1);
}
module_param_call(capabilities, param_set_dlmfs_capabilities,
- param_get_dlmfs_capabilities, NULL, 0444);
+ param_get_dlmfs_capabilities, NULL, S_IRUSR | S_IRGRP | S_IROTH);
MODULE_PARM_DESC(capabilities, DLMFS_CAPABILITIES);
--
2.9.2
Powered by blists - more mailing lists