Commit 9795447f authored by Li Zefan's avatar Li Zefan Committed by Ingo Molnar

lockdep: Fix file mode of lock_stat

/proc/lock_stat is writable.
Signed-off-by: default avatarLi Zefan <lizf@cn.fujitsu.com>
Cc: Peter Zijlstra <peterz@infradead.org>
LKML-Reference: <4A7BE7B6.10904@cn.fujitsu.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 1bbf2083
...@@ -758,7 +758,8 @@ static int __init lockdep_proc_init(void) ...@@ -758,7 +758,8 @@ static int __init lockdep_proc_init(void)
&proc_lockdep_stats_operations); &proc_lockdep_stats_operations);
#ifdef CONFIG_LOCK_STAT #ifdef CONFIG_LOCK_STAT
proc_create("lock_stat", S_IRUSR, NULL, &proc_lock_stat_operations); proc_create("lock_stat", S_IRUSR | S_IWUSR, NULL,
&proc_lock_stat_operations);
#endif #endif
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment