diff options
-rw-r--r-- | net/mac80211/ibss.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/mac80211/ibss.c b/net/mac80211/ibss.c index a35f37980e70..531477a62f4b 100644 --- a/net/mac80211/ibss.c +++ b/net/mac80211/ibss.c | |||
@@ -1465,6 +1465,11 @@ static void ieee80211_rx_mgmt_probe_req(struct ieee80211_sub_if_data *sdata, | |||
1465 | memcpy(((struct ieee80211_mgmt *) skb->data)->da, mgmt->sa, ETH_ALEN); | 1465 | memcpy(((struct ieee80211_mgmt *) skb->data)->da, mgmt->sa, ETH_ALEN); |
1466 | ibss_dbg(sdata, "Sending ProbeResp to %pM\n", mgmt->sa); | 1466 | ibss_dbg(sdata, "Sending ProbeResp to %pM\n", mgmt->sa); |
1467 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; | 1467 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; |
1468 | |||
1469 | /* avoid excessive retries for probe request to wildcard SSIDs */ | ||
1470 | if (pos[1] == 0) | ||
1471 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_NO_ACK; | ||
1472 | |||
1468 | ieee80211_tx_skb(sdata, skb); | 1473 | ieee80211_tx_skb(sdata, skb); |
1469 | } | 1474 | } |
1470 | 1475 | ||