bpf.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <yujie.liu@intel.com>
To: Maciej Fijalkowski <maciej.fijalkowski@intel.com>,
	<bpf@vger.kernel.org>, <ast@kernel.org>, <daniel@iogearbox.net>,
	<andrii@kernel.org>
Cc: <oe-kbuild-all@lists.linux.dev>, <netdev@vger.kernel.org>,
	<magnus.karlsson@intel.com>, <tirthendu.sarkar@intel.com>,
	<maciej.fijalkowski@intel.com>, <bjorn@kernel.org>
Subject: Re: [PATCH v2 bpf-next 17/22] selftests/xsk: add basic multi-buffer test
Date: Thu, 1 Jun 2023 13:46:54 +0800	[thread overview]
Message-ID: <202305200620.ZTVLUbDI-lkp@intel.com> (raw)
In-Reply-To: <20230529155024.222213-18-maciej.fijalkowski@intel.com>

Hi Maciej,

kernel test robot noticed the following build warnings:

[auto build test WARNING on bpf-next/master]

url:    https://github.com/intel-lab-lkp/linux/commits/Maciej-Fijalkowski/xsk-prepare-options-in-xdp_desc-for-multi-buffer-use/20230530-000151
base:   https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git master
patch link:    https://lore.kernel.org/r/20230529155024.222213-18-maciej.fijalkowski@intel.com
patch subject: [PATCH v2 bpf-next 17/21] selftests/xsk: add basic multi-buffer test
compiler: gcc-11 (Debian 11.3.0-12) 11.3.0

If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <yujie.liu@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202305200620.ZTVLUbDI-lkp@intel.com/

includecheck warnings: (new ones prefixed by >>)
>> tools/testing/selftests/bpf/xsk.c: linux/if_link.h is included more than once.

1cad078842396 tools/lib/bpf/xsk.c               (Magnus Karlsson         2019-02-21 10:21:26 +0100  19) #include <linux/filter.h>
1cad078842396 tools/lib/bpf/xsk.c               (Magnus Karlsson         2019-02-21 10:21:26 +0100  20) #include <linux/if_ether.h>
10392a6fa0806 tools/testing/selftests/bpf/xsk.c (Magnus Karlsson         2023-05-29 17:50:19 +0200 @21) #include <linux/if_link.h>
1cad078842396 tools/lib/bpf/xsk.c               (Magnus Karlsson         2019-02-21 10:21:26 +0100  22) #include <linux/if_packet.h>
1cad078842396 tools/lib/bpf/xsk.c               (Magnus Karlsson         2019-02-21 10:21:26 +0100  23) #include <linux/if_xdp.h>
d317b0a8acfc4 tools/lib/bpf/xsk.c               (Yonghong Song           2020-09-14 15:32:10 -0700  24) #include <linux/kernel.h>
2f6324a3937f8 tools/lib/bpf/xsk.c               (Magnus Karlsson         2020-08-28 10:26:27 +0200  25) #include <linux/list.h>
10392a6fa0806 tools/testing/selftests/bpf/xsk.c (Magnus Karlsson         2023-05-29 17:50:19 +0200  26) #include <linux/netlink.h>
10392a6fa0806 tools/testing/selftests/bpf/xsk.c (Magnus Karlsson         2023-05-29 17:50:19 +0200  27) #include <linux/rtnetlink.h>
1cad078842396 tools/lib/bpf/xsk.c               (Magnus Karlsson         2019-02-21 10:21:26 +0100  28) #include <linux/sockios.h>
1cad078842396 tools/lib/bpf/xsk.c               (Magnus Karlsson         2019-02-21 10:21:26 +0100  29) #include <net/if.h>
1cad078842396 tools/lib/bpf/xsk.c               (Magnus Karlsson         2019-02-21 10:21:26 +0100  30) #include <sys/ioctl.h>
1cad078842396 tools/lib/bpf/xsk.c               (Magnus Karlsson         2019-02-21 10:21:26 +0100  31) #include <sys/mman.h>
1cad078842396 tools/lib/bpf/xsk.c               (Magnus Karlsson         2019-02-21 10:21:26 +0100  32) #include <sys/socket.h>
1cad078842396 tools/lib/bpf/xsk.c               (Magnus Karlsson         2019-02-21 10:21:26 +0100  33) #include <sys/types.h>
10397994d30f2 tools/lib/bpf/xsk.c               (Maciej Fijalkowski      2021-03-30 00:43:05 +0200 @34) #include <linux/if_link.h>
1cad078842396 tools/lib/bpf/xsk.c               (Magnus Karlsson         2019-02-21 10:21:26 +0100  35)


-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki


  reply	other threads:[~2023-06-01  5:52 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-29 15:50 [PATCH v2 bpf-next 00/22] xsk: multi-buffer support Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 01/22] xsk: prepare 'options' in xdp_desc for multi-buffer use Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 02/22] xsk: introduce XSK_USE_SG bind flag for xsk socket Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 03/22] xsk: prepare both copy and zero-copy modes to co-exist Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 04/22] xsk: move xdp_buff's data length check to xsk_rcv_check Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 05/22] xsk: add support for AF_XDP multi-buffer on Rx path Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 06/22] xsk: introduce wrappers and helpers for supporting multi-buffer in Tx path Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 07/22] xsk: allow core/drivers to test EOP bit Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 08/22] xsk: add support for AF_XDP multi-buffer on Tx path Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 09/22] xsk: discard zero length descriptors in " Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 10/22] xsk: support mbuf on ZC RX Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 11/22] ice: xsk: add RX multi-buffer support Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 12/22] xsk: support ZC Tx multi-buffer in batch API Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 13/22] xsk: report ZC multi-buffer capability via xdp_features Maciej Fijalkowski
2023-05-30 11:55   ` Simon Horman
2023-05-30 12:31     ` Maciej Fijalkowski
2023-05-30 19:57       ` Simon Horman
2023-05-31 10:16   ` Magnus Karlsson
2023-05-31 13:20     ` Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 14/22] ice: xsk: Tx multi-buffer support Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 15/22] xsk: add multi-buffer documentation Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 16/22] selftests/xsk: transmit and receive multi-buffer packets Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 17/22] selftests/xsk: add basic multi-buffer test Maciej Fijalkowski
2023-06-01  5:46   ` kernel test robot [this message]
2023-05-29 15:50 ` [PATCH v2 bpf-next 18/22] selftests/xsk: add unaligned mode test for multi-buffer Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 19/22] selftests/xsk: add invalid descriptor " Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 20/22] selftests/xsk: add metadata copy test for multi-buff Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 21/22] selftests/xsk: add test for too many frags Maciej Fijalkowski
2023-05-29 15:50 ` [PATCH v2 bpf-next 22/22] selftests/xsk: reset NIC settings to default after running test suite 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=202305200620.ZTVLUbDI-lkp@intel.com \
    --to=yujie.liu@intel.com \
    --cc=andrii@kernel.org \
    --cc=ast@kernel.org \
    --cc=bjorn@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=maciej.fijalkowski@intel.com \
    --cc=magnus.karlsson@intel.com \
    --cc=netdev@vger.kernel.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=tirthendu.sarkar@intel.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;
as well as URLs for NNTP newsgroup(s).