From: kernel test robot <lkp@intel.com>
To: MD Danish Anwar <danishanwar@ti.com>,
Jan Kiszka <jan.kiszka@siemens.com>, Andrew Lunn <andrew@lunn.ch>,
Dan Carpenter <error27@gmail.com>,
Sai Krishna <saikrishnag@marvell.com>,
Jacob Keller <jacob.e.keller@intel.com>,
Javier Carrasco <javier.carrasco.cruz@gmail.com>,
Diogo Ivo <diogo.ivo@siemens.com>,
Simon Horman <horms@kernel.org>,
Richard Cochran <richardcochran@gmail.com>,
Paolo Abeni <pabeni@redhat.com>, Jakub Kicinski <kuba@kernel.org>,
Eric Dumazet <edumazet@google.com>,
"David S. Miller" <davem@davemloft.net>
Cc: oe-kbuild-all@lists.linux.dev, netdev@vger.kernel.org,
Alexander Lobakin <aleksander.lobakin@intel.com>,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, srk@ti.com,
Vignesh Raghavendra <vigneshr@ti.com>,
Roger Quadros <rogerq@kernel.org>,
danishanwar@ti.com
Subject: Re: [PATCH net-next v4 3/5] net: ti: icssg-prueth: Add support for HSR frame forward offload
Date: Fri, 6 Sep 2024 17:22:29 +0800 [thread overview]
Message-ID: <202409061658.vSwcFJiK-lkp@intel.com> (raw)
In-Reply-To: <20240904100506.3665892-4-danishanwar@ti.com>
Hi MD,
kernel test robot noticed the following build warnings:
[auto build test WARNING on 075e3d30e4a3da8eadd12f2f063dc8e2ea9e1f08]
url: https://github.com/intel-lab-lkp/linux/commits/MD-Danish-Anwar/net-ti-icss-iep-Move-icss_iep-structure/20240904-180917
base: 075e3d30e4a3da8eadd12f2f063dc8e2ea9e1f08
patch link: https://lore.kernel.org/r/20240904100506.3665892-4-danishanwar%40ti.com
patch subject: [PATCH net-next v4 3/5] net: ti: icssg-prueth: Add support for HSR frame forward offload
config: arm64-defconfig (https://download.01.org/0day-ci/archive/20240906/202409061658.vSwcFJiK-lkp@intel.com/config)
compiler: aarch64-linux-gcc (GCC) 14.1.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240906/202409061658.vSwcFJiK-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/202409061658.vSwcFJiK-lkp@intel.com/
All warnings (new ones prefixed by >>):
drivers/net/ethernet/ti/icssg/icssg_prueth.c: In function 'emac_ndo_set_features':
>> drivers/net/ethernet/ti/icssg/icssg_prueth.c:765:24: warning: unused variable 'prueth' [-Wunused-variable]
765 | struct prueth *prueth = emac->prueth;
| ^~~~~~
vim +/prueth +765 drivers/net/ethernet/ti/icssg/icssg_prueth.c
760
761 static int emac_ndo_set_features(struct net_device *ndev,
762 netdev_features_t features)
763 {
764 struct prueth_emac *emac = netdev_priv(ndev);
> 765 struct prueth *prueth = emac->prueth;
766
767 emac_change_hsr_feature(ndev, features, NETIF_F_HW_HSR_FWD);
768 emac_change_hsr_feature(ndev, features, NETIF_F_HW_HSR_DUP);
769 emac_change_hsr_feature(ndev, features, NETIF_F_HW_HSR_TAG_INS);
770 emac_change_hsr_feature(ndev, features, NETIF_F_HW_HSR_TAG_RM);
771
772 return 0;
773 }
774
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2024-09-06 9:23 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-04 10:05 [PATCH net-next v4 0/5] Introduce HSR offload support for ICSSG MD Danish Anwar
2024-09-04 10:05 ` [PATCH net-next v4 1/5] net: ti: icss-iep: Move icss_iep structure MD Danish Anwar
2024-09-04 10:05 ` [PATCH net-next v4 2/5] net: ti: icssg-prueth: Stop hardcoding def_inc MD Danish Anwar
2024-09-04 10:05 ` [PATCH net-next v4 3/5] net: ti: icssg-prueth: Add support for HSR frame forward offload MD Danish Anwar
2024-09-06 9:22 ` kernel test robot [this message]
2024-09-04 10:05 ` [PATCH net-next v4 4/5] net: ti: icssg-prueth: Enable HSR Tx duplication, Tx Tag and Rx Tag offload MD Danish Anwar
2024-09-04 10:05 ` [PATCH net-next v4 5/5] net: ti: icssg-prueth: Add multicast filtering support in HSR mode MD Danish Anwar
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=202409061658.vSwcFJiK-lkp@intel.com \
--to=lkp@intel.com \
--cc=aleksander.lobakin@intel.com \
--cc=andrew@lunn.ch \
--cc=danishanwar@ti.com \
--cc=davem@davemloft.net \
--cc=diogo.ivo@siemens.com \
--cc=edumazet@google.com \
--cc=error27@gmail.com \
--cc=horms@kernel.org \
--cc=jacob.e.keller@intel.com \
--cc=jan.kiszka@siemens.com \
--cc=javier.carrasco.cruz@gmail.com \
--cc=kuba@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=pabeni@redhat.com \
--cc=richardcochran@gmail.com \
--cc=rogerq@kernel.org \
--cc=saikrishnag@marvell.com \
--cc=srk@ti.com \
--cc=vigneshr@ti.com \
/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