diff options
author | Luis Chamberlain <mcgrof@kernel.org> | 2023-03-10 15:45:22 -0800 |
---|---|---|
committer | Heiko Carstens <hca@linux.ibm.com> | 2023-03-20 10:56:48 +0100 |
commit | 71cb8c00a2eb74b6c61374366fef4fd402faa692 (patch) | |
tree | fc5e6578dd4d5e72309ea23cb5710e5593c781a7 | |
parent | 751e24071c2e408f4b1781327756700ee4c941ab (diff) | |
download | lwn-71cb8c00a2eb74b6c61374366fef4fd402faa692.tar.gz lwn-71cb8c00a2eb74b6c61374366fef4fd402faa692.zip |
s390: simplify one-level sysctl registration for appldata_table
There is no need to declare an extra tables to just create directory,
this can be easily be done with a prefix path with register_sysctl().
Simplify this registration.
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
Link: https://lore.kernel.org/r/20230310234525.3986352-4-mcgrof@kernel.org
Reviewed-by: Vasily Gorbik <gor@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
-rw-r--r-- | arch/s390/appldata/appldata_base.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/arch/s390/appldata/appldata_base.c b/arch/s390/appldata/appldata_base.c index c0fd29133f27..c593f2228083 100644 --- a/arch/s390/appldata/appldata_base.c +++ b/arch/s390/appldata/appldata_base.c @@ -66,16 +66,6 @@ static struct ctl_table appldata_table[] = { { }, }; -static struct ctl_table appldata_dir_table[] = { - { - .procname = appldata_proc_name, - .maxlen = 0, - .mode = S_IRUGO | S_IXUGO, - .child = appldata_table, - }, - { }, -}; - /* * Timer */ @@ -422,7 +412,7 @@ static int __init appldata_init(void) appldata_wq = alloc_ordered_workqueue("appldata", 0); if (!appldata_wq) return -ENOMEM; - appldata_sysctl_header = register_sysctl_table(appldata_dir_table); + appldata_sysctl_header = register_sysctl(appldata_proc_name, appldata_table); return 0; } |