Skip to content

Commit 6b2dbce

Browse files
egrumbachjmberg-intel
authored andcommitted
iwlwifi: mvm: prepare the ground for more RSS notifications
We will need a new type of synchronization message going through all the RSS queues. Prepare the ground for this. Signed-off-by: Emmanuel Grumbach <[email protected]> Signed-off-by: Luca Coelho <[email protected]> Signed-off-by: Johannes Berg <[email protected]>
1 parent 39bd984 commit 6b2dbce

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

drivers/net/wireless/intel/iwlwifi/mvm/sta.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2427,7 +2427,7 @@ int iwl_mvm_rm_mcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
24272427

24282428
static void iwl_mvm_sync_rxq_del_ba(struct iwl_mvm *mvm, u8 baid)
24292429
{
2430-
struct iwl_mvm_delba_notif notif = {
2430+
struct iwl_mvm_rss_sync_notif notif = {
24312431
.metadata.type = IWL_MVM_RXQ_NOTIF_DEL_BA,
24322432
.metadata.sync = 1,
24332433
.delba.baid = baid,

drivers/net/wireless/intel/iwlwifi/mvm/sta.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -343,9 +343,11 @@ struct iwl_mvm_delba_data {
343343
u32 baid;
344344
} __packed;
345345

346-
struct iwl_mvm_delba_notif {
346+
struct iwl_mvm_rss_sync_notif {
347347
struct iwl_mvm_internal_rxq_notif metadata;
348-
struct iwl_mvm_delba_data delba;
348+
union {
349+
struct iwl_mvm_delba_data delba;
350+
};
349351
} __packed;
350352

351353
/**

0 commit comments

Comments
 (0)