dnsmasq: Add option --min-port
[openwrt/staging/mkresin.git] / package / kernel / mac80211 / patches / 020-header-fix-genl_notify-on-kernel-4.4.patch
1 From 7a6e8b70a956a722f90d551e920c1096a9455b54 Mon Sep 17 00:00:00 2001
2 From: Hauke Mehrtens <hauke@hauke-m.de>
3 Date: Sat, 5 Dec 2015 14:10:28 +0100
4 Subject: [PATCH 07/12] header: fix genl_notify() on kernel 4.4
5
6 The change of the parameters of genl_notify() is in kernel 4.4. This
7 backport should not be applied for kernel 4.4 and newer kernel versions.
8
9 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
10 ---
11 backport/backport-include/net/genetlink.h | 2 ++
12 1 file changed, 2 insertions(+)
13
14 --- a/backport-include/net/genetlink.h
15 +++ b/backport-include/net/genetlink.h
16 @@ -146,10 +146,12 @@ backport_genlmsg_multicast_allns(struct
17 #define __genl_const
18 #else /* < 3.13 */
19 #define __genl_const const
20 +#if LINUX_VERSION_CODE < KERNEL_VERSION(4,4,0)
21 #define genl_notify(_fam, _skb, _info, _group, _flags) \
22 genl_notify(_fam, _skb, genl_info_net(_info), \
23 genl_info_snd_portid(_info), \
24 _group, _info->nlhdr, _flags)
25 +#endif /* < 4.4 */
26 #endif /* < 3.13 */
27
28 #endif /* __BACKPORT_NET_GENETLINK_H */