// SPDX-License-Identifier: GPL-2.0 /* * sysctl_net_atalk.c: sysctl interface to net AppleTalk subsystem. * * Begun April 1, 1996, Mike Shaver. * Added /proc/sys/net/atalk directory entry (empty =) ). [MS] * Dynamic registration, added aarp entries. (5/30/97 Chris Horn) */ #include <linux/sysctl.h> #include <net/sock.h> #include <linux/atalk.h> static struct ctl_table atalk_table[] = …; static struct ctl_table_header *atalk_table_header; int __init atalk_register_sysctl(void) { … } void atalk_unregister_sysctl(void) { … }