summaryrefslogtreecommitdiff
path: root/patches/17-netdev-queue.patch
blob: 284e162c905f2aa1e9520a830195dde60544e658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
This patch addresses changes made by usage of new symbols
like unregister_netdevice_queue() which are not possible to backport
due to their reliance on internal symbols on net/core/dev.c

The patch that introduced this on mac80211 was:

    mac80211: Speedup ieee80211_remove_interfaces()
    
    Speedup ieee80211_remove_interfaces() by factorizing synchronize_rcu() calls
    
    Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
    Reviewed-by: Johannes Berg <johannes@sipsolutions.net>
    Signed-off-by: John W. Linville <linville@tuxdriver.com>

--- a/net/mac80211/iface.c
+++ b/net/mac80211/iface.c
@@ -1394,6 +1394,7 @@ void ieee80211_if_remove(struct ieee8021
  * Remove all interfaces, may only be called at hardware unregistration
  * time because it doesn't do RCU-safe list removals.
  */
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33))
 void ieee80211_remove_interfaces(struct ieee80211_local *local)
 {
 	struct ieee80211_sub_if_data *sdata, *tmp;
@@ -1413,6 +1414,22 @@ void ieee80211_remove_interfaces(struct
 	unregister_netdevice_many(&unreg_list);
 	list_del(&unreg_list);
 }
+#else
+void ieee80211_remove_interfaces(struct ieee80211_local *local)
+{
+	struct ieee80211_sub_if_data *sdata, *tmp;
+
+	ASSERT_RTNL();
+
+	list_for_each_entry_safe(sdata, tmp, &local->interfaces, list) {
+		mutex_lock(&local->iflist_mtx);
+		list_del(&sdata->list);
+		mutex_unlock(&local->iflist_mtx);
+
+		unregister_netdevice(sdata->dev);
+	}
+}
+#endif
 
 static u32 ieee80211_idle_off(struct ieee80211_local *local,
 			      const char *reason)