diff --git a/batman-adv/Makefile b/batman-adv/Makefile index 1ef5706..e390670 100644 --- a/batman-adv/Makefile +++ b/batman-adv/Makefile @@ -3,12 +3,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=batman-adv -PKG_VERSION:=2022.3 +PKG_VERSION:=2023.0 PKG_RELEASE:=$(AUTORELEASE) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://downloads.open-mesh.org/batman/releases/batman-adv-$(PKG_VERSION) -PKG_HASH:=218ffb534fead1c9b5b0d90ec1b2fba688209cdf00e861bece1cbf469fe69953 +PKG_HASH:=2ce4ec04063252e7bfec3a2b3fa2a61b3b42c7b04d698ba60132bfab1d60a5cd PKG_EXTMOD_SUBDIRS:=net/batman-adv PKG_MAINTAINER:=Simon Wunderlich diff --git a/batman-adv/src/compat-hacks.h b/batman-adv/src/compat-hacks.h index 495ea16..646e179 100644 --- a/batman-adv/src/compat-hacks.h +++ b/batman-adv/src/compat-hacks.h @@ -48,32 +48,6 @@ br_multicast_has_router_adjacent(struct net_device *dev, int proto) #endif /* LINUX_VERSION_IS_LESS(5, 14, 0) */ -#if LINUX_VERSION_IS_LESS(5, 15, 0) - -static inline void batadv_eth_hw_addr_set(struct net_device *dev, - const u8 *addr) -{ - ether_addr_copy(dev->dev_addr, addr); -} -#define eth_hw_addr_set batadv_eth_hw_addr_set - -#endif /* LINUX_VERSION_IS_LESS(5, 15, 0) */ - -#if LINUX_VERSION_IS_LESS(5, 18, 0) - -#include - -static inline int batadv_netif_rx(struct sk_buff *skb) -{ - if (in_interrupt()) - return netif_rx(skb); - else - return netif_rx_ni(skb); -} -#define netif_rx batadv_netif_rx - -#endif /* LINUX_VERSION_IS_LESS(5, 18, 0) */ - #if LINUX_VERSION_IS_LESS(6, 0, 0) #define __vstring(item, fmt, ap) __dynamic_array(char, item, 256) @@ -82,6 +56,21 @@ static inline int batadv_netif_rx(struct sk_buff *skb) #endif /* LINUX_VERSION_IS_LESS(6, 0, 0) */ +#if LINUX_VERSION_IS_LESS(6, 2, 0) + +#include + +#define genl_split_ops genl_ops + +static inline u32 batadv_get_random_u32_below(u32 ep_ro) +{ + return prandom_u32_max(ep_ro); +} + +#define get_random_u32_below batadv_get_random_u32_below + +#endif /* LINUX_VERSION_IS_LESS(6, 2, 0) */ + /* */ #include