Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 06ee1c26 authored by John W. Linville's avatar John W. Linville
Browse files

wireless: use netif_rx_ni in ieee80211_send_layer2_update

These synthetic frames are all triggered from userland requests in
process context.

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



Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 9acd56d3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,