diff options
| author | Arnaldo Carvalho de Melo <acme@conectiva.com.br> | 2002-10-06 21:27:57 -0300 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <acme@conectiva.com.br> | 2002-10-06 21:27:57 -0300 |
| commit | 102f07337e683bfbe50532e8864c609c98419f24 (patch) | |
| tree | 6dfd8f85ee5230714949635182497412458047e3 /include/linux | |
| parent | b1e16e5e6790c28cdd37381216114a8cfcf6e09c (diff) | |
o Appletalk: use seq_file for proc stuff
And also move MODULE_LICENSE from aarp.c to ddp.c, as its there
that the module_init/exit is.
Also added MODULE_AUTHOR and MODULE_DESCRIPTION.
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/atalk.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/linux/atalk.h b/include/linux/atalk.h index e26dc1db8a41..477169eb5b28 100644 --- a/include/linux/atalk.h +++ b/include/linux/atalk.h @@ -198,5 +198,19 @@ extern void aarp_cleanup_module(void); #define at_sk(__sk) ((struct atalk_sock *)(__sk)->protinfo) +extern struct sock *atalk_sockets; +extern spinlock_t atalk_sockets_lock; + +extern struct atalk_route *atalk_routes; +extern rwlock_t atalk_routes_lock; + +extern struct atalk_iface *atalk_interfaces; +extern spinlock_t atalk_interfaces_lock; + +extern struct atalk_route atrtr_default; + +extern int atalk_proc_init(void); +extern void atalk_proc_exit(void); + #endif /* __KERNEL__ */ #endif /* __LINUX_ATALK_H__ */ |
