All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH/RFC 2/2] ravb: Add GbEthernet driver support
Date: Thu, 15 Jul 2021 01:56:02 +0800	[thread overview]
Message-ID: <202107150106.JdniaiMq-lkp@intel.com> (raw)
In-Reply-To: <20210714145408.4382-3-biju.das.jz@bp.renesas.com>

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

Hi Biju,

[FYI, it's a private test report for your RFC patch.]
[auto build test WARNING on v5.13]
[cannot apply to ipvs/master linus/master sparc-next/master v5.14-rc1 next-20210714]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/0day-ci/linux/commits/Biju-Das/Add-Gigabit-Ethernet-driver-support/20210714-225614
base:    62fb9874f5da54fdb243003b386128037319b219
config: m68k-allmodconfig (attached as .config)
compiler: m68k-linux-gcc (GCC) 9.3.0
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/55afee99ed412f19285ddcd388f546d0eec28b5b
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Biju-Das/Add-Gigabit-Ethernet-driver-support/20210714-225614
        git checkout 55afee99ed412f19285ddcd388f546d0eec28b5b
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=m68k 

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

All warnings (new ones prefixed by >>):

>> drivers/net/ethernet/renesas/ravb_main.c:744:17: warning: no previous prototype for 'rgeth_get_skb' [-Wmissing-prototypes]
     744 | struct sk_buff *rgeth_get_skb(struct net_device *ndev,  int q, int entry,
         |                 ^~~~~~~~~~~~~


vim +/rgeth_get_skb +744 drivers/net/ethernet/renesas/ravb_main.c

   742	
   743	/* Packet receive function for Ethernet AVB */
 > 744	struct sk_buff *rgeth_get_skb(struct net_device *ndev,  int q, int entry,
   745				      struct ravb_rx_desc *desc)
   746	{
   747		struct ravb_private *priv = netdev_priv(ndev);
   748		struct sk_buff *skb;
   749	
   750		skb = priv->rx_skb[q][entry];
   751		priv->rx_skb[q][entry] = NULL;
   752		dma_unmap_single(ndev->dev.parent, le32_to_cpu(desc->dptr),
   753				 ALIGN(RGETH_RCV_BUFF_MAX, 16), DMA_FROM_DEVICE);
   754	
   755		return skb;
   756	}
   757	

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

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

  parent reply	other threads:[~2021-07-14 17:56 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-14 14:54 [PATCH/RFC 0/2] Add Gigabit Ethernet driver support Biju Das
2021-07-14 14:54 ` [PATCH/RFC 1/2] ravb: Preparation for supporting Gigabit Ethernet driver Biju Das
2021-07-14 15:39   ` Andrew Lunn
2021-07-14 16:24     ` Biju Das
2021-07-14 18:20   ` Sergei Shtylyov
2021-07-15  6:49     ` Biju Das
2021-07-14 14:54 ` [PATCH/RFC 2/2] ravb: Add GbEthernet driver support Biju Das
2021-07-14 16:02   ` Andrew Lunn
2021-07-14 17:01     ` Biju Das
2021-07-14 17:25       ` Andrew Lunn
2021-07-14 17:56         ` Biju Das
2021-07-14 17:56   ` kernel test robot [this message]
2021-07-15 10:13   ` Geert Uytterhoeven
2021-07-15 10:31     ` Biju Das
2021-07-19 20:41   ` Sergei Shtylyov
2021-07-20  6:32     ` Biju Das
2021-07-14 19:26 ` [PATCH/RFC 0/2] Add Gigabit Ethernet " Sergei Shtylyov

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=202107150106.JdniaiMq-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.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.