rtc: opal: Fix OPAL RTC driver OPAL_BUSY loops
[linux/fpc-iii.git] / net / batman-adv / hard-interface.h
blobde5e9a374ece5f05ae36399cef49f062000a532c
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (C) 2007-2017 B.A.T.M.A.N. contributors:
4 * Marek Lindner, Simon Wunderlich
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #ifndef _NET_BATMAN_ADV_HARD_INTERFACE_H_
20 #define _NET_BATMAN_ADV_HARD_INTERFACE_H_
22 #include "main.h"
24 #include <linux/compiler.h>
25 #include <linux/kref.h>
26 #include <linux/notifier.h>
27 #include <linux/rcupdate.h>
28 #include <linux/stddef.h>
29 #include <linux/types.h>
31 struct net_device;
32 struct net;
34 /**
35 * enum batadv_hard_if_state - State of a hard interface
37 enum batadv_hard_if_state {
38 /**
39 * @BATADV_IF_NOT_IN_USE: interface is not used as slave interface of a
40 * batman-adv soft interface
42 BATADV_IF_NOT_IN_USE,
44 /**
45 * @BATADV_IF_TO_BE_REMOVED: interface will be removed from soft
46 * interface
48 BATADV_IF_TO_BE_REMOVED,
50 /** @BATADV_IF_INACTIVE: interface is deactivated */
51 BATADV_IF_INACTIVE,
53 /** @BATADV_IF_ACTIVE: interface is used */
54 BATADV_IF_ACTIVE,
56 /** @BATADV_IF_TO_BE_ACTIVATED: interface is getting activated */
57 BATADV_IF_TO_BE_ACTIVATED,
59 /**
60 * @BATADV_IF_I_WANT_YOU: interface is queued up (using sysfs) for being
61 * added as slave interface of a batman-adv soft interface
63 BATADV_IF_I_WANT_YOU,
66 /**
67 * enum batadv_hard_if_bcast - broadcast avoidance options
69 enum batadv_hard_if_bcast {
70 /** @BATADV_HARDIF_BCAST_OK: Do broadcast on according hard interface */
71 BATADV_HARDIF_BCAST_OK = 0,
73 /**
74 * @BATADV_HARDIF_BCAST_NORECIPIENT: Broadcast not needed, there is no
75 * recipient
77 BATADV_HARDIF_BCAST_NORECIPIENT,
79 /**
80 * @BATADV_HARDIF_BCAST_DUPFWD: There is just the neighbor we got it
81 * from
83 BATADV_HARDIF_BCAST_DUPFWD,
85 /** @BATADV_HARDIF_BCAST_DUPORIG: There is just the originator */
86 BATADV_HARDIF_BCAST_DUPORIG,
89 /**
90 * enum batadv_hard_if_cleanup - Cleanup modi for soft_iface after slave removal
92 enum batadv_hard_if_cleanup {
93 /**
94 * @BATADV_IF_CLEANUP_KEEP: Don't automatically delete soft-interface
96 BATADV_IF_CLEANUP_KEEP,
98 /**
99 * @BATADV_IF_CLEANUP_AUTO: Delete soft-interface after last slave was
100 * removed
102 BATADV_IF_CLEANUP_AUTO,
105 extern struct notifier_block batadv_hard_if_notifier;
107 struct net_device *batadv_get_real_netdev(struct net_device *net_device);
108 bool batadv_is_cfg80211_hardif(struct batadv_hard_iface *hard_iface);
109 bool batadv_is_wifi_hardif(struct batadv_hard_iface *hard_iface);
110 struct batadv_hard_iface*
111 batadv_hardif_get_by_netdev(const struct net_device *net_dev);
112 int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface,
113 struct net *net, const char *iface_name);
114 void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface,
115 enum batadv_hard_if_cleanup autodel);
116 void batadv_hardif_remove_interfaces(void);
117 int batadv_hardif_min_mtu(struct net_device *soft_iface);
118 void batadv_update_min_mtu(struct net_device *soft_iface);
119 void batadv_hardif_release(struct kref *ref);
120 int batadv_hardif_no_broadcast(struct batadv_hard_iface *if_outgoing,
121 u8 *orig_addr, u8 *orig_neigh);
124 * batadv_hardif_put() - decrement the hard interface refcounter and possibly
125 * release it
126 * @hard_iface: the hard interface to free
128 static inline void batadv_hardif_put(struct batadv_hard_iface *hard_iface)
130 kref_put(&hard_iface->refcount, batadv_hardif_release);
134 * batadv_primary_if_get_selected() - Get reference to primary interface
135 * @bat_priv: the bat priv with all the soft interface information
137 * Return: primary interface (with increased refcnt), otherwise NULL
139 static inline struct batadv_hard_iface *
140 batadv_primary_if_get_selected(struct batadv_priv *bat_priv)
142 struct batadv_hard_iface *hard_iface;
144 rcu_read_lock();
145 hard_iface = rcu_dereference(bat_priv->primary_if);
146 if (!hard_iface)
147 goto out;
149 if (!kref_get_unless_zero(&hard_iface->refcount))
150 hard_iface = NULL;
152 out:
153 rcu_read_unlock();
154 return hard_iface;
157 #endif /* _NET_BATMAN_ADV_HARD_INTERFACE_H_ */