2019-04-06 00:31:34 +07:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2014-07-05 04:35:24 +07:00
|
|
|
/* Copyright 2011-2014 Autronica Fire and Security AS
|
|
|
|
*
|
|
|
|
* 2011-2014 Arvid Brodin, arvid.brodin@alten.se
|
2020-07-22 21:40:16 +07:00
|
|
|
*
|
|
|
|
* include file for HSR and PRP.
|
2014-07-05 04:35:24 +07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __HSR_SLAVE_H
|
|
|
|
#define __HSR_SLAVE_H
|
|
|
|
|
|
|
|
#include <linux/skbuff.h>
|
|
|
|
#include <linux/netdevice.h>
|
2014-07-05 04:38:05 +07:00
|
|
|
#include <linux/rtnetlink.h>
|
2014-07-05 04:37:27 +07:00
|
|
|
#include "hsr_main.h"
|
2014-07-05 04:35:24 +07:00
|
|
|
|
2014-07-05 04:38:05 +07:00
|
|
|
int hsr_add_port(struct hsr_priv *hsr, struct net_device *dev,
|
2020-02-29 01:01:35 +07:00
|
|
|
enum hsr_port_type pt, struct netlink_ext_ack *extack);
|
2014-07-05 04:38:05 +07:00
|
|
|
void hsr_del_port(struct hsr_port *port);
|
2014-07-05 04:41:03 +07:00
|
|
|
bool hsr_port_exists(const struct net_device *dev);
|
2014-07-05 04:38:05 +07:00
|
|
|
|
|
|
|
static inline struct hsr_port *hsr_port_get_rtnl(const struct net_device *dev)
|
|
|
|
{
|
|
|
|
ASSERT_RTNL();
|
|
|
|
return hsr_port_exists(dev) ?
|
|
|
|
rtnl_dereference(dev->rx_handler_data) : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct hsr_port *hsr_port_get_rcu(const struct net_device *dev)
|
|
|
|
{
|
|
|
|
return hsr_port_exists(dev) ?
|
|
|
|
rcu_dereference(dev->rx_handler_data) : NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-22 21:40:21 +07:00
|
|
|
bool hsr_invalid_dan_ingress_frame(__be16 protocol);
|
|
|
|
|
2014-07-05 04:35:24 +07:00
|
|
|
#endif /* __HSR_SLAVE_H */
|