blob: 3f6b95b5b6b8841b045493468ccce641ea55d258 [file] [log] [blame]
Arvid Brodin70ebe4a2014-07-04 23:34:38 +02001/* Copyright 2011-2014 Autronica Fire and Security AS
Arvid Brodinf4214362013-10-30 21:10:47 +01002 *
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):
Arvid Brodin70ebe4a2014-07-04 23:34:38 +02009 * 2011-2014 Arvid Brodin, arvid.brodin@alten.se
Arvid Brodinf4214362013-10-30 21:10:47 +010010 */
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;
Arvid Brodinc5a75912014-07-04 23:38:05 +020020struct hsr_port;
Arvid Brodinf4214362013-10-30 21:10:47 +010021
22int __init hsr_netlink_init(void);
23void __exit hsr_netlink_exit(void);
24
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020025void hsr_nl_ringerror(struct hsr_priv *hsr, unsigned char addr[ETH_ALEN],
Arvid Brodinc5a75912014-07-04 23:38:05 +020026 struct hsr_port *port);
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020027void hsr_nl_nodedown(struct hsr_priv *hsr, unsigned char addr[ETH_ALEN]);
Arvid Brodinf4214362013-10-30 21:10:47 +010028void hsr_nl_framedrop(int dropcount, int dev_idx);
29void hsr_nl_linkdown(int dev_idx);
30
31#endif /* __HSR_NETLINK_H */