kane/troika: disable CONFIG_SCSC_LOG_COLLECTION
[GitHub/LineageOS/android_kernel_motorola_exynos9610.git] / net / hsr / hsr_netlink.h
CommitLineData
70ebe4a4 1/* Copyright 2011-2014 Autronica Fire and Security AS
f421436a
AB
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):
70ebe4a4 9 * 2011-2014 Arvid Brodin, arvid.brodin@alten.se
f421436a
AB
10 */
11
12#ifndef __HSR_NETLINK_H
13#define __HSR_NETLINK_H
14
15#include <linux/if_ether.h>
16#include <linux/module.h>
17#include <uapi/linux/hsr_netlink.h>
18
19struct hsr_priv;
c5a75911 20struct hsr_port;
f421436a
AB
21
22int __init hsr_netlink_init(void);
23void __exit hsr_netlink_exit(void);
24
70ebe4a4 25void hsr_nl_ringerror(struct hsr_priv *hsr, unsigned char addr[ETH_ALEN],
c5a75911 26 struct hsr_port *port);
70ebe4a4 27void hsr_nl_nodedown(struct hsr_priv *hsr, unsigned char addr[ETH_ALEN]);
f421436a
AB
28void hsr_nl_framedrop(int dropcount, int dev_idx);
29void hsr_nl_linkdown(int dev_idx);
30
31#endif /* __HSR_NETLINK_H */