]> www.infradead.org Git - users/griffoul/linux.git/commitdiff
wifi: iwlwifi: fix byte count table for old devices
authorJohannes Berg <johannes.berg@intel.com>
Thu, 28 Aug 2025 06:55:30 +0000 (09:55 +0300)
committerMiri Korenblit <miriam.rachel.korenblit@intel.com>
Thu, 28 Aug 2025 11:52:11 +0000 (14:52 +0300)
For devices handled by iwldvm, bc_table_dword was never set, but I missed
that during the removal thereof. Change the logic to not treat the byte
count table as dwords for devices older than 9000 series to fix that.

Fixes: 6570ea227826 ("wifi: iwlwifi: remove bc_table_dword transport config")
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Reviewed-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
Link: https://patch.msgid.link/20250828095500.eccd7d3939f1.Ibaffa06d0b3aa5f35a9451d94af34de208b8a2bc@changeid
drivers/net/wireless/intel/iwlwifi/pcie/gen1_2/tx.c

index 84a05cc1c27a686100434100e8ceeff51e94ac79..d912e709a92cbf44cdd809e61f4d964220519f98 100644 (file)
@@ -2092,7 +2092,8 @@ static void iwl_txq_gen1_update_byte_cnt_tbl(struct iwl_trans *trans,
                break;
        }
 
-       if (trans->mac_cfg->device_family < IWL_DEVICE_FAMILY_AX210)
+       if (trans->mac_cfg->device_family >= IWL_DEVICE_FAMILY_9000 &&
+           trans->mac_cfg->device_family < IWL_DEVICE_FAMILY_AX210)
                len = DIV_ROUND_UP(len, 4);
 
        if (WARN_ON(len > 0xFFF || write_ptr >= TFD_QUEUE_SIZE_MAX))