diff options
author | 2024-05-15 11:58:26 +0200 | |
---|---|---|
committer | 2024-05-15 11:58:26 +0200 | |
commit | dafc2d0f1bb9bb865a8420f77de56bafd8881cc5 (patch) | |
tree | d342568bc9498c5f4949ece6ce3e2c91dde08335 /include/linux/udp.h | |
parent | printk: cleanup deprecated uses of strncpy/strcpy (diff) | |
parent | printk: Remove redundant CONFIG_BASE_FULL (diff) | |
download | wireguard-linux-dafc2d0f1bb9bb865a8420f77de56bafd8881cc5.tar.xz wireguard-linux-dafc2d0f1bb9bb865a8420f77de56bafd8881cc5.zip |
Merge branch 'for-6.10-base-small' into for-linus
Diffstat (limited to 'include/linux/udp.h')
-rw-r--r-- | include/linux/udp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/udp.h b/include/linux/udp.h index 3748e82b627b..2d21cdb41ad8 100644 --- a/include/linux/udp.h +++ b/include/linux/udp.h @@ -24,7 +24,7 @@ static inline struct udphdr *udp_hdr(const struct sk_buff *skb) } #define UDP_HTABLE_SIZE_MIN_PERNET 128 -#define UDP_HTABLE_SIZE_MIN (CONFIG_BASE_SMALL ? 128 : 256) +#define UDP_HTABLE_SIZE_MIN (IS_ENABLED(CONFIG_BASE_SMALL) ? 128 : 256) #define UDP_HTABLE_SIZE_MAX 65536 static inline u32 udp_hashfn(const struct net *net, u32 num, u32 mask) |