From: kernel test robot <lkp@intel.com>
To: Maharaja Kennadyrajan <mkenna@codeaurora.org>,
linux-wireless@vger.kernel.org, ath11k@lists.infradead.org
Cc: clang-built-linux@googlegroups.com, kbuild-all@lists.01.org
Subject: Re: [PATCH] ath11k: Fix the rx_filter flag setting for peer rssi stats
Date: Mon, 9 Nov 2020 21:27:00 +0800 [thread overview]
Message-ID: <202011092157.LNFDaUGo-lkp@intel.com> (raw)
In-Reply-To: <1604408857-5912-1-git-send-email-mkenna@codeaurora.org>
[-- Attachment #1: Type: text/plain, Size: 3282 bytes --]
Hi Maharaja,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on ath6kl/ath-next]
[also build test ERROR on v5.10-rc3 next-20201109]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Maharaja-Kennadyrajan/ath11k-Fix-the-rx_filter-flag-setting-for-peer-rssi-stats/20201103-210925
base: https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git ath-next
config: x86_64-randconfig-a012-20201109 (attached as .config)
compiler: clang version 12.0.0 (https://github.com/llvm/llvm-project 09ec07827b1128504457a93dee80b2ceee1af600)
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# install x86_64 cross compiling tool for clang build
# apt-get install binutils-x86-64-linux-gnu
# https://github.com/0day-ci/linux/commit/347baa920fe13a6fe6e943f51066d0cff45981ce
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Maharaja-Kennadyrajan/ath11k-Fix-the-rx_filter-flag-setting-for-peer-rssi-stats/20201103-210925
git checkout 347baa920fe13a6fe6e943f51066d0cff45981ce
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
>> drivers/net/wireless/ath/ath11k/mac.c:4097:7: error: implicit declaration of function 'ath11k_debug_rx_filter' [-Werror,-Wimplicit-function-declaration]
if (ath11k_debug_rx_filter(ar))
^
drivers/net/wireless/ath/ath11k/mac.c:4097:7: note: did you mean 'ath11k_debugfs_rx_filter'?
drivers/net/wireless/ath/ath11k/debugfs.h:210:19: note: 'ath11k_debugfs_rx_filter' declared here
static inline int ath11k_debugfs_rx_filter(struct ath11k *ar)
^
1 error generated.
vim +/ath11k_debug_rx_filter +4097 drivers/net/wireless/ath/ath11k/mac.c
4087
4088 static int ath11k_mac_config_mon_status_default(struct ath11k *ar, bool enable)
4089 {
4090 struct htt_rx_ring_tlv_filter tlv_filter = {0};
4091 struct ath11k_base *ab = ar->ab;
4092 int i, ret = 0;
4093 u32 ring_id;
4094
4095 if (enable) {
4096 tlv_filter = ath11k_mac_mon_status_filter_default;
> 4097 if (ath11k_debug_rx_filter(ar))
4098 tlv_filter.rx_filter = ath11k_debug_rx_filter(ar);
4099 }
4100
4101 for (i = 0; i < ab->hw_params.num_rxmda_per_pdev; i++) {
4102 ring_id = ar->dp.rx_mon_status_refill_ring[i].refill_buf_ring.ring_id;
4103 ret = ath11k_dp_tx_htt_rx_filter_setup(ar->ab, ring_id,
4104 ar->dp.mac_id + i,
4105 HAL_RXDMA_MONITOR_STATUS,
4106 DP_RX_BUFFER_SIZE,
4107 &tlv_filter);
4108 }
4109
4110 return ret;
4111 }
4112
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 37608 bytes --]
[-- Attachment #3: Type: text/plain, Size: 102 bytes --]
--
ath11k mailing list
ath11k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath11k
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Maharaja Kennadyrajan <mkenna@codeaurora.org>,
linux-wireless@vger.kernel.org, ath11k@lists.infradead.org
Cc: kbuild-all@lists.01.org, clang-built-linux@googlegroups.com,
Maharaja Kennadyrajan <mkenna@codeaurora.org>
Subject: Re: [PATCH] ath11k: Fix the rx_filter flag setting for peer rssi stats
Date: Mon, 9 Nov 2020 21:27:00 +0800 [thread overview]
Message-ID: <202011092157.LNFDaUGo-lkp@intel.com> (raw)
In-Reply-To: <1604408857-5912-1-git-send-email-mkenna@codeaurora.org>
[-- Attachment #1: Type: text/plain, Size: 3282 bytes --]
Hi Maharaja,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on ath6kl/ath-next]
[also build test ERROR on v5.10-rc3 next-20201109]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Maharaja-Kennadyrajan/ath11k-Fix-the-rx_filter-flag-setting-for-peer-rssi-stats/20201103-210925
base: https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git ath-next
config: x86_64-randconfig-a012-20201109 (attached as .config)
compiler: clang version 12.0.0 (https://github.com/llvm/llvm-project 09ec07827b1128504457a93dee80b2ceee1af600)
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# install x86_64 cross compiling tool for clang build
# apt-get install binutils-x86-64-linux-gnu
# https://github.com/0day-ci/linux/commit/347baa920fe13a6fe6e943f51066d0cff45981ce
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Maharaja-Kennadyrajan/ath11k-Fix-the-rx_filter-flag-setting-for-peer-rssi-stats/20201103-210925
git checkout 347baa920fe13a6fe6e943f51066d0cff45981ce
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
>> drivers/net/wireless/ath/ath11k/mac.c:4097:7: error: implicit declaration of function 'ath11k_debug_rx_filter' [-Werror,-Wimplicit-function-declaration]
if (ath11k_debug_rx_filter(ar))
^
drivers/net/wireless/ath/ath11k/mac.c:4097:7: note: did you mean 'ath11k_debugfs_rx_filter'?
drivers/net/wireless/ath/ath11k/debugfs.h:210:19: note: 'ath11k_debugfs_rx_filter' declared here
static inline int ath11k_debugfs_rx_filter(struct ath11k *ar)
^
1 error generated.
vim +/ath11k_debug_rx_filter +4097 drivers/net/wireless/ath/ath11k/mac.c
4087
4088 static int ath11k_mac_config_mon_status_default(struct ath11k *ar, bool enable)
4089 {
4090 struct htt_rx_ring_tlv_filter tlv_filter = {0};
4091 struct ath11k_base *ab = ar->ab;
4092 int i, ret = 0;
4093 u32 ring_id;
4094
4095 if (enable) {
4096 tlv_filter = ath11k_mac_mon_status_filter_default;
> 4097 if (ath11k_debug_rx_filter(ar))
4098 tlv_filter.rx_filter = ath11k_debug_rx_filter(ar);
4099 }
4100
4101 for (i = 0; i < ab->hw_params.num_rxmda_per_pdev; i++) {
4102 ring_id = ar->dp.rx_mon_status_refill_ring[i].refill_buf_ring.ring_id;
4103 ret = ath11k_dp_tx_htt_rx_filter_setup(ar->ab, ring_id,
4104 ar->dp.mac_id + i,
4105 HAL_RXDMA_MONITOR_STATUS,
4106 DP_RX_BUFFER_SIZE,
4107 &tlv_filter);
4108 }
4109
4110 return ret;
4111 }
4112
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 37608 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH] ath11k: Fix the rx_filter flag setting for peer rssi stats
Date: Mon, 09 Nov 2020 21:27:00 +0800 [thread overview]
Message-ID: <202011092157.LNFDaUGo-lkp@intel.com> (raw)
In-Reply-To: <1604408857-5912-1-git-send-email-mkenna@codeaurora.org>
[-- Attachment #1: Type: text/plain, Size: 3356 bytes --]
Hi Maharaja,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on ath6kl/ath-next]
[also build test ERROR on v5.10-rc3 next-20201109]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Maharaja-Kennadyrajan/ath11k-Fix-the-rx_filter-flag-setting-for-peer-rssi-stats/20201103-210925
base: https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git ath-next
config: x86_64-randconfig-a012-20201109 (attached as .config)
compiler: clang version 12.0.0 (https://github.com/llvm/llvm-project 09ec07827b1128504457a93dee80b2ceee1af600)
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# install x86_64 cross compiling tool for clang build
# apt-get install binutils-x86-64-linux-gnu
# https://github.com/0day-ci/linux/commit/347baa920fe13a6fe6e943f51066d0cff45981ce
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Maharaja-Kennadyrajan/ath11k-Fix-the-rx_filter-flag-setting-for-peer-rssi-stats/20201103-210925
git checkout 347baa920fe13a6fe6e943f51066d0cff45981ce
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
>> drivers/net/wireless/ath/ath11k/mac.c:4097:7: error: implicit declaration of function 'ath11k_debug_rx_filter' [-Werror,-Wimplicit-function-declaration]
if (ath11k_debug_rx_filter(ar))
^
drivers/net/wireless/ath/ath11k/mac.c:4097:7: note: did you mean 'ath11k_debugfs_rx_filter'?
drivers/net/wireless/ath/ath11k/debugfs.h:210:19: note: 'ath11k_debugfs_rx_filter' declared here
static inline int ath11k_debugfs_rx_filter(struct ath11k *ar)
^
1 error generated.
vim +/ath11k_debug_rx_filter +4097 drivers/net/wireless/ath/ath11k/mac.c
4087
4088 static int ath11k_mac_config_mon_status_default(struct ath11k *ar, bool enable)
4089 {
4090 struct htt_rx_ring_tlv_filter tlv_filter = {0};
4091 struct ath11k_base *ab = ar->ab;
4092 int i, ret = 0;
4093 u32 ring_id;
4094
4095 if (enable) {
4096 tlv_filter = ath11k_mac_mon_status_filter_default;
> 4097 if (ath11k_debug_rx_filter(ar))
4098 tlv_filter.rx_filter = ath11k_debug_rx_filter(ar);
4099 }
4100
4101 for (i = 0; i < ab->hw_params.num_rxmda_per_pdev; i++) {
4102 ring_id = ar->dp.rx_mon_status_refill_ring[i].refill_buf_ring.ring_id;
4103 ret = ath11k_dp_tx_htt_rx_filter_setup(ar->ab, ring_id,
4104 ar->dp.mac_id + i,
4105 HAL_RXDMA_MONITOR_STATUS,
4106 DP_RX_BUFFER_SIZE,
4107 &tlv_filter);
4108 }
4109
4110 return ret;
4111 }
4112
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 37608 bytes --]
next prev parent reply other threads:[~2020-11-09 13:27 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-03 13:07 [PATCH] ath11k: Fix the rx_filter flag setting for peer rssi stats Maharaja Kennadyrajan
2020-11-03 13:07 ` Maharaja Kennadyrajan
2020-11-09 13:27 ` kernel test robot [this message]
2020-11-09 13:27 ` kernel test robot
2020-11-09 13:27 ` kernel test robot
2020-11-10 4:59 ` Maharaja Kennadyrajan
2020-11-10 4:59 ` Maharaja Kennadyrajan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=202011092157.LNFDaUGo-lkp@intel.com \
--to=lkp@intel.com \
--cc=ath11k@lists.infradead.org \
--cc=clang-built-linux@googlegroups.com \
--cc=kbuild-all@lists.01.org \
--cc=linux-wireless@vger.kernel.org \
--cc=mkenna@codeaurora.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.