Commit e3ad42be authored by Tony Luck's avatar Tony Luck

[IA64] Fix perfmon sysctl directory modes

New sanity checks in sysctl_check_table() complain about a couple
of mode 0755 that should be 0555 in the perfmon code:

sysctl table check failed: /kernel .1 Writable sysctl directory
sysctl table check failed: /kernel/perfmon  Writable sysctl directory
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent 2655e2ce
...@@ -558,7 +558,7 @@ static ctl_table pfm_sysctl_dir[] = { ...@@ -558,7 +558,7 @@ static ctl_table pfm_sysctl_dir[] = {
{ {
.ctl_name = CTL_UNNUMBERED, .ctl_name = CTL_UNNUMBERED,
.procname = "perfmon", .procname = "perfmon",
.mode = 0755, .mode = 0555,
.child = pfm_ctl_table, .child = pfm_ctl_table,
}, },
{} {}
...@@ -567,7 +567,7 @@ static ctl_table pfm_sysctl_root[] = { ...@@ -567,7 +567,7 @@ static ctl_table pfm_sysctl_root[] = {
{ {
.ctl_name = CTL_KERN, .ctl_name = CTL_KERN,
.procname = "kernel", .procname = "kernel",
.mode = 0755, .mode = 0555,
.child = pfm_sysctl_dir, .child = pfm_sysctl_dir,
}, },
{} {}
......
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