Home
last modified time | relevance | path

Searched refs:rx_reorder_tbl_ptr (Results 1 – 6 of 6) sorted by relevance

/linux/drivers/net/wireless/marvell/mwifiex/
H A D11n.c672 list_for_each_entry(rx_reor_tbl_ptr, &priv->rx_reorder_tbl_ptr, list) { in mwifiex_11n_delba()
709 struct mwifiex_rx_reorder_tbl *rx_reorder_tbl_ptr; in mwifiex_get_rx_reorder_tbl() local
713 list_for_each_entry(rx_reorder_tbl_ptr, &priv->rx_reorder_tbl_ptr, in mwifiex_get_rx_reorder_tbl()
715 rx_reo_tbl->tid = (u16) rx_reorder_tbl_ptr->tid; in mwifiex_get_rx_reorder_tbl()
716 memcpy(rx_reo_tbl->ta, rx_reorder_tbl_ptr->ta, ETH_ALEN); in mwifiex_get_rx_reorder_tbl()
717 rx_reo_tbl->start_win = rx_reorder_tbl_ptr->start_win; in mwifiex_get_rx_reorder_tbl()
718 rx_reo_tbl->win_size = rx_reorder_tbl_ptr->win_size; in mwifiex_get_rx_reorder_tbl()
719 for (i = 0; i < rx_reorder_tbl_ptr->win_size; ++i) { in mwifiex_get_rx_reorder_tbl()
720 if (rx_reorder_tbl_ptr->rx_reorder_ptr[i]) in mwifiex_get_rx_reorder_tbl()
H A D11n_rxreorder.c235 list_for_each_entry(tbl, &priv->rx_reorder_tbl_ptr, list) { in mwifiex_11n_get_rx_reorder_tbl()
257 list_for_each_entry_safe(tbl, tmp, &priv->rx_reorder_tbl_ptr, list) { in mwifiex_11n_del_rx_reorder_tbl_by_ta()
276 struct mwifiex_rx_reorder_tbl *rx_reorder_tbl_ptr = ctx->ptr; in mwifiex_11n_find_last_seq_num() local
281 for (i = rx_reorder_tbl_ptr->win_size - 1; i >= 0; --i) { in mwifiex_11n_find_last_seq_num()
282 if (rx_reorder_tbl_ptr->rx_reorder_ptr[i]) { in mwifiex_11n_find_last_seq_num()
405 list_add_tail(&new_node->list, &priv->rx_reorder_tbl_ptr); in mwifiex_11n_create_rx_reorder_tbl()
791 &priv->rx_reorder_tbl_ptr, list) { in mwifiex_11n_cleanup_reorder_tbl()
796 INIT_LIST_HEAD(&priv->rx_reorder_tbl_ptr); in mwifiex_11n_cleanup_reorder_tbl()
815 list_for_each_entry(tbl, &priv->rx_reorder_tbl_ptr, list) in mwifiex_update_rxreor_flags()
/linux/drivers/net/wireless/nxp/nxpwifi/
H A D11n.c602 list_for_each_entry_rcu(rx_reor_tbl_ptr, &priv->rx_reorder_tbl_ptr[tid], list) { in nxpwifi_11n_delba()
638 struct nxpwifi_rx_reorder_tbl *rx_reorder_tbl_ptr; in nxpwifi_get_rx_reorder_tbl() local
643 list_for_each_entry_rcu(rx_reorder_tbl_ptr, in nxpwifi_get_rx_reorder_tbl()
644 &priv->rx_reorder_tbl_ptr[j], in nxpwifi_get_rx_reorder_tbl()
646 rx_reo_tbl->tid = (u16)rx_reorder_tbl_ptr->tid; in nxpwifi_get_rx_reorder_tbl()
647 memcpy(rx_reo_tbl->ta, rx_reorder_tbl_ptr->ta, ETH_ALEN); in nxpwifi_get_rx_reorder_tbl()
648 rx_reo_tbl->start_win = rx_reorder_tbl_ptr->start_win; in nxpwifi_get_rx_reorder_tbl()
649 rx_reo_tbl->win_size = rx_reorder_tbl_ptr->win_size; in nxpwifi_get_rx_reorder_tbl()
650 for (i = 0; i < rx_reorder_tbl_ptr->win_size; ++i) { in nxpwifi_get_rx_reorder_tbl()
651 if (rx_reorder_tbl_ptr->rx_reorder_ptr[i]) in nxpwifi_get_rx_reorder_tbl()
H A D11n_rxreorder.c187 list_for_each_entry_rcu(tbl, &priv->rx_reorder_tbl_ptr[tid], list) { in nxpwifi_11n_get_rx_reorder_tbl()
209 list_for_each_entry_rcu(tbl, &priv->rx_reorder_tbl_ptr[i], list) { in nxpwifi_11n_del_rx_reorder_tbl_by_ta()
227 struct nxpwifi_rx_reorder_tbl *rx_reorder_tbl_ptr = ctx->ptr; in nxpwifi_11n_find_last_seq_num() local
231 for (i = rx_reorder_tbl_ptr->win_size - 1; i >= 0; --i) { in nxpwifi_11n_find_last_seq_num()
232 if (rx_reorder_tbl_ptr->rx_reorder_ptr[i]) in nxpwifi_11n_find_last_seq_num()
324 list_add_tail_rcu(&new_node->list, &priv->rx_reorder_tbl_ptr[tid]); in nxpwifi_11n_create_rx_reorder_tbl()
634 list_splice_init(&priv->rx_reorder_tbl_ptr[i], &to_delete_list); in nxpwifi_11n_cleanup_reorder_tbl()
658 list_for_each_entry_rcu(tbl, &priv->rx_reorder_tbl_ptr[j], list) in nxpwifi_update_rxreor_flags()
H A Dinit.c321 list_del(&priv->rx_reorder_tbl_ptr[j]); in nxpwifi_invalidate_lists()
399 INIT_LIST_HEAD(&priv->rx_reorder_tbl_ptr[j]); in nxpwifi_init_lock_list()
H A Dmain.h548 struct list_head rx_reorder_tbl_ptr[MAX_NUM_TID]; member