vlanproc.h 572 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __BEN_VLAN_PROC_INC__
  3. #define __BEN_VLAN_PROC_INC__
  4. #ifdef CONFIG_PROC_FS
  5. struct net;
  6. int vlan_proc_init(struct net *net);
  7. void vlan_proc_rem_dev(struct net_device *vlandev);
  8. int vlan_proc_add_dev(struct net_device *vlandev);
  9. void vlan_proc_cleanup(struct net *net);
  10. #else /* No CONFIG_PROC_FS */
  11. #define vlan_proc_init(net) (0)
  12. #define vlan_proc_cleanup(net) do {} while (0)
  13. #define vlan_proc_add_dev(dev) ({(void)(dev), 0; })
  14. #define vlan_proc_rem_dev(dev) do {} while (0)
  15. #endif
  16. #endif /* !(__BEN_VLAN_PROC_INC__) */