06f5d36840279c5fbafc5b7bf08f18803bcdf2d6
[pandora-kernel.git] / drivers / net / wireless / mwifiex / 11n_rxreorder.c
1 /*
2  * Marvell Wireless LAN device driver: 802.11n RX Re-ordering
3  *
4  * Copyright (C) 2011, Marvell International Ltd.
5  *
6  * This software file (the "File") is distributed by Marvell International
7  * Ltd. under the terms of the GNU General Public License Version 2, June 1991
8  * (the "License").  You may use, redistribute and/or modify this File in
9  * accordance with the terms and conditions of the License, a copy of which
10  * is available by writing to the Free Software Foundation, Inc.,
11  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
12  * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
13  *
14  * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
16  * ARE EXPRESSLY DISCLAIMED.  The License provides additional details about
17  * this warranty disclaimer.
18  */
19
20 #include "decl.h"
21 #include "ioctl.h"
22 #include "util.h"
23 #include "fw.h"
24 #include "main.h"
25 #include "wmm.h"
26 #include "11n.h"
27 #include "11n_rxreorder.h"
28
29 /*
30  * This function dispatches all packets in the Rx reorder table until the
31  * start window.
32  *
33  * There could be holes in the buffer, which are skipped by the function.
34  * Since the buffer is linear, the function uses rotation to simulate
35  * circular buffer.
36  */
37 static void
38 mwifiex_11n_dispatch_pkt(struct mwifiex_private *priv,
39                          struct mwifiex_rx_reorder_tbl *tbl, int start_win)
40 {
41         int pkt_to_send, i;
42         void *rx_tmp_ptr;
43         unsigned long flags;
44
45         pkt_to_send = (start_win > tbl->start_win) ?
46                       min((start_win - tbl->start_win), tbl->win_size) :
47                       tbl->win_size;
48
49         for (i = 0; i < pkt_to_send; ++i) {
50                 spin_lock_irqsave(&priv->rx_pkt_lock, flags);
51                 rx_tmp_ptr = NULL;
52                 if (tbl->rx_reorder_ptr[i]) {
53                         rx_tmp_ptr = tbl->rx_reorder_ptr[i];
54                         tbl->rx_reorder_ptr[i] = NULL;
55                 }
56                 spin_unlock_irqrestore(&priv->rx_pkt_lock, flags);
57                 if (rx_tmp_ptr)
58                         mwifiex_process_rx_packet(priv->adapter, rx_tmp_ptr);
59         }
60
61         spin_lock_irqsave(&priv->rx_pkt_lock, flags);
62         /*
63          * We don't have a circular buffer, hence use rotation to simulate
64          * circular buffer
65          */
66         for (i = 0; i < tbl->win_size - pkt_to_send; ++i) {
67                 tbl->rx_reorder_ptr[i] = tbl->rx_reorder_ptr[pkt_to_send + i];
68                 tbl->rx_reorder_ptr[pkt_to_send + i] = NULL;
69         }
70
71         tbl->start_win = start_win;
72         spin_unlock_irqrestore(&priv->rx_pkt_lock, flags);
73 }
74
75 /*
76  * This function dispatches all packets in the Rx reorder table until
77  * a hole is found.
78  *
79  * The start window is adjusted automatically when a hole is located.
80  * Since the buffer is linear, the function uses rotation to simulate
81  * circular buffer.
82  */
83 static void
84 mwifiex_11n_scan_and_dispatch(struct mwifiex_private *priv,
85                               struct mwifiex_rx_reorder_tbl *tbl)
86 {
87         int i, j, xchg;
88         void *rx_tmp_ptr;
89         unsigned long flags;
90
91         for (i = 0; i < tbl->win_size; ++i) {
92                 spin_lock_irqsave(&priv->rx_pkt_lock, flags);
93                 if (!tbl->rx_reorder_ptr[i]) {
94                         spin_unlock_irqrestore(&priv->rx_pkt_lock, flags);
95                         break;
96                 }
97                 rx_tmp_ptr = tbl->rx_reorder_ptr[i];
98                 tbl->rx_reorder_ptr[i] = NULL;
99                 spin_unlock_irqrestore(&priv->rx_pkt_lock, flags);
100                 mwifiex_process_rx_packet(priv->adapter, rx_tmp_ptr);
101         }
102
103         spin_lock_irqsave(&priv->rx_pkt_lock, flags);
104         /*
105          * We don't have a circular buffer, hence use rotation to simulate
106          * circular buffer
107          */
108         if (i > 0) {
109                 xchg = tbl->win_size - i;
110                 for (j = 0; j < xchg; ++j) {
111                         tbl->rx_reorder_ptr[j] = tbl->rx_reorder_ptr[i + j];
112                         tbl->rx_reorder_ptr[i + j] = NULL;
113                 }
114         }
115         tbl->start_win = (tbl->start_win + i) & (MAX_TID_VALUE - 1);
116         spin_unlock_irqrestore(&priv->rx_pkt_lock, flags);
117 }
118
119 /*
120  * This function deletes the Rx reorder table and frees the memory.
121  *
122  * The function stops the associated timer and dispatches all the
123  * pending packets in the Rx reorder table before deletion.
124  */
125 static void
126 mwifiex_del_rx_reorder_entry(struct mwifiex_private *priv,
127                              struct mwifiex_rx_reorder_tbl *tbl)
128 {
129         unsigned long flags;
130
131         if (!tbl)
132                 return;
133
134         mwifiex_11n_dispatch_pkt(priv, tbl, (tbl->start_win + tbl->win_size) &
135                                             (MAX_TID_VALUE - 1));
136
137         del_timer(&tbl->timer_context.timer);
138
139         spin_lock_irqsave(&priv->rx_reorder_tbl_lock, flags);
140         list_del(&tbl->list);
141         spin_unlock_irqrestore(&priv->rx_reorder_tbl_lock, flags);
142
143         kfree(tbl->rx_reorder_ptr);
144         kfree(tbl);
145 }
146
147 /*
148  * This function returns the pointer to an entry in Rx reordering
149  * table which matches the given TA/TID pair.
150  */
151 static struct mwifiex_rx_reorder_tbl *
152 mwifiex_11n_get_rx_reorder_tbl(struct mwifiex_private *priv, int tid, u8 *ta)
153 {
154         struct mwifiex_rx_reorder_tbl *tbl;
155         unsigned long flags;
156
157         spin_lock_irqsave(&priv->rx_reorder_tbl_lock, flags);
158         list_for_each_entry(tbl, &priv->rx_reorder_tbl_ptr, list) {
159                 if (!memcmp(tbl->ta, ta, ETH_ALEN) && tbl->tid == tid) {
160                         spin_unlock_irqrestore(&priv->rx_reorder_tbl_lock,
161                                                flags);
162                         return tbl;
163                 }
164         }
165         spin_unlock_irqrestore(&priv->rx_reorder_tbl_lock, flags);
166
167         return NULL;
168 }
169
170 /*
171  * This function finds the last sequence number used in the packets
172  * buffered in Rx reordering table.
173  */
174 static int
175 mwifiex_11n_find_last_seq_num(struct mwifiex_rx_reorder_tbl *rx_reorder_tbl_ptr)
176 {
177         int i;
178
179         for (i = (rx_reorder_tbl_ptr->win_size - 1); i >= 0; --i)
180                 if (rx_reorder_tbl_ptr->rx_reorder_ptr[i])
181                         return i;
182
183         return -1;
184 }
185
186 /*
187  * This function flushes all the packets in Rx reordering table.
188  *
189  * The function checks if any packets are currently buffered in the
190  * table or not. In case there are packets available, it dispatches
191  * them and then dumps the Rx reordering table.
192  */
193 static void
194 mwifiex_flush_data(unsigned long context)
195 {
196         struct reorder_tmr_cnxt *ctx =
197                 (struct reorder_tmr_cnxt *) context;
198         int start_win;
199
200         start_win = mwifiex_11n_find_last_seq_num(ctx->ptr);
201
202         if (start_win < 0)
203                 return;
204
205         dev_dbg(ctx->priv->adapter->dev, "info: flush data %d\n", start_win);
206         mwifiex_11n_dispatch_pkt(ctx->priv, ctx->ptr,
207                                  (ctx->ptr->start_win + start_win + 1) &
208                                  (MAX_TID_VALUE - 1));
209 }
210
211 /*
212  * This function creates an entry in Rx reordering table for the
213  * given TA/TID.
214  *
215  * The function also initializes the entry with sequence number, window
216  * size as well as initializes the timer.
217  *
218  * If the received TA/TID pair is already present, all the packets are
219  * dispatched and the window size is moved until the SSN.
220  */
221 static void
222 mwifiex_11n_create_rx_reorder_tbl(struct mwifiex_private *priv, u8 *ta,
223                                  int tid, int win_size, int seq_num)
224 {
225         int i;
226         struct mwifiex_rx_reorder_tbl *tbl, *new_node;
227         u16 last_seq = 0;
228         unsigned long flags;
229
230         /*
231          * If we get a TID, ta pair which is already present dispatch all the
232          * the packets and move the window size until the ssn
233          */
234         tbl = mwifiex_11n_get_rx_reorder_tbl(priv, tid, ta);
235         if (tbl) {
236                 mwifiex_11n_dispatch_pkt(priv, tbl, seq_num);
237                 return;
238         }
239         /* if !tbl then create one */
240         new_node = kzalloc(sizeof(struct mwifiex_rx_reorder_tbl), GFP_KERNEL);
241         if (!new_node) {
242                 dev_err(priv->adapter->dev, "%s: failed to alloc new_node\n",
243                        __func__);
244                 return;
245         }
246
247         INIT_LIST_HEAD(&new_node->list);
248         new_node->tid = tid;
249         memcpy(new_node->ta, ta, ETH_ALEN);
250         new_node->start_win = seq_num;
251         if (mwifiex_queuing_ra_based(priv))
252                 /* TODO for adhoc */
253                 dev_dbg(priv->adapter->dev,
254                         "info: ADHOC:last_seq=%d start_win=%d\n",
255                         last_seq, new_node->start_win);
256         else
257                 last_seq = priv->rx_seq[tid];
258
259         if (last_seq >= new_node->start_win)
260                 new_node->start_win = last_seq + 1;
261
262         new_node->win_size = win_size;
263
264         new_node->rx_reorder_ptr = kzalloc(sizeof(void *) * win_size,
265                                         GFP_KERNEL);
266         if (!new_node->rx_reorder_ptr) {
267                 kfree((u8 *) new_node);
268                 dev_err(priv->adapter->dev,
269                         "%s: failed to alloc reorder_ptr\n", __func__);
270                 return;
271         }
272
273         new_node->timer_context.ptr = new_node;
274         new_node->timer_context.priv = priv;
275
276         init_timer(&new_node->timer_context.timer);
277         new_node->timer_context.timer.function = mwifiex_flush_data;
278         new_node->timer_context.timer.data =
279                         (unsigned long) &new_node->timer_context;
280
281         for (i = 0; i < win_size; ++i)
282                 new_node->rx_reorder_ptr[i] = NULL;
283
284         spin_lock_irqsave(&priv->rx_reorder_tbl_lock, flags);
285         list_add_tail(&new_node->list, &priv->rx_reorder_tbl_ptr);
286         spin_unlock_irqrestore(&priv->rx_reorder_tbl_lock, flags);
287 }
288
289 /*
290  * This function prepares command for adding a BA request.
291  *
292  * Preparation includes -
293  *      - Setting command ID and proper size
294  *      - Setting add BA request buffer
295  *      - Ensuring correct endian-ness
296  */
297 int mwifiex_cmd_11n_addba_req(struct host_cmd_ds_command *cmd, void *data_buf)
298 {
299         struct host_cmd_ds_11n_addba_req *add_ba_req =
300                 (struct host_cmd_ds_11n_addba_req *)
301                 &cmd->params.add_ba_req;
302
303         cmd->command = cpu_to_le16(HostCmd_CMD_11N_ADDBA_REQ);
304         cmd->size = cpu_to_le16(sizeof(*add_ba_req) + S_DS_GEN);
305         memcpy(add_ba_req, data_buf, sizeof(*add_ba_req));
306
307         return 0;
308 }
309
310 /*
311  * This function prepares command for adding a BA response.
312  *
313  * Preparation includes -
314  *      - Setting command ID and proper size
315  *      - Setting add BA response buffer
316  *      - Ensuring correct endian-ness
317  */
318 int mwifiex_cmd_11n_addba_rsp_gen(struct mwifiex_private *priv,
319                                   struct host_cmd_ds_command *cmd,
320                                   struct host_cmd_ds_11n_addba_req
321                                   *cmd_addba_req)
322 {
323         struct host_cmd_ds_11n_addba_rsp *add_ba_rsp =
324                 (struct host_cmd_ds_11n_addba_rsp *)
325                 &cmd->params.add_ba_rsp;
326         u8 tid;
327         int win_size;
328         uint16_t block_ack_param_set;
329
330         cmd->command = cpu_to_le16(HostCmd_CMD_11N_ADDBA_RSP);
331         cmd->size = cpu_to_le16(sizeof(*add_ba_rsp) + S_DS_GEN);
332
333         memcpy(add_ba_rsp->peer_mac_addr, cmd_addba_req->peer_mac_addr,
334                ETH_ALEN);
335         add_ba_rsp->dialog_token = cmd_addba_req->dialog_token;
336         add_ba_rsp->block_ack_tmo = cmd_addba_req->block_ack_tmo;
337         add_ba_rsp->ssn = cmd_addba_req->ssn;
338
339         block_ack_param_set = le16_to_cpu(cmd_addba_req->block_ack_param_set);
340         tid = (block_ack_param_set & IEEE80211_ADDBA_PARAM_TID_MASK)
341                 >> BLOCKACKPARAM_TID_POS;
342         add_ba_rsp->status_code = cpu_to_le16(ADDBA_RSP_STATUS_ACCEPT);
343         block_ack_param_set &= ~IEEE80211_ADDBA_PARAM_BUF_SIZE_MASK;
344         /* We donot support AMSDU inside AMPDU, hence reset the bit */
345         block_ack_param_set &= ~BLOCKACKPARAM_AMSDU_SUPP_MASK;
346         block_ack_param_set |= (priv->add_ba_param.rx_win_size <<
347                                              BLOCKACKPARAM_WINSIZE_POS);
348         add_ba_rsp->block_ack_param_set = cpu_to_le16(block_ack_param_set);
349         win_size = (le16_to_cpu(add_ba_rsp->block_ack_param_set)
350                                         & IEEE80211_ADDBA_PARAM_BUF_SIZE_MASK)
351                                         >> BLOCKACKPARAM_WINSIZE_POS;
352         cmd_addba_req->block_ack_param_set = cpu_to_le16(block_ack_param_set);
353
354         mwifiex_11n_create_rx_reorder_tbl(priv, cmd_addba_req->peer_mac_addr,
355                             tid, win_size, le16_to_cpu(cmd_addba_req->ssn));
356         return 0;
357 }
358
359 /*
360  * This function prepares command for deleting a BA request.
361  *
362  * Preparation includes -
363  *      - Setting command ID and proper size
364  *      - Setting del BA request buffer
365  *      - Ensuring correct endian-ness
366  */
367 int mwifiex_cmd_11n_delba(struct host_cmd_ds_command *cmd, void *data_buf)
368 {
369         struct host_cmd_ds_11n_delba *del_ba = (struct host_cmd_ds_11n_delba *)
370                 &cmd->params.del_ba;
371
372         cmd->command = cpu_to_le16(HostCmd_CMD_11N_DELBA);
373         cmd->size = cpu_to_le16(sizeof(*del_ba) + S_DS_GEN);
374         memcpy(del_ba, data_buf, sizeof(*del_ba));
375
376         return 0;
377 }
378
379 /*
380  * This function identifies if Rx reordering is needed for a received packet.
381  *
382  * In case reordering is required, the function will do the reordering
383  * before sending it to kernel.
384  *
385  * The Rx reorder table is checked first with the received TID/TA pair. If
386  * not found, the received packet is dispatched immediately. But if found,
387  * the packet is reordered and all the packets in the updated Rx reordering
388  * table is dispatched until a hole is found.
389  *
390  * For sequence number less than the starting window, the packet is dropped.
391  */
392 int mwifiex_11n_rx_reorder_pkt(struct mwifiex_private *priv,
393                                 u16 seq_num, u16 tid,
394                                 u8 *ta, u8 pkt_type, void *payload)
395 {
396         struct mwifiex_rx_reorder_tbl *tbl;
397         int start_win, end_win, win_size;
398         u16 pkt_index;
399
400         tbl = mwifiex_11n_get_rx_reorder_tbl((struct mwifiex_private *) priv,
401                                              tid, ta);
402         if (!tbl) {
403                 if (pkt_type != PKT_TYPE_BAR)
404                         mwifiex_process_rx_packet(priv->adapter, payload);
405                 return 0;
406         }
407         start_win = tbl->start_win;
408         win_size = tbl->win_size;
409         end_win = ((start_win + win_size) - 1) & (MAX_TID_VALUE - 1);
410         del_timer(&tbl->timer_context.timer);
411         mod_timer(&tbl->timer_context.timer,
412                   jiffies + (MIN_FLUSH_TIMER_MS * win_size * HZ) / 1000);
413
414         /*
415          * If seq_num is less then starting win then ignore and drop the
416          * packet
417          */
418         if ((start_win + TWOPOW11) > (MAX_TID_VALUE - 1)) {/* Wrap */
419                 if (seq_num >= ((start_win + (TWOPOW11)) & (MAX_TID_VALUE - 1))
420                                 && (seq_num < start_win))
421                         return -1;
422         } else if ((seq_num < start_win)
423                         || (seq_num > (start_win + (TWOPOW11)))) {
424                 return -1;
425         }
426
427         /*
428          * If this packet is a BAR we adjust seq_num as
429          * WinStart = seq_num
430          */
431         if (pkt_type == PKT_TYPE_BAR)
432                 seq_num = ((seq_num + win_size) - 1) & (MAX_TID_VALUE - 1);
433
434         if (((end_win < start_win)
435              && (seq_num < (TWOPOW11 - (MAX_TID_VALUE - start_win)))
436              && (seq_num > end_win)) || ((end_win > start_win)
437              && ((seq_num > end_win) || (seq_num < start_win)))) {
438                 end_win = seq_num;
439                 if (((seq_num - win_size) + 1) >= 0)
440                         start_win = (end_win - win_size) + 1;
441                 else
442                         start_win = (MAX_TID_VALUE - (win_size - seq_num)) + 1;
443                 mwifiex_11n_dispatch_pkt(priv, tbl, start_win);
444         }
445
446         if (pkt_type != PKT_TYPE_BAR) {
447                 if (seq_num >= start_win)
448                         pkt_index = seq_num - start_win;
449                 else
450                         pkt_index = (seq_num+MAX_TID_VALUE) - start_win;
451
452                 if (tbl->rx_reorder_ptr[pkt_index])
453                         return -1;
454
455                 tbl->rx_reorder_ptr[pkt_index] = payload;
456         }
457
458         /*
459          * Dispatch all packets sequentially from start_win until a
460          * hole is found and adjust the start_win appropriately
461          */
462         mwifiex_11n_scan_and_dispatch(priv, tbl);
463
464         return 0;
465 }
466
467 /*
468  * This function deletes an entry for a given TID/TA pair.
469  *
470  * The TID/TA are taken from del BA event body.
471  */
472 void
473 mwifiex_del_ba_tbl(struct mwifiex_private *priv, int tid, u8 *peer_mac,
474                    u8 type, int initiator)
475 {
476         struct mwifiex_rx_reorder_tbl *tbl;
477         struct mwifiex_tx_ba_stream_tbl *ptx_tbl;
478         u8 cleanup_rx_reorder_tbl;
479         unsigned long flags;
480
481         if (type == TYPE_DELBA_RECEIVE)
482                 cleanup_rx_reorder_tbl = (initiator) ? true : false;
483         else
484                 cleanup_rx_reorder_tbl = (initiator) ? false : true;
485
486         dev_dbg(priv->adapter->dev, "event: DELBA: %pM tid=%d, "
487                "initiator=%d\n", peer_mac, tid, initiator);
488
489         if (cleanup_rx_reorder_tbl) {
490                 tbl = mwifiex_11n_get_rx_reorder_tbl(priv, tid,
491                                                                  peer_mac);
492                 if (!tbl) {
493                         dev_dbg(priv->adapter->dev,
494                                         "event: TID, TA not found in table\n");
495                         return;
496                 }
497                 mwifiex_del_rx_reorder_entry(priv, tbl);
498         } else {
499                 ptx_tbl = mwifiex_get_ba_tbl(priv, tid, peer_mac);
500                 if (!ptx_tbl) {
501                         dev_dbg(priv->adapter->dev,
502                                         "event: TID, RA not found in table\n");
503                         return;
504                 }
505
506                 spin_lock_irqsave(&priv->tx_ba_stream_tbl_lock, flags);
507                 mwifiex_11n_delete_tx_ba_stream_tbl_entry(priv, ptx_tbl);
508                 spin_unlock_irqrestore(&priv->tx_ba_stream_tbl_lock, flags);
509         }
510 }
511
512 /*
513  * This function handles the command response of an add BA response.
514  *
515  * Handling includes changing the header fields into CPU format and
516  * creating the stream, provided the add BA is accepted.
517  */
518 int mwifiex_ret_11n_addba_resp(struct mwifiex_private *priv,
519                                struct host_cmd_ds_command *resp)
520 {
521         struct host_cmd_ds_11n_addba_rsp *add_ba_rsp =
522                 (struct host_cmd_ds_11n_addba_rsp *)
523                 &resp->params.add_ba_rsp;
524         int tid, win_size;
525         struct mwifiex_rx_reorder_tbl *tbl;
526         uint16_t block_ack_param_set;
527
528         block_ack_param_set = le16_to_cpu(add_ba_rsp->block_ack_param_set);
529
530         tid = (block_ack_param_set & IEEE80211_ADDBA_PARAM_TID_MASK)
531                 >> BLOCKACKPARAM_TID_POS;
532         /*
533          * Check if we had rejected the ADDBA, if yes then do not create
534          * the stream
535          */
536         if (le16_to_cpu(add_ba_rsp->status_code) == BA_RESULT_SUCCESS) {
537                 win_size = (block_ack_param_set &
538                         IEEE80211_ADDBA_PARAM_BUF_SIZE_MASK)
539                         >> BLOCKACKPARAM_WINSIZE_POS;
540
541                 dev_dbg(priv->adapter->dev, "cmd: ADDBA RSP: %pM"
542                        " tid=%d ssn=%d win_size=%d\n",
543                        add_ba_rsp->peer_mac_addr,
544                        tid, add_ba_rsp->ssn, win_size);
545         } else {
546                 dev_err(priv->adapter->dev, "ADDBA RSP: failed %pM tid=%d)\n",
547                                 add_ba_rsp->peer_mac_addr, tid);
548
549                 tbl = mwifiex_11n_get_rx_reorder_tbl(priv, tid,
550                                                      add_ba_rsp->peer_mac_addr);
551                 if (tbl)
552                         mwifiex_del_rx_reorder_entry(priv, tbl);
553         }
554
555         return 0;
556 }
557
558 /*
559  * This function handles BA stream timeout event by preparing and sending
560  * a command to the firmware.
561  */
562 void mwifiex_11n_ba_stream_timeout(struct mwifiex_private *priv,
563                                    struct host_cmd_ds_11n_batimeout *event)
564 {
565         struct host_cmd_ds_11n_delba delba;
566
567         memset(&delba, 0, sizeof(struct host_cmd_ds_11n_delba));
568         memcpy(delba.peer_mac_addr, event->peer_mac_addr, ETH_ALEN);
569
570         delba.del_ba_param_set |=
571                 cpu_to_le16((u16) event->tid << DELBA_TID_POS);
572         delba.del_ba_param_set |= cpu_to_le16(
573                 (u16) event->origninator << DELBA_INITIATOR_POS);
574         delba.reason_code = cpu_to_le16(WLAN_REASON_QSTA_TIMEOUT);
575         mwifiex_send_cmd_async(priv, HostCmd_CMD_11N_DELBA, 0, 0, &delba);
576 }
577
578 /*
579  * This function cleans up the Rx reorder table by deleting all the entries
580  * and re-initializing.
581  */
582 void mwifiex_11n_cleanup_reorder_tbl(struct mwifiex_private *priv)
583 {
584         struct mwifiex_rx_reorder_tbl *del_tbl_ptr, *tmp_node;
585         unsigned long flags;
586
587         spin_lock_irqsave(&priv->rx_reorder_tbl_lock, flags);
588         list_for_each_entry_safe(del_tbl_ptr, tmp_node,
589                                  &priv->rx_reorder_tbl_ptr, list) {
590                 spin_unlock_irqrestore(&priv->rx_reorder_tbl_lock, flags);
591                 mwifiex_del_rx_reorder_entry(priv, del_tbl_ptr);
592                 spin_lock_irqsave(&priv->rx_reorder_tbl_lock, flags);
593         }
594         spin_unlock_irqrestore(&priv->rx_reorder_tbl_lock, flags);
595
596         INIT_LIST_HEAD(&priv->rx_reorder_tbl_ptr);
597         memset(priv->rx_seq, 0, sizeof(priv->rx_seq));
598 }