From: Sasha Levin Date: Mon, 3 Aug 2015 04:08:59 +0000 (-0400) Subject: fs: orangefs: remove execute priviliges from module params X-Git-Tag: v4.6-rc1~2^2~164 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cb987f3cbe3ced82496c802565b263844abfb0b9;p=thirdparty%2Fkernel%2Flinux.git fs: orangefs: remove execute priviliges from module params This makes no sense and causes warnings on boot. Signed-off-by: Sasha Levin Signed-off-by: Mike Marshall --- diff --git a/fs/orangefs/pvfs2-mod.c b/fs/orangefs/pvfs2-mod.c index 69289c5d838c7..d80537dadcd87 100644 --- a/fs/orangefs/pvfs2-mod.c +++ b/fs/orangefs/pvfs2-mod.c @@ -65,7 +65,7 @@ static struct file_system_type pvfs2_fs_type = { }; module_param(hash_table_size, int, 0); -module_param(module_parm_debug_mask, ulong, 0755); +module_param(module_parm_debug_mask, ulong, 0644); module_param(op_timeout_secs, int, 0); module_param(slot_timeout_secs, int, 0);