[kvalo-ath:pending] BUILD SUCCESS ddd71f306b9f6fd663cf260be6534651d13bc504

2023-09-20 Thread kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git pending branch HEAD: ddd71f306b9f6fd663cf260be6534651d13bc504 wifi: ath11k: drop NULL pointer check in ath11k_update_per_peer_tx_stats() elapsed time: 741m configs tested: 130 configs skipped: 2 The following configs

[kvalo-ath:ath-qca] BUILD SUCCESS 7d0675450235eb3d930483ca565d56aaad751edd

2023-09-20 Thread kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git ath-qca branch HEAD: 7d0675450235eb3d930483ca565d56aaad751edd Merge branch 'ath-next' into ath-qca elapsed time: 722m configs tested: 136 configs skipped: 2 The following configs have been built successfully. More

[kvalo-ath:master] BUILD SUCCESS 928e3d18bf568970b23d53c9c7ae8d56952352ff

2023-09-20 Thread kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git master branch HEAD: 928e3d18bf568970b23d53c9c7ae8d56952352ff Revert "PCI: Release resource invalidated by coalescing" elapsed time: 722m configs tested: 135 configs skipped: 2 The following configs have been built

[kvalo-ath:ath-next] BUILD SUCCESS cb4c132ebfeac5962f7258ffc831caa0c4dada1a

2023-09-20 Thread kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git ath-next branch HEAD: cb4c132ebfeac5962f7258ffc831caa0c4dada1a wifi: ath10k: fix clang-specific fortify warning elapsed time: 722m configs tested: 135 configs skipped: 2 The following configs have been built

Re: [PATCH 5/5] ath10k: reduce invalid ht params rate message noise

2023-09-20 Thread Jeff Johnson
(just a resend with Wen's current e-mail address, no further comments) On 9/20/2023 11:27 AM, James Prestwood wrote: On 2/26/21 10:01 AM, Shuah Khan wrote: On 2/11/21 4:24 AM, Kalle Valo wrote: Shuah Khan writes: On 2/10/21 1:28 AM, Kalle Valo wrote: Wen Gong writes: On 2021-02-10

Re: [PATCH] [v2] wifi: ath10k: consistently use kstrtoX_from_user() functions

2023-09-20 Thread Jeff Johnson
On 9/20/2023 8:39 AM, Dmitry Antipov wrote: Use 'kstrtoul_from_user()', 'kstrtobool_from_user()' and 'kstrtoint_from_user()' where appropriate and thus avoid some code duplication. Signed-off-by: Dmitry Antipov ... + ssize_t ret; curious why you changed this, especially given that

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

2023-09-20 Thread Jeff Johnson
On 9/18/2023 9:50 PM, Wu Yunchuan wrote: No need cast (void*) to (struct htt_rx_ring_setup_ring32 *), (struct htt_rx_ring_setup_ring64 *). Change the prototype to remove the local variable. Signed-off-by: Wu Yunchuan Suggested-by: Jeff Johnson Ideally your Signed-off-by: should be the last

Re: [PATCH 5/5] ath10k: reduce invalid ht params rate message noise

2023-09-20 Thread James Prestwood
On 2/26/21 10:01 AM, Shuah Khan wrote: On 2/11/21 4:24 AM, Kalle Valo wrote: Shuah Khan writes: On 2/10/21 1:28 AM, Kalle Valo wrote: Wen Gong writes: On 2021-02-10 08:42, Shuah Khan wrote: ath10k_mac_get_rate_flags_ht() floods dmesg with the following messages, when it fails to find a

[PATCH] [v2] wifi: ath10k: consistently use kstrtoX_from_user() functions

2023-09-20 Thread Dmitry Antipov
Use 'kstrtoul_from_user()', 'kstrtobool_from_user()' and 'kstrtoint_from_user()' where appropriate and thus avoid some code duplication. Signed-off-by: Dmitry Antipov --- v2: fix ath10k_warn() format specifier (kernel test robot) --- drivers/net/wireless/ath/ath10k/debug.c| 47

Re: [PATCH] wifi: ath10k: consistently use kstrtoX_from_user() functions

2023-09-20 Thread kernel test robot
Hi Dmitry, kernel test robot noticed the following build warnings: [auto build test WARNING on kvalo-ath/ath-next] [also build test WARNING on wireless-next/main wireless/main linus/master v6.6-rc2 next-20230920] [If your patch is applied to the wrong git tree, kindly drop us a note. And when

Re: [PATCH] wifi: ath10k: fix clang-specific fortify warning

2023-09-20 Thread Kalle Valo
Dmitry Antipov wrote: > When compiling with clang 16.0.6 and CONFIG_FORTIFY_SOURCE=y, I've > noticed the following (somewhat confusing due to absence of an actual > source code location): > > In file included from drivers/net/wireless/ath/ath10k/debug.c:8: > In file included from

Re: [PATCH 1/6] [v3] wifi: ath10k: cleanup CE ring initialization

2023-09-20 Thread Kalle Valo
Dmitry Antipov writes: > Commit 25d0dbcbd5c7 ("ath10k: split ce initialization and allocation") > changes 'ath10k_ce_init_src_ring()' and 'ath10k_ce_init_dest_ring()' > so these functions can't return -ENOMEM but always returns 0. This way > both of them may be converted to 'void', and

[PATCH] wifi: ath10k: consistently use kstrtoX_from_user() functions

2023-09-20 Thread Dmitry Antipov
Use 'kstrtoul_from_user()', 'kstrtobool_from_user()' and 'kstrtoint_from_user()' where appropriate and thus avoid some code duplication. Signed-off-by: Dmitry Antipov --- Hopefully this doesn't violate "if it isn't broke, don't fix it" rule (the same thing was recently accepted for ath9k). ---