batman-adv: update to version 2022.1
[feed/routing.git] / batman-adv / src / compat-hacks.h
1 /* Please avoid adding hacks here - instead add it to mac80211/backports.git */
2
3 #undef CONFIG_MODULE_STRIPPED
4
5 #include <linux/version.h> /* LINUX_VERSION_CODE */
6 #include <linux/types.h>
7
8 #if LINUX_VERSION_IS_LESS(5, 14, 0)
9
10 #include <linux/if_bridge.h>
11 #include <net/addrconf.h>
12
13 #if IS_ENABLED(CONFIG_IPV6)
14 static inline bool
15 br_multicast_has_router_adjacent(struct net_device *dev, int proto)
16 {
17 struct list_head bridge_mcast_list = LIST_HEAD_INIT(bridge_mcast_list);
18 struct br_ip_list *br_ip_entry, *tmp;
19 int ret;
20
21 if (proto != ETH_P_IPV6)
22 return true;
23
24 ret = br_multicast_list_adjacent(dev, &bridge_mcast_list);
25 if (ret < 0)
26 return true;
27
28 ret = false;
29
30 list_for_each_entry_safe(br_ip_entry, tmp, &bridge_mcast_list, list) {
31 if (br_ip_entry->addr.proto == htons(ETH_P_IPV6) &&
32 ipv6_addr_is_ll_all_routers(&br_ip_entry->addr.dst.ip6))
33 ret = true;
34
35 list_del(&br_ip_entry->list);
36 kfree(br_ip_entry);
37 }
38
39 return ret;
40 }
41 #else
42 static inline bool
43 br_multicast_has_router_adjacent(struct net_device *dev, int proto)
44 {
45 return true;
46 }
47 #endif
48
49 #endif /* LINUX_VERSION_IS_LESS(5, 14, 0) */
50
51 #if LINUX_VERSION_IS_LESS(5, 15, 0)
52
53 static inline void batadv_eth_hw_addr_set(struct net_device *dev,
54 const u8 *addr)
55 {
56 ether_addr_copy(dev->dev_addr, addr);
57 }
58 #define eth_hw_addr_set batadv_eth_hw_addr_set
59
60 #endif /* LINUX_VERSION_IS_LESS(5, 15, 0) */
61
62 #if LINUX_VERSION_IS_LESS(5, 18, 0)
63
64 static inline int batadv_netif_rx(struct sk_buff *skb)
65 {
66 if (in_interrupt())
67 return netif_rx(skb);
68 else
69 return netif_rx_ni(skb);
70 }
71 #define netif_rx batadv_netif_rx
72
73 #endif /* LINUX_VERSION_IS_LESS(5, 18, 0) */
74
75 /* <DECLARE_EWMA> */
76
77 #include <linux/version.h>
78 #include_next <linux/average.h>
79
80 #include <linux/bug.h>
81
82 #ifdef DECLARE_EWMA
83 #undef DECLARE_EWMA
84 #endif /* DECLARE_EWMA */
85
86 /*
87 * Exponentially weighted moving average (EWMA)
88 *
89 * This implements a fixed-precision EWMA algorithm, with both the
90 * precision and fall-off coefficient determined at compile-time
91 * and built into the generated helper funtions.
92 *
93 * The first argument to the macro is the name that will be used
94 * for the struct and helper functions.
95 *
96 * The second argument, the precision, expresses how many bits are
97 * used for the fractional part of the fixed-precision values.
98 *
99 * The third argument, the weight reciprocal, determines how the
100 * new values will be weighed vs. the old state, new values will
101 * get weight 1/weight_rcp and old values 1-1/weight_rcp. Note
102 * that this parameter must be a power of two for efficiency.
103 */
104
105 #define DECLARE_EWMA(name, _precision, _weight_rcp) \
106 struct ewma_##name { \
107 unsigned long internal; \
108 }; \
109 static inline void ewma_##name##_init(struct ewma_##name *e) \
110 { \
111 BUILD_BUG_ON(!__builtin_constant_p(_precision)); \
112 BUILD_BUG_ON(!__builtin_constant_p(_weight_rcp)); \
113 /* \
114 * Even if you want to feed it just 0/1 you should have \
115 * some bits for the non-fractional part... \
116 */ \
117 BUILD_BUG_ON((_precision) > 30); \
118 BUILD_BUG_ON_NOT_POWER_OF_2(_weight_rcp); \
119 e->internal = 0; \
120 } \
121 static inline unsigned long \
122 ewma_##name##_read(struct ewma_##name *e) \
123 { \
124 BUILD_BUG_ON(!__builtin_constant_p(_precision)); \
125 BUILD_BUG_ON(!__builtin_constant_p(_weight_rcp)); \
126 BUILD_BUG_ON((_precision) > 30); \
127 BUILD_BUG_ON_NOT_POWER_OF_2(_weight_rcp); \
128 return e->internal >> (_precision); \
129 } \
130 static inline void ewma_##name##_add(struct ewma_##name *e, \
131 unsigned long val) \
132 { \
133 unsigned long internal = READ_ONCE(e->internal); \
134 unsigned long weight_rcp = ilog2(_weight_rcp); \
135 unsigned long precision = _precision; \
136 \
137 BUILD_BUG_ON(!__builtin_constant_p(_precision)); \
138 BUILD_BUG_ON(!__builtin_constant_p(_weight_rcp)); \
139 BUILD_BUG_ON((_precision) > 30); \
140 BUILD_BUG_ON_NOT_POWER_OF_2(_weight_rcp); \
141 \
142 WRITE_ONCE(e->internal, internal ? \
143 (((internal << weight_rcp) - internal) + \
144 (val << precision)) >> weight_rcp : \
145 (val << precision)); \
146 }
147
148 /* </DECLARE_EWMA> */