All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Martin Habets <habetsm.xilinx@gmail.com>,
	kuba@kernel.org, jiasheng@iscas.ac.cn, davem@davemloft.net
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org,
	ecree.xilinx@gmail.com, netdev@vger.kernel.org
Subject: Re: [PATCH net-next] sfc: The RX page_ring is optional
Date: Sun, 2 Jan 2022 13:23:57 +0800	[thread overview]
Message-ID: <202201021335.SbR7I6ht-lkp@intel.com> (raw)
In-Reply-To: <164103678041.26263.8354809911405746465.stgit@palantir17.mph.net>

Hi Martin,

I love your patch! Yet something to improve:

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

url:    https://github.com/0day-ci/linux/commits/Martin-Habets/sfc-The-RX-page_ring-is-optional/20220101-194123
base:   https://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git e63a02348958cd7cc8c8401c94de57ad97b5d06c
config: x86_64-allyesconfig (https://download.01.org/0day-ci/archive/20220102/202201021335.SbR7I6ht-lkp@intel.com/config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project c054402170cd8466683a20385befc0523aba3359)
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
        # https://github.com/0day-ci/linux/commit/162a8e2305bbbba8cd81966114ecce08790c431d
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Martin-Habets/sfc-The-RX-page_ring-is-optional/20220101-194123
        git checkout 162a8e2305bbbba8cd81966114ecce08790c431d
        # save the config file to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=x86_64 SHELL=/bin/bash

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

All errors (new ones prefixed by >>):

>> drivers/net/ethernet/sfc/rx_common.c:120:3: error: void function 'efx_recycle_rx_pages' should not return a value [-Wreturn-type]
                   return NULL;
                   ^      ~~~~
   1 error generated.
--
>> drivers/net/ethernet/sfc/falcon/rx.c:299:3: error: void function 'ef4_recycle_rx_pages' should not return a value [-Wreturn-type]
                   return NULL;
                   ^      ~~~~
   1 error generated.


vim +/efx_recycle_rx_pages +120 drivers/net/ethernet/sfc/rx_common.c

   111	
   112	/* Recycle the pages that are used by buffers that have just been received. */
   113	void efx_recycle_rx_pages(struct efx_channel *channel,
   114				  struct efx_rx_buffer *rx_buf,
   115				  unsigned int n_frags)
   116	{
   117		struct efx_rx_queue *rx_queue = efx_channel_get_rx_queue(channel);
   118	
   119		if (unlikely(!rx_queue->page_ring))
 > 120			return NULL;
   121	
   122		do {
   123			efx_recycle_rx_page(channel, rx_buf);
   124			rx_buf = efx_rx_buf_next(rx_queue, rx_buf);
   125		} while (--n_frags);
   126	}
   127	

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

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH net-next] sfc: The RX page_ring is optional
Date: Sun, 02 Jan 2022 13:23:57 +0800	[thread overview]
Message-ID: <202201021335.SbR7I6ht-lkp@intel.com> (raw)
In-Reply-To: <164103678041.26263.8354809911405746465.stgit@palantir17.mph.net>

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

Hi Martin,

I love your patch! Yet something to improve:

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

url:    https://github.com/0day-ci/linux/commits/Martin-Habets/sfc-The-RX-page_ring-is-optional/20220101-194123
base:   https://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git e63a02348958cd7cc8c8401c94de57ad97b5d06c
config: x86_64-allyesconfig (https://download.01.org/0day-ci/archive/20220102/202201021335.SbR7I6ht-lkp(a)intel.com/config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project c054402170cd8466683a20385befc0523aba3359)
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
        # https://github.com/0day-ci/linux/commit/162a8e2305bbbba8cd81966114ecce08790c431d
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Martin-Habets/sfc-The-RX-page_ring-is-optional/20220101-194123
        git checkout 162a8e2305bbbba8cd81966114ecce08790c431d
        # save the config file to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=x86_64 SHELL=/bin/bash

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

All errors (new ones prefixed by >>):

>> drivers/net/ethernet/sfc/rx_common.c:120:3: error: void function 'efx_recycle_rx_pages' should not return a value [-Wreturn-type]
                   return NULL;
                   ^      ~~~~
   1 error generated.
--
>> drivers/net/ethernet/sfc/falcon/rx.c:299:3: error: void function 'ef4_recycle_rx_pages' should not return a value [-Wreturn-type]
                   return NULL;
                   ^      ~~~~
   1 error generated.


vim +/efx_recycle_rx_pages +120 drivers/net/ethernet/sfc/rx_common.c

   111	
   112	/* Recycle the pages that are used by buffers that have just been received. */
   113	void efx_recycle_rx_pages(struct efx_channel *channel,
   114				  struct efx_rx_buffer *rx_buf,
   115				  unsigned int n_frags)
   116	{
   117		struct efx_rx_queue *rx_queue = efx_channel_get_rx_queue(channel);
   118	
   119		if (unlikely(!rx_queue->page_ring))
 > 120			return NULL;
   121	
   122		do {
   123			efx_recycle_rx_page(channel, rx_buf);
   124			rx_buf = efx_rx_buf_next(rx_queue, rx_buf);
   125		} while (--n_frags);
   126	}
   127	

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

  reply	other threads:[~2022-01-02  5:24 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-01 11:33 [PATCH net-next] sfc: The RX page_ring is optional Martin Habets
2022-01-02  5:23 ` kernel test robot [this message]
2022-01-02  5:23   ` 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=202201021335.SbR7I6ht-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=davem@davemloft.net \
    --cc=ecree.xilinx@gmail.com \
    --cc=habetsm.xilinx@gmail.com \
    --cc=jiasheng@iscas.ac.cn \
    --cc=kbuild-all@lists.01.org \
    --cc=kuba@kernel.org \
    --cc=llvm@lists.linux.dev \
    --cc=netdev@vger.kernel.org \
    /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.