Contributors: 9
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Joel Granados |
77 |
46.39% |
2 |
15.38% |
Christoph Hellwig |
56 |
33.73% |
1 |
7.69% |
Linus Torvalds (pre-git) |
9 |
5.42% |
3 |
23.08% |
Christian Brauner |
6 |
3.61% |
1 |
7.69% |
Art Haas |
6 |
3.61% |
1 |
7.69% |
Alexei Starovoitov |
5 |
3.01% |
1 |
7.69% |
Eric W. Biedermann |
3 |
1.81% |
1 |
7.69% |
Luis R. Rodriguez |
3 |
1.81% |
2 |
15.38% |
Kairui Song |
1 |
0.60% |
1 |
7.69% |
Total |
166 |
|
13 |
|
// SPDX-License-Identifier: GPL-2.0
#include <asm/setup.h>
#include <linux/sysctl.h>
static const struct ctl_table sparc_sysctl_table[] = {
{
.procname = "reboot-cmd",
.data = reboot_command,
.maxlen = 256,
.mode = 0644,
.proc_handler = proc_dostring,
},
{
.procname = "stop-a",
.data = &stop_a_enabled,
.maxlen = sizeof(int),
.mode = 0644,
.proc_handler = proc_dointvec,
},
{
.procname = "scons-poweroff",
.data = &scons_pwroff,
.maxlen = sizeof(int),
.mode = 0644,
.proc_handler = proc_dointvec,
},
#ifdef CONFIG_SPARC64
{
.procname = "tsb-ratio",
.data = &sysctl_tsb_ratio,
.maxlen = sizeof(int),
.mode = 0644,
.proc_handler = proc_dointvec,
},
#endif
};
static int __init init_sparc_sysctls(void)
{
register_sysctl_init("kernel", sparc_sysctl_table);
return 0;
}
arch_initcall(init_sparc_sysctls);