1 #ifndef __BEN_VLAN_PROC_INC__
2 #define __BEN_VLAN_PROC_INC__
3 
4 int vlan_proc_init(void);
5 
6 int vlan_proc_rem_dev(struct net_device *vlandev);
7 int vlan_proc_add_dev (struct net_device *vlandev);
8 void vlan_proc_cleanup (void);
9 
10 #define	VLAN_PROC_BUFSZ	(4096)	/* buffer size for printing proc info */
11 
12 #endif /* !(__BEN_VLAN_PROC_INC__) */
13