diff options
author | Sasha Levin <sasha.levin@oracle.com> | 2015-08-03 00:08:59 -0400 |
---|---|---|
committer | Mike Marshall <hubcap@omnibond.com> | 2015-10-03 11:40:06 -0400 |
commit | cb987f3cbe3ced82496c802565b263844abfb0b9 (patch) | |
tree | 3c1c7d12afed9b02ad1b14df3a11c5eacc35a8c0 /fs/orangefs/pvfs2-mod.c | |
parent | f0566532fe19c7f75a3c0c908152ea0e24e6ead2 (diff) | |
download | lwn-cb987f3cbe3ced82496c802565b263844abfb0b9.tar.gz lwn-cb987f3cbe3ced82496c802565b263844abfb0b9.zip |
fs: orangefs: remove execute priviliges from module params
This makes no sense and causes warnings on boot.
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Diffstat (limited to 'fs/orangefs/pvfs2-mod.c')
-rw-r--r-- | fs/orangefs/pvfs2-mod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/orangefs/pvfs2-mod.c b/fs/orangefs/pvfs2-mod.c index 69289c5d838c..d80537dadcd8 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); |