aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/ftrace.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2012-07-12 08:06:46 -0400
committerRalf Baechle <ralf@linux-mips.org>2013-10-29 16:24:55 -0400
commit03b94e2ec4adfeb6a2734a265fe8affa68a51a41 (patch)
treea1e4138d6d744f64c455491b33f09935b7130a92 /arch/x86/kernel/ftrace.c
parent43dec43069d2d1064a57f159e02e2ff99ce75ff3 (diff)
MIPS: 64-bit: Mark native syscall table as data object.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/x86/kernel/ftrace.c')
0 files changed, 0 insertions, 0 deletions
"hl opt">, lenp, ppos); } #else #define proc_mq_dointvec NULL #define proc_mq_dointvec_minmax NULL #endif static int msg_max_limit_min = MIN_MSGMAX; static int msg_max_limit_max = MAX_MSGMAX; static int msg_maxsize_limit_min = MIN_MSGSIZEMAX; static int msg_maxsize_limit_max = MAX_MSGSIZEMAX; static ctl_table mq_sysctls[] = { { .procname = "queues_max", .data = &init_ipc_ns.mq_queues_max, .maxlen = sizeof(int), .mode = 0644, .proc_handler = proc_mq_dointvec, }, { .procname = "msg_max", .data = &init_ipc_ns.mq_msg_max, .maxlen = sizeof(int), .mode = 0644, .proc_handler = proc_mq_dointvec_minmax, .extra1 = &msg_max_limit_min, .extra2 = &msg_max_limit_max, }, { .procname = "msgsize_max", .data = &init_ipc_ns.mq_msgsize_max, .maxlen = sizeof(int), .mode = 0644, .proc_handler = proc_mq_dointvec_minmax, .extra1 = &msg_maxsize_limit_min, .extra2 = &msg_maxsize_limit_max, }, {} }; static ctl_table mq_sysctl_dir[] = { { .procname = "mqueue", .mode = 0555, .child = mq_sysctls, }, {} }; static ctl_table mq_sysctl_root[] = { { .procname = "fs", .mode = 0555, .child = mq_sysctl_dir, }, {} }; struct ctl_table_header *mq_register_sysctl_table(void) { return register_sysctl_table(mq_sysctl_root); }