[PATCH 7/7][MQUEUE] Use the ctl paths to register tables
- From: Pavel Emelyanov <xemul@xxxxxxxxxx>
- Date: Fri, 30 Nov 2007 16:18:04 +0300
Noting special - just build the "fs/mqueue/" path and use it.
Signed-off-by: Pavel Emelyanov <xemul@xxxxxxxxxx>
---
diff --git a/ipc/mqueue.c b/ipc/mqueue.c
index 9ff4abf..22cb219 100644
--- a/ipc/mqueue.c
+++ b/ipc/mqueue.c
@@ -1229,21 +1229,13 @@ static ctl_table mq_sysctls[] = {
{ .ctl_name = 0 }
};
-static ctl_table mq_sysctl_dir[] = {
+static struct ctl_path mq_sysctl_path[] = {
{
- .procname = "mqueue",
- .mode = 0555,
- .child = mq_sysctls,
+ .procname = "fs",
+ .ctl_name = CTL_FS,
},
- { .ctl_name = 0 }
-};
-
-static ctl_table mq_sysctl_root[] = {
{
- .ctl_name = CTL_FS,
- .procname = "fs",
- .mode = 0555,
- .child = mq_sysctl_dir,
+ .procname = "mqueue",
},
{ .ctl_name = 0 }
};
@@ -1262,7 +1254,7 @@ static int __init init_mqueue_fs(void)
return -ENOMEM;
#ifdef CONFIG_SYSCTL
/* ignore failues - they are not fatal */
- mq_sysctl_table = register_sysctl_table(mq_sysctl_root);
+ mq_sysctl_table = register_sysctl_paths(mq_sysctl_path, mq_sysctls);
#endif
error = register_filesystem(&mqueue_fs_type);
if (error)
--
1.5.3.4
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
- References:
- [PATCH 0/7] Start using sysctl paths in the core kernel code
- From: Pavel Emelyanov
- [PATCH 0/7] Start using sysctl paths in the core kernel code
- Prev by Date: Re: [PATCH] ipwireless_cs driver for 4G PC Card
- Next by Date: Re: broken dpt_i2o in 2.6.23 (was: ext2_check_page: bad entry in directory) (fwd)
- Previous by thread: [PATCH 6/7][MQUEUE] Move sysctl management code under ifdef CONFIG_SYSCTL
- Next by thread: 2.6.22.14 oops msg with commvault galaxy ?
- Index(es):
Relevant Pages
|
|