From: kernel test robot <lkp@intel.com>
To: Maciej Fijalkowski <maciej.fijalkowski@intel.com>,
intel-wired-lan@lists.osuosl.org
Cc: oe-kbuild-all@lists.linux.dev, netdev@vger.kernel.org,
anthony.l.nguyen@intel.com, magnus.karlsson@intel.com,
Maciej Fijalkowski <maciej.fijalkowski@intel.com>
Subject: Re: [PATCH iwl-next 2/3] ice: avoid unnecessary devm_ usage
Date: Fri, 23 Feb 2024 17:35:12 +0800 [thread overview]
Message-ID: <202402231718.8mWcBppj-lkp@intel.com> (raw)
In-Reply-To: <20240222145025.722515-3-maciej.fijalkowski@intel.com>
Hi Maciej,
kernel test robot noticed the following build warnings:
[auto build test WARNING on v6.8-rc5]
[also build test WARNING on linus/master next-20240223]
[cannot apply to tnguy-next-queue/dev-queue tnguy-net-queue/dev-queue horms-ipvs/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/Maciej-Fijalkowski/ice-do-not-disable-Tx-queues-twice-in-ice_down/20240222-225134
base: v6.8-rc5
patch link: https://lore.kernel.org/r/20240222145025.722515-3-maciej.fijalkowski%40intel.com
patch subject: [PATCH iwl-next 2/3] ice: avoid unnecessary devm_ usage
config: alpha-allyesconfig (https://download.01.org/0day-ci/archive/20240223/202402231718.8mWcBppj-lkp@intel.com/config)
compiler: alpha-linux-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240223/202402231718.8mWcBppj-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202402231718.8mWcBppj-lkp@intel.com/
All warnings (new ones prefixed by >>):
drivers/net/ethernet/intel/ice/ice_common.c: In function 'ice_update_link_info':
>> drivers/net/ethernet/intel/ice/ice_common.c:3242:32: warning: variable 'hw' set but not used [-Wunused-but-set-variable]
3242 | struct ice_hw *hw;
| ^~
--
drivers/net/ethernet/intel/ice/ice_ethtool.c: In function 'ice_loopback_test':
>> drivers/net/ethernet/intel/ice/ice_ethtool.c:947:24: warning: variable 'dev' set but not used [-Wunused-but-set-variable]
947 | struct device *dev;
| ^~~
vim +/hw +3242 drivers/net/ethernet/intel/ice/ice_common.c
fcea6f3da546b9 Anirudh Venkataramanan 2018-03-20 3221
fcea6f3da546b9 Anirudh Venkataramanan 2018-03-20 3222 /**
fcea6f3da546b9 Anirudh Venkataramanan 2018-03-20 3223 * ice_update_link_info - update status of the HW network link
fcea6f3da546b9 Anirudh Venkataramanan 2018-03-20 3224 * @pi: port info structure of the interested logical port
fcea6f3da546b9 Anirudh Venkataramanan 2018-03-20 3225 */
5e24d5984c805c Tony Nguyen 2021-10-07 3226 int ice_update_link_info(struct ice_port_info *pi)
fcea6f3da546b9 Anirudh Venkataramanan 2018-03-20 3227 {
092a33d4031205 Bruce Allan 2019-04-16 3228 struct ice_link_status *li;
5e24d5984c805c Tony Nguyen 2021-10-07 3229 int status;
fcea6f3da546b9 Anirudh Venkataramanan 2018-03-20 3230
fcea6f3da546b9 Anirudh Venkataramanan 2018-03-20 3231 if (!pi)
d54699e27d506f Tony Nguyen 2021-10-07 3232 return -EINVAL;
fcea6f3da546b9 Anirudh Venkataramanan 2018-03-20 3233
092a33d4031205 Bruce Allan 2019-04-16 3234 li = &pi->phy.link_info;
fcea6f3da546b9 Anirudh Venkataramanan 2018-03-20 3235
fcea6f3da546b9 Anirudh Venkataramanan 2018-03-20 3236 status = ice_aq_get_link_info(pi, true, NULL, NULL);
fcea6f3da546b9 Anirudh Venkataramanan 2018-03-20 3237 if (status)
092a33d4031205 Bruce Allan 2019-04-16 3238 return status;
092a33d4031205 Bruce Allan 2019-04-16 3239
092a33d4031205 Bruce Allan 2019-04-16 3240 if (li->link_info & ICE_AQ_MEDIA_AVAILABLE) {
092a33d4031205 Bruce Allan 2019-04-16 3241 struct ice_aqc_get_phy_caps_data *pcaps;
092a33d4031205 Bruce Allan 2019-04-16 @3242 struct ice_hw *hw;
092a33d4031205 Bruce Allan 2019-04-16 3243
092a33d4031205 Bruce Allan 2019-04-16 3244 hw = pi->hw;
f8543c3af0dcb2 Maciej Fijalkowski 2024-02-22 3245 pcaps = kzalloc(sizeof(*pcaps), GFP_KERNEL);
092a33d4031205 Bruce Allan 2019-04-16 3246 if (!pcaps)
d54699e27d506f Tony Nguyen 2021-10-07 3247 return -ENOMEM;
fcea6f3da546b9 Anirudh Venkataramanan 2018-03-20 3248
d6730a871e68f1 Anirudh Venkataramanan 2021-03-25 3249 status = ice_aq_get_phy_caps(pi, false, ICE_AQC_REPORT_TOPO_CAP_MEDIA,
fcea6f3da546b9 Anirudh Venkataramanan 2018-03-20 3250 pcaps, NULL);
fcea6f3da546b9 Anirudh Venkataramanan 2018-03-20 3251
f8543c3af0dcb2 Maciej Fijalkowski 2024-02-22 3252 kfree(pcaps);
092a33d4031205 Bruce Allan 2019-04-16 3253 }
092a33d4031205 Bruce Allan 2019-04-16 3254
fcea6f3da546b9 Anirudh Venkataramanan 2018-03-20 3255 return status;
fcea6f3da546b9 Anirudh Venkataramanan 2018-03-20 3256 }
fcea6f3da546b9 Anirudh Venkataramanan 2018-03-20 3257
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2024-02-23 9:35 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-22 14:50 [PATCH iwl-next 0/3] intel: misc improvements Maciej Fijalkowski
2024-02-22 14:50 ` [PATCH iwl-next 1/3] ice: do not disable Tx queues twice in ice_down() Maciej Fijalkowski
2024-02-22 14:50 ` [PATCH iwl-next 2/3] ice: avoid unnecessary devm_ usage Maciej Fijalkowski
2024-02-23 7:45 ` Przemek Kitszel
2024-02-23 15:03 ` Maciej Fijalkowski
2024-02-23 9:35 ` kernel test robot [this message]
2024-02-22 14:50 ` [PATCH iwl-next 3/3] ixgbe: pull out stats update to common routines Maciej Fijalkowski
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=202402231718.8mWcBppj-lkp@intel.com \
--to=lkp@intel.com \
--cc=anthony.l.nguyen@intel.com \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=maciej.fijalkowski@intel.com \
--cc=magnus.karlsson@intel.com \
--cc=netdev@vger.kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).