Re: [PATCH net-next 1/7] sfc: add devlink support for ef100
From: kernel test robot <hidden>
Date: 2023-01-19 15:51:19
Also in:
oe-kbuild-all
Hi, Thank you for the patch! Perhaps something to improve: [auto build test WARNING on net-next/master] url: https://github.com/intel-lab-lkp/linux/commits/alejandro-lucero-palau-amd-com/sfc-add-devlink-support-for-ef100/20230119-193440 patch link: https://lore.kernel.org/r/20230119113140.20208-2-alejandro.lucero-palau%40amd.com patch subject: [PATCH net-next 1/7] sfc: add devlink support for ef100 config: sparc-allyesconfig (https://download.01.org/0day-ci/archive/20230119/202301192303.3zOqMgPP-lkp@intel.com/config) compiler: sparc64-linux-gcc (GCC) 12.1.0 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/f393f2642abb0e7536df6f9f08e0d69ecfd5b435 git remote add linux-review https://github.com/intel-lab-lkp/linux git fetch --no-tags linux-review alejandro-lucero-palau-amd-com/sfc-add-devlink-support-for-ef100/20230119-193440 git checkout f393f2642abb0e7536df6f9f08e0d69ecfd5b435 # save the config file mkdir build_dir && cp config build_dir/.config COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=sparc olddefconfig COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=sparc SHELL=/bin/bash drivers/net/ethernet/sfc/ If you fix the issue, kindly add following tag where applicable | Reported-by: kernel test robot [off-list ref] All warnings (new ones prefixed by >>): drivers/net/ethernet/sfc/efx_devlink.c: In function 'efx_fini_devlink':
quoted
drivers/net/ethernet/sfc/efx_devlink.c:402:37: warning: variable 'devlink_private' set but not used [-Wunused-but-set-variable]
402 | struct efx_devlink *devlink_private;
| ^~~~~~~~~~~~~~~
vim +/devlink_private +402 drivers/net/ethernet/sfc/efx_devlink.c
398
399 void efx_fini_devlink(struct efx_nic *efx)
400 {
401 if (efx->devlink) {
> 402 struct efx_devlink *devlink_private;
403
404 devlink_private = devlink_priv(efx->devlink);
405
406 devlink_unregister(efx->devlink);
407 devlink_free(efx->devlink);
408 efx->devlink = NULL;
409 }
410 }
411
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests