Author: nbd
Date: 2014-11-09 03:25:49 +0100 (Sun, 09 Nov 2014)
New Revision: 43224

Modified:
   trunk/package/kernel/mac80211/patches/008-fix_netdev_unregister.patch
Log:
mac80211: fix kernel crash on netdev unregister on newer 3.14 kernels

Based on patch by Mark Milburn

Signed-off-by: Felix Fietkau <[email protected]>

Modified: trunk/package/kernel/mac80211/patches/008-fix_netdev_unregister.patch
===================================================================
--- trunk/package/kernel/mac80211/patches/008-fix_netdev_unregister.patch       
2014-11-08 21:41:21 UTC (rev 43223)
+++ trunk/package/kernel/mac80211/patches/008-fix_netdev_unregister.patch       
2014-11-09 02:25:49 UTC (rev 43224)
@@ -1,11 +1,13 @@
 --- a/net/mac80211/iface.c
 +++ b/net/mac80211/iface.c
-@@ -1859,6 +1859,11 @@ void ieee80211_remove_interfaces(struct 
+@@ -1859,6 +1859,13 @@ void ieee80211_remove_interfaces(struct 
        }
        mutex_unlock(&local->iflist_mtx);
        unregister_netdevice_many(&unreg_list);
 +#if (!(LINUX_VERSION_CODE >= KERNEL_VERSION(3,10,45) && \
 +       LINUX_VERSION_CODE < KERNEL_VERSION(3,11,0)) && \
++     !(LINUX_VERSION_CODE >= KERNEL_VERSION(3,14,9) && \
++       LINUX_VERSION_CODE < KERNEL_VERSION(3,15,0)) && \
 +     (LINUX_VERSION_CODE < KERNEL_VERSION(3,16,0)))
 +      list_del(&unreg_list);
 +#endif
_______________________________________________
openwrt-commits mailing list
[email protected]
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits

Reply via email to