[kvalo-ath:master-pending] BUILD SUCCESS c1ec235b8e81f283e1c0aa2824dcb43c4c628d56

2023-10-27 Thread kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git master-pending branch HEAD: c1ec235b8e81f283e1c0aa2824dcb43c4c628d56 Merge branch 'pending' into master-pending elapsed time: 2891m configs tested: 131 configs skipped: 2 The following configs have been built

[kvalo-ath:pending] BUILD SUCCESS 3ca28692ed8a911f6fcd8151ca706ac5d38077d4

2023-10-27 Thread kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git pending branch HEAD: 3ca28692ed8a911f6fcd8151ca706ac5d38077d4 wifi: ath10k: replace deprecated strncpy with memcpy elapsed time: 2890m configs tested: 128 configs skipped: 2 The following configs have been built

[kvalo-ath:master] BUILD SUCCESS f473b4a72b7cccfc1d0110b55dce1edaa5bbce9e

2023-10-27 Thread kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git master branch HEAD: f473b4a72b7cccfc1d0110b55dce1edaa5bbce9e Add localversion-wireless-testing-ath elapsed time: 2902m configs tested: 123 configs skipped: 2 The following configs have been built successfully. More

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

2023-10-27 Thread kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git ath-next branch HEAD: f59065401602f06dc5c5364284f3be30d52002ae Revert "wifi: ath11k: call ath11k_mac_fils_discovery() without condition" elapsed time: 2917m configs tested: 150 configs skipped: 2 The following configs

Re: [PATCH] wifi: ath10k: prefer stack-allocated __le32 variables

2023-10-27 Thread Johannes Berg
On Fri, 2023-10-27 at 12:50 +0300, Dmitry Antipov wrote: > Locals can't be used for scatterlists/DMA/etc., right? Well, a scatterlist by itself doesn't imply anything necessarily, it's just a data structure. But yes, you cannot do DMA from the stack, which seems to happen in this case, or at

Re: [PATCH] wifi: ath10k: prefer stack-allocated __le32 variables

2023-10-27 Thread Dmitry Antipov
On 10/27/23 12:08, Johannes Berg wrote: Actually, there is. Consider what's done with it. It seems I should say sorry for being overconfident with this :-(. Locals can't be used for scatterlists/DMA/etc., right? Dmitry ___ ath10k mailing list

Re: [PATCH] wifi: ath10k: prefer stack-allocated __le32 variables

2023-10-27 Thread Johannes Berg
On Fri, 2023-10-27 at 11:23 +0300, Dmitry Antipov wrote: > There isn't too much sense to 'kzalloc()' buffer Actually, there is. Consider what's done with it. johannes ___ ath10k mailing list ath10k@lists.infradead.org

[PATCH] wifi: ath10k: prefer stack-allocated __le32 variables

2023-10-27 Thread Dmitry Antipov
There isn't too much sense to 'kzalloc()' buffer for the only __le32 value which is going to be freed in the same function, so switch to stack-allocated one in 'ath10k_sdio_writesb32()' and 'ath10k_sdio_diag_read32()'. Compile tested only. Signed-off-by: Dmitry Antipov ---