Release 4.11 net/ipx/sysctl_net_ipx.c
/* -*- linux-c -*-
* sysctl_net_ipx.c: sysctl interface to net IPX subsystem.
*
* Begun April 1, 1996, Mike Shaver.
* Added /proc/sys/net/ipx directory entry (empty =) ). [MS]
* Added /proc/sys/net/ipx/ipx_pprop_broadcasting - acme March 4, 2001
*/
#include <linux/mm.h>
#include <linux/sysctl.h>
#include <net/net_namespace.h>
#include <net/ipx.h>
#ifndef CONFIG_SYSCTL
#error This file should not be compiled without CONFIG_SYSCTL defined
#endif
static struct ctl_table ipx_table[] = {
{
.procname = "ipx_pprop_broadcasting",
.data = &sysctl_ipx_pprop_broadcasting,
.maxlen = sizeof(int),
.mode = 0644,
.proc_handler = proc_dointvec,
},
{ },
};
static struct ctl_table_header *ipx_table_header;
void ipx_register_sysctl(void)
{
ipx_table_header = register_net_sysctl(&init_net, "net/ipx", ipx_table);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 12 | 63.16% | 1 | 25.00% |
Eric W. Biedermann | 5 | 26.32% | 2 | 50.00% |
Pavel Emelyanov | 2 | 10.53% | 1 | 25.00% |
Total | 19 | 100.00% | 4 | 100.00% |
void ipx_unregister_sysctl(void)
{
unregister_net_sysctl_table(ipx_table_header);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 11 | 91.67% | 1 | 50.00% |
Eric W. Biedermann | 1 | 8.33% | 1 | 50.00% |
Total | 12 | 100.00% | 2 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 53 | 53.54% | 2 | 22.22% |
Arnaldo Carvalho de Melo | 19 | 19.19% | 1 | 11.11% |
Linus Torvalds (pre-git) | 12 | 12.12% | 1 | 11.11% |
Eric W. Biedermann | 10 | 10.10% | 3 | 33.33% |
Fabian Frederick | 3 | 3.03% | 1 | 11.11% |
Pavel Emelyanov | 2 | 2.02% | 1 | 11.11% |
Total | 99 | 100.00% | 9 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.