All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <rong.a.chen@intel.com>
To: Matteo Croce <mcroce@linux.microsoft.com>,
	netdev@vger.kernel.org, linux-mm@kvack.org
Cc: kbuild-all@lists.01.org, Ayush Sawal <ayush.sawal@chelsio.com>,
	Vinay Kumar Yadav <vinay.yadav@chelsio.com>,
	Rohit Maheshwari <rohitm@chelsio.com>,
	Jakub Kicinski <kuba@kernel.org>,
	Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
	Marcin Wojtas <mw@semihalf.com>,
	Russell King <linux@armlinux.org.uk>,
	Mirko Lindner <mlindner@marvell.com>
Subject: Re: [PATCH net-next v8 3/5] page_pool: Allow drivers to hint on SKB recycling
Date: Tue, 8 Jun 2021 11:19:36 +0800	[thread overview]
Message-ID: <20210608031935.GB237458@shao2-debian> (raw)
In-Reply-To: <20210607190240.36900-4-mcroce@linux.microsoft.com>

[-- Attachment #1: Type: text/plain, Size: 3248 bytes --]

Hi Matteo,

I love your patch! Perhaps something to improve:

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

url:    https://github.com/0day-ci/linux/commits/Matteo-Croce/page_pool-recycle-buffers/20210608-030512
base:   https://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git 1a42624aecba438f1d114430a14b640cdfa51c87
config: x86_64-randconfig-b001-20210607 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project ae973380c5f6be77ce395022be40350942260be9)
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # install x86_64 cross compiling tool for clang build
        # apt-get install binutils-x86-64-linux-gnu
        # apt-get install iwyu # include-what-you-use
        # https://github.com/0day-ci/linux/commit/95da7ab53bd3ac29bee6be7c89fda1f7c506a182
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Matteo-Croce/page_pool-recycle-buffers/20210608-030512
        git checkout 95da7ab53bd3ac29bee6be7c89fda1f7c506a182
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross C=1 CHECK=iwyu ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>


iwyu warnings: (new ones prefixed by >>)
   net/core/skbuff.c:77:1: iwyu: warning: superfluous #include <linux/highmem.h>
   net/core/skbuff.c:43:1: iwyu: warning: superfluous #include <linux/inet.h>
   net/core/skbuff.c:41:1: iwyu: warning: superfluous #include <linux/interrupt.h>
   net/core/skbuff.c:37:1: iwyu: warning: superfluous #include <linux/module.h>
   net/core/skbuff.c:60:1: iwyu: warning: superfluous #include <linux/prefetch.h>
   net/core/skbuff.c:56:1: iwyu: warning: superfluous #include <linux/rtnetlink.h>
   net/core/skbuff.c:52:1: iwyu: warning: superfluous #include <linux/string.h>
   net/core/skbuff.c:75:1: iwyu: warning: superfluous #include <linux/uaccess.h>
   net/core/skbuff.c:69:1: iwyu: warning: superfluous #include <net/ip6_checksum.h>
>> net/core/skbuff.c:73:1: iwyu: warning: superfluous #include <net/page_pool.h>
   net/core/skbuff.c:65:1: iwyu: warning: superfluous #include <net/protocol.h>

vim +73 net/core/skbuff.c

^1da177e4c3f41 Linus Torvalds   2005-04-16  64  
^1da177e4c3f41 Linus Torvalds   2005-04-16  65  #include <net/protocol.h>
^1da177e4c3f41 Linus Torvalds   2005-04-16  66  #include <net/dst.h>
^1da177e4c3f41 Linus Torvalds   2005-04-16  67  #include <net/sock.h>
^1da177e4c3f41 Linus Torvalds   2005-04-16  68  #include <net/checksum.h>
ed1f50c3a7c1ad Paul Durrant     2014-01-09  69  #include <net/ip6_checksum.h>
^1da177e4c3f41 Linus Torvalds   2005-04-16  70  #include <net/xfrm.h>
8822e270d69701 John Hurley      2019-07-07  71  #include <net/mpls.h>
3ee17bc78e0f3f Mat Martineau    2020-01-09  72  #include <net/mptcp.h>
95da7ab53bd3ac Ilias Apalodimas 2021-06-07 @73  #include <net/page_pool.h>
^1da177e4c3f41 Linus Torvalds   2005-04-16  74  

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 33029 bytes --]

[-- Attachment #3: Type: text/plain, Size: 149 bytes --]

_______________________________________________
kbuild mailing list -- kbuild@lists.01.org
To unsubscribe send an email to kbuild-leave@lists.01.org

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <rong.a.chen@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH net-next v8 3/5] page_pool: Allow drivers to hint on SKB recycling
Date: Tue, 08 Jun 2021 11:19:36 +0800	[thread overview]
Message-ID: <20210608031935.GB237458@shao2-debian> (raw)
In-Reply-To: <20210607190240.36900-4-mcroce@linux.microsoft.com>

