status.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546
  1. /*
  2. * Copyright 2002-2005, Instant802 Networks, Inc.
  3. * Copyright 2005-2006, Devicescape Software, Inc.
  4. * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
  5. * Copyright 2008-2010 Johannes Berg <johannes@sipsolutions.net>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #include <net/mac80211.h>
  12. #include "ieee80211_i.h"
  13. #include "rate.h"
  14. #include "mesh.h"
  15. #include "led.h"
  16. #include "wme.h"
  17. void ieee80211_tx_status_irqsafe(struct ieee80211_hw *hw,
  18. struct sk_buff *skb)
  19. {
  20. struct ieee80211_local *local = hw_to_local(hw);
  21. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  22. int tmp;
  23. skb->pkt_type = IEEE80211_TX_STATUS_MSG;
  24. skb_queue_tail(info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS ?
  25. &local->skb_queue : &local->skb_queue_unreliable, skb);
  26. tmp = skb_queue_len(&local->skb_queue) +
  27. skb_queue_len(&local->skb_queue_unreliable);
  28. while (tmp > IEEE80211_IRQSAFE_QUEUE_LIMIT &&
  29. (skb = skb_dequeue(&local->skb_queue_unreliable))) {
  30. dev_kfree_skb_irq(skb);
  31. tmp--;
  32. I802_DEBUG_INC(local->tx_status_drop);
  33. }
  34. tasklet_schedule(&local->tasklet);
  35. }
  36. EXPORT_SYMBOL(ieee80211_tx_status_irqsafe);
  37. static void ieee80211_handle_filtered_frame(struct ieee80211_local *local,
  38. struct sta_info *sta,
  39. struct sk_buff *skb)
  40. {
  41. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  42. struct ieee80211_hdr *hdr = (void *)skb->data;
  43. int ac;
  44. /*
  45. * This skb 'survived' a round-trip through the driver, and
  46. * hopefully the driver didn't mangle it too badly. However,
  47. * we can definitely not rely on the control information
  48. * being correct. Clear it so we don't get junk there, and
  49. * indicate that it needs new processing, but must not be
  50. * modified/encrypted again.
  51. */
  52. memset(&info->control, 0, sizeof(info->control));
  53. info->control.jiffies = jiffies;
  54. info->control.vif = &sta->sdata->vif;
  55. info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING |
  56. IEEE80211_TX_INTFL_RETRANSMISSION;
  57. info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
  58. sta->tx_filtered_count++;
  59. /*
  60. * Clear more-data bit on filtered frames, it might be set
  61. * but later frames might time out so it might have to be
  62. * clear again ... It's all rather unlikely (this frame
  63. * should time out first, right?) but let's not confuse
  64. * peers unnecessarily.
  65. */
  66. if (hdr->frame_control & cpu_to_le16(IEEE80211_FCTL_MOREDATA))
  67. hdr->frame_control &= ~cpu_to_le16(IEEE80211_FCTL_MOREDATA);
  68. if (ieee80211_is_data_qos(hdr->frame_control)) {
  69. u8 *p = ieee80211_get_qos_ctl(hdr);
  70. int tid = *p & IEEE80211_QOS_CTL_TID_MASK;
  71. /*
  72. * Clear EOSP if set, this could happen e.g.
  73. * if an absence period (us being a P2P GO)
  74. * shortens the SP.
  75. */
  76. if (*p & IEEE80211_QOS_CTL_EOSP)
  77. *p &= ~IEEE80211_QOS_CTL_EOSP;
  78. ac = ieee802_1d_to_ac[tid & 7];
  79. } else {
  80. ac = IEEE80211_AC_BE;
  81. }
  82. /*
  83. * Clear the TX filter mask for this STA when sending the next
  84. * packet. If the STA went to power save mode, this will happen
  85. * when it wakes up for the next time.
  86. */
  87. set_sta_flags(sta, WLAN_STA_CLEAR_PS_FILT);
  88. /*
  89. * This code races in the following way:
  90. *
  91. * (1) STA sends frame indicating it will go to sleep and does so
  92. * (2) hardware/firmware adds STA to filter list, passes frame up
  93. * (3) hardware/firmware processes TX fifo and suppresses a frame
  94. * (4) we get TX status before having processed the frame and
  95. * knowing that the STA has gone to sleep.
  96. *
  97. * This is actually quite unlikely even when both those events are
  98. * processed from interrupts coming in quickly after one another or
  99. * even at the same time because we queue both TX status events and
  100. * RX frames to be processed by a tasklet and process them in the
  101. * same order that they were received or TX status last. Hence, there
  102. * is no race as long as the frame RX is processed before the next TX
  103. * status, which drivers can ensure, see below.
  104. *
  105. * Note that this can only happen if the hardware or firmware can
  106. * actually add STAs to the filter list, if this is done by the
  107. * driver in response to set_tim() (which will only reduce the race
  108. * this whole filtering tries to solve, not completely solve it)
  109. * this situation cannot happen.
  110. *
  111. * To completely solve this race drivers need to make sure that they
  112. * (a) don't mix the irq-safe/not irq-safe TX status/RX processing
  113. * functions and
  114. * (b) always process RX events before TX status events if ordering
  115. * can be unknown, for example with different interrupt status
  116. * bits.
  117. * (c) if PS mode transitions are manual (i.e. the flag
  118. * %IEEE80211_HW_AP_LINK_PS is set), always process PS state
  119. * changes before calling TX status events if ordering can be
  120. * unknown.
  121. */
  122. if (test_sta_flags(sta, WLAN_STA_PS_STA) &&
  123. skb_queue_len(&sta->tx_filtered[ac]) < STA_MAX_TX_BUFFER) {
  124. skb_queue_tail(&sta->tx_filtered[ac], skb);
  125. sta_info_recalc_tim(sta);
  126. if (!timer_pending(&local->sta_cleanup))
  127. mod_timer(&local->sta_cleanup,
  128. round_jiffies(jiffies +
  129. STA_INFO_CLEANUP_INTERVAL));
  130. return;
  131. }
  132. if (!test_sta_flags(sta, WLAN_STA_PS_STA) &&
  133. !(info->flags & IEEE80211_TX_INTFL_RETRIED)) {
  134. /* Software retry the packet once */
  135. info->flags |= IEEE80211_TX_INTFL_RETRIED;
  136. ieee80211_add_pending_skb(local, skb);
  137. return;
  138. }
  139. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  140. if (net_ratelimit())
  141. wiphy_debug(local->hw.wiphy,
  142. "dropped TX filtered frame, queue_len=%d PS=%d @%lu\n",
  143. skb_queue_len(&sta->tx_filtered[ac]),
  144. !!test_sta_flags(sta, WLAN_STA_PS_STA), jiffies);
  145. #endif
  146. dev_kfree_skb(skb);
  147. }
  148. static void ieee80211_check_pending_bar(struct sta_info *sta, u8 *addr, u8 tid)
  149. {
  150. struct tid_ampdu_tx *tid_tx;
  151. tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[tid]);
  152. if (!tid_tx || !tid_tx->bar_pending)
  153. return;
  154. tid_tx->bar_pending = false;
  155. ieee80211_send_bar(&sta->sdata->vif, addr, tid, tid_tx->failed_bar_ssn);
  156. }
  157. static void ieee80211_frame_acked(struct sta_info *sta, struct sk_buff *skb)
  158. {
  159. struct ieee80211_mgmt *mgmt = (void *) skb->data;
  160. struct ieee80211_local *local = sta->local;
  161. struct ieee80211_sub_if_data *sdata = sta->sdata;
  162. if (ieee80211_is_data_qos(mgmt->frame_control)) {
  163. struct ieee80211_hdr *hdr = (void *) skb->data;
  164. u8 *qc = ieee80211_get_qos_ctl(hdr);
  165. u16 tid = qc[0] & 0xf;
  166. ieee80211_check_pending_bar(sta, hdr->addr1, tid);
  167. }
  168. if (ieee80211_is_action(mgmt->frame_control) &&
  169. sdata->vif.type == NL80211_IFTYPE_STATION &&
  170. mgmt->u.action.category == WLAN_CATEGORY_HT &&
  171. mgmt->u.action.u.ht_smps.action == WLAN_HT_ACTION_SMPS) {
  172. /*
  173. * This update looks racy, but isn't -- if we come
  174. * here we've definitely got a station that we're
  175. * talking to, and on a managed interface that can
  176. * only be the AP. And the only other place updating
  177. * this variable is before we're associated.
  178. */
  179. switch (mgmt->u.action.u.ht_smps.smps_control) {
  180. case WLAN_HT_SMPS_CONTROL_DYNAMIC:
  181. sta->sdata->u.mgd.ap_smps = IEEE80211_SMPS_DYNAMIC;
  182. break;
  183. case WLAN_HT_SMPS_CONTROL_STATIC:
  184. sta->sdata->u.mgd.ap_smps = IEEE80211_SMPS_STATIC;
  185. break;
  186. case WLAN_HT_SMPS_CONTROL_DISABLED:
  187. default: /* shouldn't happen since we don't send that */
  188. sta->sdata->u.mgd.ap_smps = IEEE80211_SMPS_OFF;
  189. break;
  190. }
  191. ieee80211_queue_work(&local->hw, &local->recalc_smps);
  192. }
  193. }
  194. static void ieee80211_set_bar_pending(struct sta_info *sta, u8 tid, u16 ssn)
  195. {
  196. struct tid_ampdu_tx *tid_tx;
  197. tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[tid]);
  198. if (!tid_tx)
  199. return;
  200. tid_tx->failed_bar_ssn = ssn;
  201. tid_tx->bar_pending = true;
  202. }
  203. /*
  204. * Use a static threshold for now, best value to be determined
  205. * by testing ...
  206. * Should it depend on:
  207. * - on # of retransmissions
  208. * - current throughput (higher value for higher tpt)?
  209. */
  210. #define STA_LOST_PKT_THRESHOLD 50
  211. void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb)
  212. {
  213. struct sk_buff *skb2;
  214. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
  215. struct ieee80211_local *local = hw_to_local(hw);
  216. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  217. u16 frag, type;
  218. __le16 fc;
  219. struct ieee80211_supported_band *sband;
  220. struct ieee80211_tx_status_rtap_hdr *rthdr;
  221. struct ieee80211_sub_if_data *sdata;
  222. struct net_device *prev_dev = NULL;
  223. struct sta_info *sta, *tmp;
  224. int retry_count = -1, i;
  225. int rates_idx = -1;
  226. bool send_to_cooked;
  227. bool acked;
  228. struct ieee80211_bar *bar;
  229. u16 tid;
  230. for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
  231. if (info->status.rates[i].idx < 0) {
  232. break;
  233. } else if (i >= hw->max_report_rates) {
  234. /* the HW cannot have attempted that rate */
  235. info->status.rates[i].idx = -1;
  236. info->status.rates[i].count = 0;
  237. break;
  238. }
  239. retry_count += info->status.rates[i].count;
  240. }
  241. rates_idx = i - 1;
  242. if (retry_count < 0)
  243. retry_count = 0;
  244. rcu_read_lock();
  245. sband = local->hw.wiphy->bands[info->band];
  246. fc = hdr->frame_control;
  247. for_each_sta_info(local, hdr->addr1, sta, tmp) {
  248. /* skip wrong virtual interface */
  249. if (memcmp(hdr->addr2, sta->sdata->vif.addr, ETH_ALEN))
  250. continue;
  251. if (info->flags & IEEE80211_TX_STATUS_EOSP)
  252. clear_sta_flags(sta, WLAN_STA_SP);
  253. acked = !!(info->flags & IEEE80211_TX_STAT_ACK);
  254. if (!acked && test_sta_flags(sta, WLAN_STA_PS_STA)) {
  255. /*
  256. * The STA is in power save mode, so assume
  257. * that this TX packet failed because of that.
  258. */
  259. ieee80211_handle_filtered_frame(local, sta, skb);
  260. rcu_read_unlock();
  261. return;
  262. }
  263. if ((local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) &&
  264. (rates_idx != -1))
  265. sta->last_tx_rate = info->status.rates[rates_idx];
  266. if ((info->flags & IEEE80211_TX_STAT_AMPDU_NO_BACK) &&
  267. (ieee80211_is_data_qos(fc))) {
  268. u16 tid, ssn;
  269. u8 *qc;
  270. qc = ieee80211_get_qos_ctl(hdr);
  271. tid = qc[0] & 0xf;
  272. ssn = ((le16_to_cpu(hdr->seq_ctrl) + 0x10)
  273. & IEEE80211_SCTL_SEQ);
  274. ieee80211_send_bar(&sta->sdata->vif, hdr->addr1,
  275. tid, ssn);
  276. }
  277. if (!acked && ieee80211_is_back_req(fc)) {
  278. u16 control;
  279. /*
  280. * BAR failed, store the last SSN and retry sending
  281. * the BAR when the next unicast transmission on the
  282. * same TID succeeds.
  283. */
  284. bar = (struct ieee80211_bar *) skb->data;
  285. control = le16_to_cpu(bar->control);
  286. if (!(control & IEEE80211_BAR_CTRL_MULTI_TID)) {
  287. u16 ssn = le16_to_cpu(bar->start_seq_num);
  288. tid = (control &
  289. IEEE80211_BAR_CTRL_TID_INFO_MASK) >>
  290. IEEE80211_BAR_CTRL_TID_INFO_SHIFT;
  291. ieee80211_set_bar_pending(sta, tid, ssn);
  292. }
  293. }
  294. if (info->flags & IEEE80211_TX_STAT_TX_FILTERED) {
  295. ieee80211_handle_filtered_frame(local, sta, skb);
  296. rcu_read_unlock();
  297. return;
  298. } else {
  299. if (!acked)
  300. sta->tx_retry_failed++;
  301. sta->tx_retry_count += retry_count;
  302. }
  303. rate_control_tx_status(local, sband, sta, skb);
  304. if (ieee80211_vif_is_mesh(&sta->sdata->vif))
  305. ieee80211s_update_metric(local, sta, skb);
  306. if (!(info->flags & IEEE80211_TX_CTL_INJECTED) && acked)
  307. ieee80211_frame_acked(sta, skb);
  308. if ((sta->sdata->vif.type == NL80211_IFTYPE_STATION) &&
  309. (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS))
  310. ieee80211_sta_tx_notify(sta->sdata, (void *) skb->data, acked);
  311. if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
  312. if (info->flags & IEEE80211_TX_STAT_ACK) {
  313. if (sta->lost_packets)
  314. sta->lost_packets = 0;
  315. } else if (++sta->lost_packets >= STA_LOST_PKT_THRESHOLD) {
  316. cfg80211_cqm_pktloss_notify(sta->sdata->dev,
  317. sta->sta.addr,
  318. sta->lost_packets,
  319. GFP_ATOMIC);
  320. sta->lost_packets = 0;
  321. }
  322. }
  323. }
  324. rcu_read_unlock();
  325. ieee80211_led_tx(local, 0);
  326. /* SNMP counters
  327. * Fragments are passed to low-level drivers as separate skbs, so these
  328. * are actually fragments, not frames. Update frame counters only for
  329. * the first fragment of the frame. */
  330. frag = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG;
  331. type = le16_to_cpu(hdr->frame_control) & IEEE80211_FCTL_FTYPE;
  332. if (info->flags & IEEE80211_TX_STAT_ACK) {
  333. if (frag == 0) {
  334. local->dot11TransmittedFrameCount++;
  335. if (is_multicast_ether_addr(hdr->addr1))
  336. local->dot11MulticastTransmittedFrameCount++;
  337. if (retry_count > 0)
  338. local->dot11RetryCount++;
  339. if (retry_count > 1)
  340. local->dot11MultipleRetryCount++;
  341. }
  342. /* This counter shall be incremented for an acknowledged MPDU
  343. * with an individual address in the address 1 field or an MPDU
  344. * with a multicast address in the address 1 field of type Data
  345. * or Management. */
  346. if (!is_multicast_ether_addr(hdr->addr1) ||
  347. type == IEEE80211_FTYPE_DATA ||
  348. type == IEEE80211_FTYPE_MGMT)
  349. local->dot11TransmittedFragmentCount++;
  350. } else {
  351. if (frag == 0)
  352. local->dot11FailedCount++;
  353. }
  354. if (ieee80211_is_nullfunc(fc) && ieee80211_has_pm(fc) &&
  355. (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) &&
  356. !(info->flags & IEEE80211_TX_CTL_INJECTED) &&
  357. local->ps_sdata && !(local->scanning)) {
  358. if (info->flags & IEEE80211_TX_STAT_ACK) {
  359. local->ps_sdata->u.mgd.flags |=
  360. IEEE80211_STA_NULLFUNC_ACKED;
  361. } else
  362. mod_timer(&local->dynamic_ps_timer, jiffies +
  363. msecs_to_jiffies(10));
  364. }
  365. if (info->flags & IEEE80211_TX_INTFL_NL80211_FRAME_TX) {
  366. struct ieee80211_work *wk;
  367. u64 cookie = (unsigned long)skb;
  368. rcu_read_lock();
  369. list_for_each_entry_rcu(wk, &local->work_list, list) {
  370. if (wk->type != IEEE80211_WORK_OFFCHANNEL_TX)
  371. continue;
  372. if (wk->offchan_tx.frame != skb)
  373. continue;
  374. wk->offchan_tx.frame = NULL;
  375. break;
  376. }
  377. rcu_read_unlock();
  378. if (local->hw_roc_skb_for_status == skb) {
  379. cookie = local->hw_roc_cookie ^ 2;
  380. local->hw_roc_skb_for_status = NULL;
  381. }
  382. cfg80211_mgmt_tx_status(
  383. skb->dev, cookie, skb->data, skb->len,
  384. !!(info->flags & IEEE80211_TX_STAT_ACK), GFP_ATOMIC);
  385. }
  386. /* this was a transmitted frame, but now we want to reuse it */
  387. skb_orphan(skb);
  388. /* Need to make a copy before skb->cb gets cleared */
  389. send_to_cooked = !!(info->flags & IEEE80211_TX_CTL_INJECTED) ||
  390. (type != IEEE80211_FTYPE_DATA);
  391. /*
  392. * This is a bit racy but we can avoid a lot of work
  393. * with this test...
  394. */
  395. if (!local->monitors && (!send_to_cooked || !local->cooked_mntrs)) {
  396. dev_kfree_skb(skb);
  397. return;
  398. }
  399. /* send frame to monitor interfaces now */
  400. if (skb_headroom(skb) < sizeof(*rthdr)) {
  401. printk(KERN_ERR "ieee80211_tx_status: headroom too small\n");
  402. dev_kfree_skb(skb);
  403. return;
  404. }
  405. rthdr = (struct ieee80211_tx_status_rtap_hdr *)
  406. skb_push(skb, sizeof(*rthdr));
  407. memset(rthdr, 0, sizeof(*rthdr));
  408. rthdr->hdr.it_len = cpu_to_le16(sizeof(*rthdr));
  409. rthdr->hdr.it_present =
  410. cpu_to_le32((1 << IEEE80211_RADIOTAP_TX_FLAGS) |
  411. (1 << IEEE80211_RADIOTAP_DATA_RETRIES) |
  412. (1 << IEEE80211_RADIOTAP_RATE));
  413. if (!(info->flags & IEEE80211_TX_STAT_ACK) &&
  414. !is_multicast_ether_addr(hdr->addr1))
  415. rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_FAIL);
  416. /*
  417. * XXX: Once radiotap gets the bitmap reset thing the vendor
  418. * extensions proposal contains, we can actually report
  419. * the whole set of tries we did.
  420. */
  421. if ((info->status.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) ||
  422. (info->status.rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT))
  423. rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_CTS);
  424. else if (info->status.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
  425. rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_RTS);
  426. if (info->status.rates[0].idx >= 0 &&
  427. !(info->status.rates[0].flags & IEEE80211_TX_RC_MCS))
  428. rthdr->rate = sband->bitrates[
  429. info->status.rates[0].idx].bitrate / 5;
  430. /* for now report the total retry_count */
  431. rthdr->data_retries = retry_count;
  432. /* XXX: is this sufficient for BPF? */
  433. skb_set_mac_header(skb, 0);
  434. skb->ip_summed = CHECKSUM_UNNECESSARY;
  435. skb->pkt_type = PACKET_OTHERHOST;
  436. skb->protocol = htons(ETH_P_802_2);
  437. memset(skb->cb, 0, sizeof(skb->cb));
  438. rcu_read_lock();
  439. list_for_each_entry_rcu(sdata, &local->interfaces, list) {
  440. if (sdata->vif.type == NL80211_IFTYPE_MONITOR) {
  441. if (!ieee80211_sdata_running(sdata))
  442. continue;
  443. if ((sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) &&
  444. !send_to_cooked)
  445. continue;
  446. if (prev_dev) {
  447. skb2 = skb_clone(skb, GFP_ATOMIC);
  448. if (skb2) {
  449. skb2->dev = prev_dev;
  450. netif_rx(skb2);
  451. }
  452. }
  453. prev_dev = sdata->dev;
  454. }
  455. }
  456. if (prev_dev) {
  457. skb->dev = prev_dev;
  458. netif_rx(skb);
  459. skb = NULL;
  460. }
  461. rcu_read_unlock();
  462. dev_kfree_skb(skb);
  463. }
  464. EXPORT_SYMBOL(ieee80211_tx_status);
  465. void ieee80211_report_low_ack(struct ieee80211_sta *pubsta, u32 num_packets)
  466. {
  467. struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
  468. cfg80211_cqm_pktloss_notify(sta->sdata->dev, sta->sta.addr,
  469. num_packets, GFP_ATOMIC);
  470. }
  471. EXPORT_SYMBOL(ieee80211_report_low_ack);