[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <202502120546.Y6ri4qi6-lkp@intel.com>
Date: Wed, 12 Feb 2025 06:20:14 +0800
From: kernel test robot <lkp@...el.com>
To: Meghana Malladi <m-malladi@...com>, rogerq@...nel.org,
danishanwar@...com, pabeni@...hat.com, kuba@...nel.org,
edumazet@...gle.com, davem@...emloft.net, andrew+netdev@...n.ch
Cc: oe-kbuild-all@...ts.linux.dev, bpf@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org,
netdev@...r.kernel.org, u.kleine-koenig@...libre.com,
krzysztof.kozlowski@...aro.org, dan.carpenter@...aro.org,
m-malladi@...com, schnelle@...ux.ibm.com, glaroque@...libre.com,
rdunlap@...radead.org, diogo.ivo@...mens.com,
jan.kiszka@...mens.com, john.fastabend@...il.com, hawk@...nel.org,
daniel@...earbox.net, ast@...nel.org, srk@...com,
Vignesh Raghavendra <vigneshr@...com>
Subject: Re: [PATCH net-next v2 3/3] net: ti: icssg-prueth: Add XDP support
Hi Meghana,
kernel test robot noticed the following build errors:
[auto build test ERROR on acdefab0dcbc3833b5a734ab80d792bb778517a0]
url: https://github.com/intel-lab-lkp/linux/commits/Meghana-Malladi/net-ti-icssg-prueth-Use-page_pool-API-for-RX-buffer-allocation/20250210-183805
base: acdefab0dcbc3833b5a734ab80d792bb778517a0
patch link: https://lore.kernel.org/r/20250210103352.541052-4-m-malladi%40ti.com
patch subject: [PATCH net-next v2 3/3] net: ti: icssg-prueth: Add XDP support
config: arm64-defconfig (https://download.01.org/0day-ci/archive/20250212/202502120546.Y6ri4qi6-lkp@intel.com/config)
compiler: aarch64-linux-gcc (GCC) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250212/202502120546.Y6ri4qi6-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@...el.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202502120546.Y6ri4qi6-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/net/ethernet/ti/icssg/icssg_prueth.c: In function 'prueth_create_xdp_rxqs':
>> drivers/net/ethernet/ti/icssg/icssg_prueth.c:568:55: error: 'struct xdp_rxq_info' has no member named 'napi_id'
568 | ret = xdp_rxq_info_reg(rxq, emac->ndev, 0, rxq->napi_id);
| ^~
vim +568 drivers/net/ethernet/ti/icssg/icssg_prueth.c
561
562 static int prueth_create_xdp_rxqs(struct prueth_emac *emac)
563 {
564 struct xdp_rxq_info *rxq = &emac->rx_chns.xdp_rxq;
565 struct page_pool *pool = emac->rx_chns.pg_pool;
566 int ret;
567
> 568 ret = xdp_rxq_info_reg(rxq, emac->ndev, 0, rxq->napi_id);
569 if (ret)
570 return ret;
571
572 ret = xdp_rxq_info_reg_mem_model(rxq, MEM_TYPE_PAGE_POOL, pool);
573 if (ret)
574 xdp_rxq_info_unreg(rxq);
575
576 return ret;
577 }
578
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
Powered by blists - more mailing lists