99a1bb39fedcbd2069a0f790a624fdeaed12b47c
[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, 10, 0)
9
10 #include <linux/if_bridge.h>
11
12 struct batadv_br_ip {
13 union {
14 __be32 ip4;
15 #if IS_ENABLED(CONFIG_IPV6)
16 struct in6_addr ip6;
17 #endif
18 } dst;
19 __be16 proto;
20 __u16 vid;
21 };
22
23 struct batadv_br_ip_list {
24 struct list_head list;
25 struct batadv_br_ip addr;
26 };
27
28 #if 0
29 /* "static" dropped to force compiler to evaluate it as part of multicast.c
30 * might need to be added again and then called in some kind of dummy
31 * compat.c in case this header is included in multiple files.
32 */
33 inline void __batadv_br_ip_list_check(void)
34 {
35 BUILD_BUG_ON(sizeof(struct batadv_br_ip_list) != sizeof(struct br_ip_list));
36 BUILD_BUG_ON(offsetof(struct batadv_br_ip_list, list) != offsetof(struct br_ip_list, list));
37 BUILD_BUG_ON(offsetof(struct batadv_br_ip_list, addr) != offsetof(struct br_ip_list, addr));
38
39 BUILD_BUG_ON(sizeof(struct batadv_br_ip) != sizeof(struct br_ip));
40 BUILD_BUG_ON(offsetof(struct batadv_br_ip, dst.ip4) != offsetof(struct br_ip, u.ip4));
41 BUILD_BUG_ON(offsetof(struct batadv_br_ip, dst.ip6) != offsetof(struct br_ip, u.ip6));
42 BUILD_BUG_ON(offsetof(struct batadv_br_ip, proto) != offsetof(struct br_ip, proto));
43 BUILD_BUG_ON(offsetof(struct batadv_br_ip, vid) != offsetof(struct br_ip, vid));
44 }
45 #endif
46
47 #define br_ip batadv_br_ip
48 #define br_ip_list batadv_br_ip_list
49
50 #endif /* LINUX_VERSION_IS_LESS(5, 10, 0) */
51
52 #if LINUX_VERSION_IS_LESS(5, 14, 0)
53
54 #include <linux/if_bridge.h>
55 #include <net/addrconf.h>
56
57 #if IS_ENABLED(CONFIG_IPV6)
58 static inline bool
59 br_multicast_has_router_adjacent(struct net_device *dev, int proto)
60 {
61 struct list_head bridge_mcast_list = LIST_HEAD_INIT(bridge_mcast_list);
62 struct br_ip_list *br_ip_entry, *tmp;
63 int ret;
64
65 if (proto != ETH_P_IPV6)
66 return true;
67
68 ret = br_multicast_list_adjacent(dev, &bridge_mcast_list);
69 if (ret < 0)
70 return true;
71
72 ret = false;
73
74 list_for_each_entry_safe(br_ip_entry, tmp, &bridge_mcast_list, list) {
75 if (br_ip_entry->addr.proto == htons(ETH_P_IPV6) &&
76 ipv6_addr_is_ll_all_routers(&br_ip_entry->addr.dst.ip6))
77 ret = true;
78
79 list_del(&br_ip_entry->list);
80 kfree(br_ip_entry);
81 }
82
83 return ret;
84 }
85 #else
86 static inline bool
87 br_multicast_has_router_adjacent(struct net_device *dev, int proto)
88 {
89 return true;
90 }
91 #endif
92
93 #endif /* LINUX_VERSION_IS_LESS(5, 14, 0) */
94
95 #if LINUX_VERSION_IS_LESS(5, 15, 0)
96
97 static inline void batadv_eth_hw_addr_set(struct net_device *dev,
98 const u8 *addr)
99 {
100 ether_addr_copy(dev->dev_addr, addr);
101 }
102 #define eth_hw_addr_set batadv_eth_hw_addr_set
103
104 #endif /* LINUX_VERSION_IS_LESS(5, 15, 0) */
105
106 /* <DECLARE_EWMA> */
107
108 #include <linux/version.h>
109 #include_next <linux/average.h>
110
111 #include <linux/bug.h>
112
113 #ifdef DECLARE_EWMA
114 #undef DECLARE_EWMA
115 #endif /* DECLARE_EWMA */
116
117 /*
118 * Exponentially weighted moving average (EWMA)
119 *
120 * This implements a fixed-precision EWMA algorithm, with both the
121 * precision and fall-off coefficient determined at compile-time
122 * and built into the generated helper funtions.
123 *
124 * The first argument to the macro is the name that will be used
125 * for the struct and helper functions.
126 *
127 * The second argument, the precision, expresses how many bits are
128 * used for the fractional part of the fixed-precision values.
129 *
130 * The third argument, the weight reciprocal, determines how the
131 * new values will be weighed vs. the old state, new values will
132 * get weight 1/weight_rcp and old values 1-1/weight_rcp. Note
133 * that this parameter must be a power of two for efficiency.
134 */
135
136 #define DECLARE_EWMA(name, _precision, _weight_rcp) \
137 struct ewma_##name { \
138 unsigned long internal; \
139 }; \
140 static inline void ewma_##name##_init(struct ewma_##name *e) \
141 { \
142 BUILD_BUG_ON(!__builtin_constant_p(_precision)); \
143 BUILD_BUG_ON(!__builtin_constant_p(_weight_rcp)); \
144 /* \
145 * Even if you want to feed it just 0/1 you should have \
146 * some bits for the non-fractional part... \
147 */ \
148 BUILD_BUG_ON((_precision) > 30); \
149 BUILD_BUG_ON_NOT_POWER_OF_2(_weight_rcp); \
150 e->internal = 0; \
151 } \
152 static inline unsigned long \
153 ewma_##name##_read(struct ewma_##name *e) \
154 { \
155 BUILD_BUG_ON(!__builtin_constant_p(_precision)); \
156 BUILD_BUG_ON(!__builtin_constant_p(_weight_rcp)); \
157 BUILD_BUG_ON((_precision) > 30); \
158 BUILD_BUG_ON_NOT_POWER_OF_2(_weight_rcp); \
159 return e->internal >> (_precision); \
160 } \
161 static inline void ewma_##name##_add(struct ewma_##name *e, \
162 unsigned long val) \
163 { \
164 unsigned long internal = READ_ONCE(e->internal); \
165 unsigned long weight_rcp = ilog2(_weight_rcp); \
166 unsigned long precision = _precision; \
167 \
168 BUILD_BUG_ON(!__builtin_constant_p(_precision)); \
169 BUILD_BUG_ON(!__builtin_constant_p(_weight_rcp)); \
170 BUILD_BUG_ON((_precision) > 30); \
171 BUILD_BUG_ON_NOT_POWER_OF_2(_weight_rcp); \
172 \
173 WRITE_ONCE(e->internal, internal ? \
174 (((internal << weight_rcp) - internal) + \
175 (val << precision)) >> weight_rcp : \
176 (val << precision)); \
177 }
178
179 /* </DECLARE_EWMA> */