netfilter: invoke synchronize_rcu after set the _hook_ to NULL
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / 8021q / vlanproc.h
CommitLineData
1da177e4
LT
1#ifndef __BEN_VLAN_PROC_INC__
2#define __BEN_VLAN_PROC_INC__
3
4#ifdef CONFIG_PROC_FS
cd1c7014
PE
5struct net;
6
7int vlan_proc_init(struct net *net);
1da177e4 8int vlan_proc_rem_dev(struct net_device *vlandev);
2029cc2c 9int vlan_proc_add_dev(struct net_device *vlandev);
cd1c7014 10void vlan_proc_cleanup(struct net *net);
1da177e4
LT
11
12#else /* No CONFIG_PROC_FS */
13
cd1c7014
PE
14#define vlan_proc_init(net) (0)
15#define vlan_proc_cleanup(net) do {} while (0)
2029cc2c
PM
16#define vlan_proc_add_dev(dev) ({(void)(dev), 0; })
17#define vlan_proc_rem_dev(dev) ({(void)(dev), 0; })
1da177e4
LT
18#endif
19
20#endif /* !(__BEN_VLAN_PROC_INC__) */