[-- Attachment #1: Type: text/plain, Size: 3465 bytes --]

Hi Matteo,

I love your patch! Perhaps something to improve:

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

url:    https://github.com/0day-ci/linux/commits/Matteo-Croce/page_pool-recycle-buffers/20210608-030512
base:   https://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git 1a42624aecba438f1d114430a14b640cdfa51c87
config: x86_64-randconfig-b001-20210607 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project ae973380c5f6be77ce395022be40350942260be9)
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # install x86_64 cross compiling tool for clang build
        # apt-get install binutils-x86-64-linux-gnu
        # apt-get install iwyu # include-what-you-use
        # https://github.com/0day-ci/linux/commit/95da7ab53bd3ac29bee6be7c89fda1f7c506a182
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Matteo-Croce/page_pool-recycle-buffers/20210608-030512
        git checkout 95da7ab53bd3ac29bee6be7c89fda1f7c506a182
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross C=1 CHECK=iwyu ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>


iwyu warnings: (new ones prefixed by >>)
   net/core/skbuff.c:77:1: iwyu: warning: superfluous #include <linux/highmem.h>
   net/core/skbuff.c:43:1: iwyu: warning: superfluous #include <linux/inet.h>
   net/core/skbuff.c:41:1: iwyu: warning: superfluous #include <linux/interrupt.h>
   net/core/skbuff.c:37:1: iwyu: warning: superfluous #include <linux/module.h>
   net/core/skbuff.c:60:1: iwyu: warning: superfluous #include <linux/prefetch.h>
   net/core/skbuff.c:56:1: iwyu: warning: superfluous #include <linux/rtnetlink.h>
   net/core/skbuff.c:52:1: iwyu: warning: superfluous #include <linux/string.h>
   net/core/skbuff.c:75:1: iwyu: warning: superfluous #include <linux/uaccess.h>
   net/core/skbuff.c:69:1: iwyu: warning: superfluous #include <net/ip6_checksum.h>
>> net/core/skbuff.c:73:1: iwyu: warning: superfluous #include <net/page_pool.h>
   net/core/skbuff.c:65:1: iwyu: warning: superfluous #include <net/protocol.h>

vim +73 net/core/skbuff.c

^1da177e4c3f41 Linus Torvalds   2005-04-16  64  
^1da177e4c3f41 Linus Torvalds   2005-04-16  65  #include <net/protocol.h>
^1da177e4c3f41 Linus Torvalds   2005-04-16  66  #include <net/dst.h>
^1da177e4c3f41 Linus Torvalds   2005-04-16  67  #include <net/sock.h>
^1da177e4c3f41 Linus Torvalds   2005-04-16  68  #include <net/checksum.h>
ed1f50c3a7c1ad Paul Durrant     2014-01-09  69  #include <net/ip6_checksum.h>
^1da177e4c3f41 Linus Torvalds   2005-04-16  70  #include <net/xfrm.h>
8822e270d69701 John Hurley      2019-07-07  71  #include <net/mpls.h>
3ee17bc78e0f3f Mat Martineau    2020-01-09  72  #include <net/mptcp.h>
95da7ab53bd3ac Ilias Apalodimas 2021-06-07 @73  #include <net/page_pool.h>
^1da177e4c3f41 Linus Torvalds   2005-04-16  74  

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

_______________________________________________
kbuild mailing list -- kbuild(a)lists.01.org
To unsubscribe send an email to kbuild-leave(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 33029 bytes --]

  reply	other threads:[~2021-06-08  3:20 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-07 19:02 [PATCH net-next v8 0/5] page_pool: recycle buffers Matteo Croce
2021-06-07 19:02 ` [PATCH net-next v8 1/5] mm: add a signature in struct page Matteo Croce
2021-06-07 19:02 ` [PATCH net-next v8 2/5] skbuff: add a parameter to __skb_frag_unref Matteo Croce
2021-06-07 19:02 ` [PATCH net-next v8 3/5] page_pool: Allow drivers to hint on SKB recycling Matteo Croce
2021-06-08  3:19   ` kernel test robot [this message]
2021-06-08  3:19     ` kernel test robot
2021-06-07 19:02 ` [PATCH net-next v8 4/5] mvpp2: recycle buffers Matteo Croce
2021-06-07 19:02 ` [PATCH net-next v8 5/5] mvneta: " Matteo Croce
2021-06-07 21:40 ` [PATCH net-next v8 0/5] page_pool: " patchwork-bot+netdevbpf
2021-06-08  2:12 [PATCH net-next v8 3/5] page_pool: Allow drivers to hint on SKB recycling kernel test robot

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=20210608031935.GB237458@shao2-debian \
    --to=rong.a.chen@intel.com \
    --cc=ayush.sawal@chelsio.com \
    --cc=kbuild-all@lists.01.org \
    --cc=kuba@kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=linux@armlinux.org.uk \
    --cc=mcroce@linux.microsoft.com \
    --cc=mlindner@marvell.com \
    --cc=mw@semihalf.com \
    --cc=netdev@vger.kernel.org \
    --cc=rohitm@chelsio.com \
    --cc=thomas.petazzoni@bootlin.com \
    --cc=vinay.yadav@chelsio.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.