[Intel-wired-lan] [PATCH net-next v10 3/5] ice: add ability to set FW log configuration
kernel test robot
lkp at intel.com
Thu Mar 9 05:42:16 UTC 2023
Hi Paul,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on tnguy-next-queue/dev-queue]
[also build test WARNING on linus/master v6.3-rc1 next-20230309]
[cannot apply to net-next/master]
[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#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Paul-M-Stillwell-Jr/ice-remove-FW-logging-code/20230309-075355
base: https://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git dev-queue
patch link: https://lore.kernel.org/r/20230308235102.170-4-paul.m.stillwell.jr%40intel.com
patch subject: [Intel-wired-lan] [PATCH net-next v10 3/5] ice: add ability to set FW log configuration
config: i386-randconfig-a013 (https://download.01.org/0day-ci/archive/20230309/202303091324.Fz9iqJvc-lkp@intel.com/config)
compiler: clang version 14.0.6 (https://github.com/llvm/llvm-project f28c006a5895fc0e329fe15fead81e37457cb1d1)
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
# https://github.com/intel-lab-lkp/linux/commit/3b04c760aa44876f9b794246a3cf0f3c3bfcafe3
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Paul-M-Stillwell-Jr/ice-remove-FW-logging-code/20230309-075355
git checkout 3b04c760aa44876f9b794246a3cf0f3c3bfcafe3
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 olddefconfig
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 SHELL=/bin/bash drivers/net/ethernet/intel/ice/
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp at intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202303091324.Fz9iqJvc-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> drivers/net/ethernet/intel/ice/ice_main.c:4574:13: warning: result of comparison of constant 4294967296 with expression of type 'unsigned long' is always false [-Wtautological-constant-out-of-range-compare]
if (events >= BIT_ULL(ICE_AQC_FW_LOG_ID_MAX)) {
~~~~~~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
vim +4574 drivers/net/ethernet/intel/ice/ice_main.c
4554
4555 /**
4556 * ice_pf_fwlog_update_modules - update 1 or more modules via debugfs
4557 * @pf: pointer to the PF struct
4558 * @log_level: log_level to use for the @events
4559 * @events: events to update
4560 */
4561 int ice_pf_fwlog_update_modules(struct ice_pf *pf, u8 log_level,
4562 unsigned long events)
4563 {
4564 struct ice_fwlog_module_entry *entries;
4565 struct ice_hw *hw = &pf->hw;
4566 u16 module_id, max_bits;
4567
4568 if (log_level >= ICE_FWLOG_LEVEL_INVALID) {
4569 dev_err(ice_pf_to_dev(pf), "Invalid FW log level %u, all level(s) >= %u are invalid\n",
4570 log_level, ICE_FWLOG_LEVEL_INVALID);
4571 return -EINVAL;
4572 }
4573
> 4574 if (events >= BIT_ULL(ICE_AQC_FW_LOG_ID_MAX)) {
4575 dev_err(ice_pf_to_dev(pf), "Invalid FW log events 0x%lx, all FW log event bits >= 0x%llx are invalid\n",
4576 events, BIT_ULL(ICE_AQC_FW_LOG_ID_MAX));
4577 return -EINVAL;
4578 }
4579
4580 entries = (struct ice_fwlog_module_entry *)hw->fwlog_cfg.module_entries;
4581
4582 max_bits = min_t(u16, BITS_PER_TYPE(unsigned long),
4583 ICE_AQC_FW_LOG_ID_MAX);
4584
4585 for_each_set_bit(module_id, &events, max_bits) {
4586 entries[module_id].log_level = log_level;
4587 }
4588
4589 return 0;
4590 }
4591
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
More information about the Intel-wired-lan
mailing list