[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20160802121247.20778-1-baolex.ni@intel.com>
Date: Tue, 2 Aug 2016 20:12:47 +0800
From: Baole Ni <baolex.ni@...el.com>
To: anton@...msg.org, ccross@...roid.com, keescook@...omium.org,
tony.luck@...el.com, tomi.valkeinen@...com, m.chehab@...sung.com,
gregkh@...uxfoundation.org, m.szyprowski@...sung.com,
kyungmin.park@...sung.com, k.kozlowski@...sung.com
Cc: linux-kernel@...r.kernel.org, akpm@...ux-foundation.org,
tglx@...utronix.de, yang.shi@...aro.org, mingo@...nel.org,
prarit@...hat.com, linux@...musvillemoes.dk,
aryabinin@...tuozzo.com, baiyaowei@...s.chinamobile.com,
chuansheng.liu@...el.com, baolex.ni@...el.com
Subject: [PATCH 1060/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>
---
init/main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/init/main.c b/init/main.c
index 4c17fda..7d9e25d 100644
--- a/init/main.c
+++ b/init/main.c
@@ -674,7 +674,7 @@ static void __init do_ctors(void)
}
bool initcall_debug;
-core_param(initcall_debug, initcall_debug, bool, 0644);
+core_param(initcall_debug, initcall_debug, bool, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
#ifdef CONFIG_KALLSYMS
struct blacklist_entry {
--
2.9.2
Powered by blists - more mailing lists