[kvalo-ath:ath11k-testmode] BUILD SUCCESS WITH WARNING ba2a7d5c57ba0703f64cf849c0299ac23eb1c1f5

2023-09-14 Thread kernel test robot
gcc arc allnoconfig gcc arc allyesconfig gcc arc defconfig gcc arc randconfig-001-20230914 gcc arc randconfig-001-20230915 gcc arm al

Re: [linux-next:master] BUILD REGRESSION 98897dc735cf6635f0966f76eb0108354168fb15

2023-09-14 Thread Kalle Valo
(only to ath10k list) kernel test robot writes: > tree/branch: > https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git > master > branch HEAD: 98897dc735cf6635f0966f76eb0108354168fb15 Add linux-next > specific files for 20230914 > > Error/Warni

Re: [PATCH] wifi: ath10k: drop HTT_DATA_TX_STATUS_DOWNLOAD_FAIL

2023-09-14 Thread Jeff Johnson
On 9/14/2023 9:07 AM, Dmitry Antipov wrote: According to Jeff, 'HTT_DATA_TX_STATUS_DOWNLOAD_FAIL' from 'enum htt_data_tx_status' is never actually used by the firmware code and so may be dropped, with the related adjustment to 'ath10k_htt_rx_tx_compl_ind()'. Suggested-by: Jeff Johnson Signed-of

[PATCH] wifi: ath10k: drop HTT_DATA_TX_STATUS_DOWNLOAD_FAIL

2023-09-14 Thread Dmitry Antipov
According to Jeff, 'HTT_DATA_TX_STATUS_DOWNLOAD_FAIL' from 'enum htt_data_tx_status' is never actually used by the firmware code and so may be dropped, with the related adjustment to 'ath10k_htt_rx_tx_compl_ind()'. Suggested-by: Jeff Johnson Signed-off-by: Dmitry Antipov Found by Linux Verifica

Re: On status handling in ath10k_htt_rx_tx_compl_ind()

2023-09-14 Thread Jeff Johnson
On 9/13/2023 10:15 PM, Dmitry Antipov wrote: In 'ath10k_htt_rx_tx_compl_ind()', int status = MS(resp->data_tx_completion.flags, HTT_DATA_TX_STATUS); actually is int status = (((resp->data_tx_completion.flags) & 0x07) >> 0); which can't be equal to HTT_DATA_TX_STATUS_DOWNLOAD_FAIL (128) regard

Re: [PATCH wireless-next 6/9] wifi: ath10k: Remove unnecessary (void*) conversions

2023-09-14 Thread Jeff Johnson
On 9/13/2023 9:05 PM, Wu Yunchuan wrote: No need cast (void*) to (struct htt_rx_ring_setup_ring32 *), (struct htt_rx_ring_setup_ring64 *), (struct ath_softc *) or (struct ath_hw *). Signed-off-by: Wu Yunchuan --- drivers/net/wireless/ath/ath10k/htt_tx.c | 6 ++ drivers/net/wireless/ath/a