summaryrefslogtreecommitdiffstats
path: root/kernel/pid_sysctl.h
diff options
context:
space:
mode:
authorLuis Chamberlain <mcgrof@kernel.org>2023-03-02 12:28:23 -0800
committerLuis Chamberlain <mcgrof@kernel.org>2023-05-02 19:23:29 -0700
commit9e7c73c0b9f49bc73818e08e6282a32b94d96168 (patch)
treefcc4c7db649ca650de3180956b309db5bd3195b6 /kernel/pid_sysctl.h
parent348551ddaf311c76b01cdcbaf61b6fef06a49144 (diff)
downloadlinux-9e7c73c0b9f49bc73818e08e6282a32b94d96168.tar.gz
linux-9e7c73c0b9f49bc73818e08e6282a32b94d96168.tar.bz2
linux-9e7c73c0b9f49bc73818e08e6282a32b94d96168.zip
kernel: pid_namespace: simplify sysctls with register_sysctl()
register_sysctl_paths() is only required if your child (directories) have entries and pid_namespace does not. So use register_sysctl_init() instead where we don't care about the return value and use register_sysctl() where we do. Signed-off-by: Luis Chamberlain <mcgrof@kernel.org> Acked-by: Jeff Xu <jeffxu@google.com> Link: https://lore.kernel.org/r/20230302202826.776286-9-mcgrof@kernel.org
Diffstat (limited to 'kernel/pid_sysctl.h')
-rw-r--r--kernel/pid_sysctl.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/pid_sysctl.h b/kernel/pid_sysctl.h
index e22d072e1e24..d67a4d45bb42 100644
--- a/kernel/pid_sysctl.h
+++ b/kernel/pid_sysctl.h
@@ -46,10 +46,9 @@ static struct ctl_table pid_ns_ctl_table_vm[] = {
},
{ }
};
-static struct ctl_path vm_path[] = { { .procname = "vm", }, { } };
static inline void register_pid_ns_sysctl_table_vm(void)
{
- register_sysctl_paths(vm_path, pid_ns_ctl_table_vm);
+ register_sysctl("vm", pid_ns_ctl_table_vm);
}
#else
static inline void initialize_memfd_noexec_scope(struct pid_namespace *ns) {}