David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2 | /* Copyright 2011-2014 Autronica Fire and Security AS |
| 3 | * |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4 | * 2011-2014 Arvid Brodin, arvid.brodin@alten.se |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 5 | * |
| 6 | * include file for HSR and PRP. |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef __HSR_SLAVE_H |
| 10 | #define __HSR_SLAVE_H |
| 11 | |
| 12 | #include <linux/skbuff.h> |
| 13 | #include <linux/netdevice.h> |
| 14 | #include <linux/rtnetlink.h> |
| 15 | #include "hsr_main.h" |
| 16 | |
| 17 | int hsr_add_port(struct hsr_priv *hsr, struct net_device *dev, |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 18 | enum hsr_port_type pt, struct netlink_ext_ack *extack); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 19 | void hsr_del_port(struct hsr_port *port); |
| 20 | bool hsr_port_exists(const struct net_device *dev); |
| 21 | |
| 22 | static inline struct hsr_port *hsr_port_get_rtnl(const struct net_device *dev) |
| 23 | { |
| 24 | ASSERT_RTNL(); |
| 25 | return hsr_port_exists(dev) ? |
| 26 | rtnl_dereference(dev->rx_handler_data) : NULL; |
| 27 | } |
| 28 | |
| 29 | static inline struct hsr_port *hsr_port_get_rcu(const struct net_device *dev) |
| 30 | { |
| 31 | return hsr_port_exists(dev) ? |
| 32 | rcu_dereference(dev->rx_handler_data) : NULL; |
| 33 | } |
| 34 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 35 | bool hsr_invalid_dan_ingress_frame(__be16 protocol); |
| 36 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 37 | #endif /* __HSR_SLAVE_H */ |