Skip to content

Commit

Permalink
wireless: use netif_rx_ni in ieee80211_send_layer2_update
Browse files Browse the repository at this point in the history
These synthetic frames are all triggered from userland requests in
process context.

https://bugzilla.kernel.org/show_bug.cgi?id=16412

Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
John W. Linville committed Jul 20, 2010
1 parent 9acd56d commit 06ee1c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/mac80211/cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ static void ieee80211_send_layer2_update(struct sta_info *sta)
skb->dev = sta->sdata->dev;
skb->protocol = eth_type_trans(skb, sta->sdata->dev);
memset(skb->cb, 0, sizeof(skb->cb));
netif_rx(skb);
netif_rx_ni(skb);
}

static void sta_apply_parameters(struct ieee80211_local *local,
Expand Down

0 comments on commit 06ee1c2

Please sign in to comment.