From: kernel test robot <lkp@intel.com>
To: Paolo Abeni <pabeni@redhat.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [Intel-wired-lan] [PATCH v9 net-next 12/15] virtchnl: support queue rate limit and quanta size configuration
Date: Sun, 13 Oct 2024 17:33:34 +0800 [thread overview]
Message-ID: <202410131710.71Wt6LKO-lkp@intel.com> (raw)
In-Reply-To: <839002f7bd6f63b985a060a51b079f6e6dbbe237.1728460186.git.pabeni@redhat.com>
Hi Paolo,
kernel test robot noticed the following build errors:
[auto build test ERROR on net-next/main]
url: https://github.com/intel-lab-lkp/linux/commits/Paolo-Abeni/genetlink-extend-info-user-storage-to-match-NL-cb-ctx/20241009-161414
base: net-next/main
patch link: https://lore.kernel.org/r/839002f7bd6f63b985a060a51b079f6e6dbbe237.1728460186.git.pabeni%40redhat.com
patch subject: [Intel-wired-lan] [PATCH v9 net-next 12/15] virtchnl: support queue rate limit and quanta size configuration
config: m68k-randconfig-r121-20241013 (https://download.01.org/0day-ci/archive/20241013/202410131710.71Wt6LKO-lkp@intel.com/config)
compiler: m68k-linux-gcc (GCC) 14.1.0
reproduce: (https://download.01.org/0day-ci/archive/20241013/202410131710.71Wt6LKO-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/202410131710.71Wt6LKO-lkp@intel.com/
All errors (new ones prefixed by >>):
In file included from drivers/net/ethernet/intel/i40e/i40e.h:11,
from drivers/net/ethernet/intel/i40e/i40e_main.c:13:
include/linux/avf/virtchnl.h:171:43: warning: division by zero [-Wdiv-by-zero]
171 | { virtchnl_static_assert_##X = (n)/((sizeof(struct X) == (n)) ? 1 : 0) }
| ^
include/linux/avf/virtchnl.h:1505:1: note: in expansion of macro 'VIRTCHNL_CHECK_STRUCT_LEN'
1505 | VIRTCHNL_CHECK_STRUCT_LEN(12, virtchnl_quanta_cfg);
| ^~~~~~~~~~~~~~~~~~~~~~~~~
>> include/linux/avf/virtchnl.h:1505:31: error: enumerator value for 'virtchnl_static_assert_virtchnl_quanta_cfg' is not an integer constant
1505 | VIRTCHNL_CHECK_STRUCT_LEN(12, virtchnl_quanta_cfg);
| ^~~~~~~~~~~~~~~~~~~
include/linux/avf/virtchnl.h:171:60: note: in definition of macro 'VIRTCHNL_CHECK_STRUCT_LEN'
171 | { virtchnl_static_assert_##X = (n)/((sizeof(struct X) == (n)) ? 1 : 0) }
| ^
Kconfig warnings: (for reference only)
WARNING: unmet direct dependencies detected for GET_FREE_REGION
Depends on [n]: SPARSEMEM [=n]
Selected by [m]:
- RESOURCE_KUNIT_TEST [=m] && RUNTIME_TESTING_MENU [=y] && KUNIT [=y]
vim +/virtchnl_static_assert_virtchnl_quanta_cfg +1505 include/linux/avf/virtchnl.h
1504
> 1505 VIRTCHNL_CHECK_STRUCT_LEN(12, virtchnl_quanta_cfg);
1506
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2024-10-13 9:34 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-09 8:09 [Intel-wired-lan] [PATCH v9 net-next 00/15] net: introduce TX H/W shaping API Paolo Abeni
2024-10-09 8:09 ` Paolo Abeni
2024-10-09 8:09 ` [Intel-wired-lan] [PATCH v9 net-next 01/15] genetlink: extend info user-storage to match NL cb ctx Paolo Abeni
2024-10-09 8:09 ` Paolo Abeni
2024-10-09 8:09 ` [Intel-wired-lan] [PATCH v9 net-next 02/15] netlink: spec: add shaper YAML spec Paolo Abeni
2024-10-09 8:09 ` Paolo Abeni
2024-10-09 8:09 ` [Intel-wired-lan] [PATCH v9 net-next 03/15] net-shapers: implement NL get operation Paolo Abeni
2024-10-09 8:09 ` Paolo Abeni
2024-10-09 8:09 ` [Intel-wired-lan] [PATCH v9 net-next 04/15] net-shapers: implement NL set and delete operations Paolo Abeni
2024-10-09 8:09 ` Paolo Abeni
2024-10-09 8:09 ` [Intel-wired-lan] [PATCH v9 net-next 05/15] net-shapers: implement NL group operation Paolo Abeni
2024-10-09 8:09 ` Paolo Abeni
2024-10-09 8:09 ` [Intel-wired-lan] [PATCH v9 net-next 06/15] net-shapers: implement delete support for NODE scope shaper Paolo Abeni
2024-10-09 8:09 ` Paolo Abeni
2024-10-09 8:09 ` [Intel-wired-lan] [PATCH v9 net-next 07/15] net-shapers: implement shaper cleanup on queue deletion Paolo Abeni
2024-10-09 8:09 ` Paolo Abeni
2024-10-09 8:09 ` [Intel-wired-lan] [PATCH v9 net-next 08/15] netlink: spec: add shaper introspection support Paolo Abeni
2024-10-09 8:09 ` Paolo Abeni
2024-10-09 8:09 ` [Intel-wired-lan] [PATCH v9 net-next 09/15] net: shaper: implement " Paolo Abeni
2024-10-09 8:09 ` Paolo Abeni
2024-10-09 8:09 ` [Intel-wired-lan] [PATCH v9 net-next 10/15] net-shapers: implement cap validation in the core Paolo Abeni
2024-10-09 8:09 ` Paolo Abeni
2024-10-09 8:09 ` [Intel-wired-lan] [PATCH v9 net-next 11/15] testing: net-drv: add basic shaper test Paolo Abeni
2024-10-09 8:09 ` Paolo Abeni
2024-10-09 8:09 ` [Intel-wired-lan] [PATCH v9 net-next 12/15] virtchnl: support queue rate limit and quanta size configuration Paolo Abeni
2024-10-09 8:09 ` Paolo Abeni
2024-10-13 9:33 ` kernel test robot [this message]
2024-10-09 8:09 ` [Intel-wired-lan] [PATCH v9 net-next 13/15] ice: Support VF " Paolo Abeni
2024-10-09 8:09 ` Paolo Abeni
2024-10-09 8:10 ` [Intel-wired-lan] [PATCH v9 net-next 14/15] iavf: Add net_shaper_ops support Paolo Abeni
2024-10-09 8:10 ` Paolo Abeni
2024-10-09 8:10 ` [Intel-wired-lan] [PATCH v9 net-next 15/15] iavf: add support to exchange qos capabilities Paolo Abeni
2024-10-09 8:10 ` Paolo Abeni
2024-10-10 16:10 ` [Intel-wired-lan] [PATCH v9 net-next 00/15] net: introduce TX H/W shaping API patchwork-bot+netdevbpf
2024-10-10 16:10 ` patchwork-bot+netdevbpf
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=202410131710.71Wt6LKO-lkp@intel.com \
--to=lkp@intel.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=pabeni@redhat.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.