]> Git Repo - linux.git/commitdiff
mac80211: fix GFP_KERNEL under tasklet context
authorYan-Hsuan Chuang <[email protected]>
Tue, 23 Oct 2018 03:24:44 +0000 (11:24 +0800)
committerJohannes Berg <[email protected]>
Fri, 9 Nov 2018 07:56:12 +0000 (08:56 +0100)
cfg80211_sta_opmode_change_notify needs a gfp_t flag to hint the nl80211
stack when allocating new skb, but it is called under tasklet context
here with GFP_KERNEL and kernel will yield a warning about it.

Cc: [email protected]
Fixes: ff84e7bfe176 ("mac80211: Add support to notify ht/vht opmode modification.")
Signed-off-by: Yan-Hsuan Chuang <[email protected]>
ACKed-by: Larry Finger <[email protected]>
Signed-off-by: Johannes Berg <[email protected]>
net/mac80211/rx.c

index 3bd3b57697970f8ad2c756d1ab69a360b465ff38..a69ecfb212ed73806d51edef55de926957119046 100644 (file)
@@ -3063,7 +3063,7 @@ ieee80211_rx_h_action(struct ieee80211_rx_data *rx)
                        cfg80211_sta_opmode_change_notify(sdata->dev,
                                                          rx->sta->addr,
                                                          &sta_opmode,
-                                                         GFP_KERNEL);
+                                                         GFP_ATOMIC);
                        goto handled;
                }
                case WLAN_HT_ACTION_NOTIFY_CHANWIDTH: {
@@ -3100,7 +3100,7 @@ ieee80211_rx_h_action(struct ieee80211_rx_data *rx)
                        cfg80211_sta_opmode_change_notify(sdata->dev,
                                                          rx->sta->addr,
                                                          &sta_opmode,
-                                                         GFP_KERNEL);
+                                                         GFP_ATOMIC);
                        goto handled;
                }
                default:
This page took 0.061532 seconds and 4 git commands to generate.