hsr_netlink.h 923 B

12345678910111213141516171819202122232425262728293031
  1. /* Copyright 2011-2014 Autronica Fire and Security AS
  2. *
  3. * This program is free software; you can redistribute it and/or modify it
  4. * under the terms of the GNU General Public License as published by the Free
  5. * Software Foundation; either version 2 of the License, or (at your option)
  6. * any later version.
  7. *
  8. * Author(s):
  9. * 2011-2014 Arvid Brodin, arvid.brodin@alten.se
  10. */
  11. #ifndef __HSR_NETLINK_H
  12. #define __HSR_NETLINK_H
  13. #include <linux/if_ether.h>
  14. #include <linux/module.h>
  15. #include <uapi/linux/hsr_netlink.h>
  16. struct hsr_priv;
  17. struct hsr_port;
  18. int __init hsr_netlink_init(void);
  19. void __exit hsr_netlink_exit(void);
  20. void hsr_nl_ringerror(struct hsr_priv *hsr, unsigned char addr[ETH_ALEN],
  21. struct hsr_port *port);
  22. void hsr_nl_nodedown(struct hsr_priv *hsr, unsigned char addr[ETH_ALEN]);
  23. void hsr_nl_framedrop(int dropcount, int dev_idx);
  24. void hsr_nl_linkdown(int dev_idx);
  25. #endif /* __HSR_NETLINK_H */