aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/rx.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2007-08-28 17:01:52 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:48:39 -0400
commit2a8a9a88fc1b18f5c45244d0ef8a5352f6cf761f (patch)
treebe45f7673455ebceb88bc405a33ae1254bc9e62f /net/mac80211/rx.c
parent4b6aa59999a3a12dd4740a52299c6c33e85a8747 (diff)
[MAC80211]: avoid copying packets to interfaces that are down
David Woodhouse noticed that under some circumstances the number of slab allocations kept growing. After looking a bit, this seemed to happen when you had a management mode interface that was *down*. The reason for this is that when the device is down, all management frames get queued to the in-kernel MLME (via ieee80211_sta_rx_mgmt) but then the sta work is invoked but doesn't run when the netif is down. When you then bring the interface up, all such frames are freed, but if you change the mode all of them are lost because the skb queue is reinitialised as soon as you go back to managed mode. The skb queue is correctly cleared when the interface is brought down, but the code doesn't account for the fact that it may be filled while it is not up. This patch should fix the issue by simply ignoring all interfaces that are down when going through the RX handlers. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Acked-by: Michael Wu <flamingice@sourmilk.net> Signed-off-by: John W. Linville <linville@tuxdriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/mac80211/rx.c')
-rw-r--r--net/mac80211/rx.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c
index 95a00eb5724..01176ba52df 100644
--- a/net/mac80211/rx.c
+++ b/net/mac80211/rx.c
@@ -1380,6 +1380,9 @@ void __ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb,
1380 list_for_each_entry(sdata, &local->sub_if_list, list) { 1380 list_for_each_entry(sdata, &local->sub_if_list, list) {
1381 rx.u.rx.ra_match = 1; 1381 rx.u.rx.ra_match = 1;
1382 1382
1383 if (!netif_running(sdata->dev))
1384 continue;
1385
1383 prepres = prepare_for_handlers(sdata, bssid, &rx, hdr); 1386 prepres = prepare_for_handlers(sdata, bssid, &rx, hdr);
1384 /* prepare_for_handlers can change sta */ 1387 /* prepare_for_handlers can change sta */
1385 sta = rx.sta; 1388 sta = rx.sta;