diff options
Diffstat (limited to 'net/mac80211/rx.c')
-rw-r--r-- | net/mac80211/rx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c index 6cbf1a7b3157..f60dfca52196 100644 --- a/net/mac80211/rx.c +++ b/net/mac80211/rx.c | |||
@@ -289,7 +289,7 @@ ieee80211_rx_monitor(struct ieee80211_local *local, struct sk_buff *origskb, | |||
289 | if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) | 289 | if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) |
290 | continue; | 290 | continue; |
291 | 291 | ||
292 | if (!netif_running(sdata->dev)) | 292 | if (!ieee80211_sdata_running(sdata)) |
293 | continue; | 293 | continue; |
294 | 294 | ||
295 | if (prev_dev) { | 295 | if (prev_dev) { |
@@ -2056,7 +2056,7 @@ static void ieee80211_rx_cooked_monitor(struct ieee80211_rx_data *rx, | |||
2056 | skb->protocol = htons(ETH_P_802_2); | 2056 | skb->protocol = htons(ETH_P_802_2); |
2057 | 2057 | ||
2058 | list_for_each_entry_rcu(sdata, &local->interfaces, list) { | 2058 | list_for_each_entry_rcu(sdata, &local->interfaces, list) { |
2059 | if (!netif_running(sdata->dev)) | 2059 | if (!ieee80211_sdata_running(sdata)) |
2060 | continue; | 2060 | continue; |
2061 | 2061 | ||
2062 | if (sdata->vif.type != NL80211_IFTYPE_MONITOR || | 2062 | if (sdata->vif.type != NL80211_IFTYPE_MONITOR || |
@@ -2318,7 +2318,7 @@ static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw, | |||
2318 | } | 2318 | } |
2319 | if (!found_sta) { | 2319 | if (!found_sta) { |
2320 | list_for_each_entry_rcu(sdata, &local->interfaces, list) { | 2320 | list_for_each_entry_rcu(sdata, &local->interfaces, list) { |
2321 | if (!netif_running(sdata->dev)) | 2321 | if (!ieee80211_sdata_running(sdata)) |
2322 | continue; | 2322 | continue; |
2323 | 2323 | ||
2324 | if (sdata->vif.type == NL80211_IFTYPE_MONITOR || | 2324 | if (sdata->vif.type == NL80211_IFTYPE_MONITOR || |