From: kbuild test robot <lkp@intel.com>
To: Maxime Chevallier <maxime.chevallier@bootlin.com>
Cc: kbuild-all@01.org, davem@davemloft.net,
Maxime Chevallier <maxime.chevallier@bootlin.com>,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
Antoine Tenart <antoine.tenart@bootlin.com>,
thomas.petazzoni@bootlin.com, gregory.clement@bootlin.com,
miquel.raynal@bootlin.com, nadavh@marvell.com,
stefanc@marvell.com, ymarkman@marvell.com, mw@semihalf.com
Subject: Re: [PATCH net-next 4/5] net: mvpp2: debugfs: add entries for classifier flows
Date: Tue, 17 Jul 2018 09:01:22 +0800 [thread overview]
Message-ID: <20180717010122.GC10593@intel.com> (raw)
In-Reply-To: <20180713161344.19872-5-maxime.chevallier@bootlin.com>
[-- Attachment #1: Type: text/plain, Size: 2513 bytes --]
Hi Maxime,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on net-next/master]
url: https://github.com/0day-ci/linux/commits/Maxime-Chevallier/net-mvpp2-add-debugfs-interface/20180716-014927
config: powerpc-allmodconfig (attached as .config)
compiler: powerpc64-linux-gnu-gcc (Debian 7.2.0-11) 7.2.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
GCC_VERSION=7.2.0 make.cross ARCH=powerpc
:::::: branch date: 14 hours ago
:::::: commit date: 14 hours ago
All errors (new ones prefixed by >>):
>> drivers/net//ethernet/marvell/mvpp2/mvpp2_cls.c:575:31: error: static declaration of 'mvpp2_cls_flow_get' follows non-static declaration
static struct mvpp2_cls_flow *mvpp2_cls_flow_get(int flow)
^~~~~~~~~~~~~~~~~~
In file included from drivers/net//ethernet/marvell/mvpp2/mvpp2_cls.c:11:0:
drivers/net//ethernet/marvell/mvpp2/mvpp2_cls.h:216:24: note: previous declaration of 'mvpp2_cls_flow_get' was here
struct mvpp2_cls_flow *mvpp2_cls_flow_get(int flow);
^~~~~~~~~~~~~~~~~~
# https://github.com/0day-ci/linux/commit/0a0aa09b1f053ab79e9e87ca21ce51f14764ce70
git remote add linux-review https://github.com/0day-ci/linux
git remote update linux-review
git checkout 0a0aa09b1f053ab79e9e87ca21ce51f14764ce70
vim +/mvpp2_cls_flow_get +575 drivers/net//ethernet/marvell/mvpp2/mvpp2_cls.c
b1a962c6 Maxime Chevallier 2018-07-12 574
9cee8c43 kbuild test robot 2018-07-14 @575 static struct mvpp2_cls_flow *mvpp2_cls_flow_get(int flow)
f9358e12 Maxime Chevallier 2018-07-12 576 {
f9358e12 Maxime Chevallier 2018-07-12 577 if (flow >= MVPP2_N_FLOWS)
f9358e12 Maxime Chevallier 2018-07-12 578 return NULL;
f9358e12 Maxime Chevallier 2018-07-12 579
f9358e12 Maxime Chevallier 2018-07-12 580 return &cls_flows[flow];
f9358e12 Maxime Chevallier 2018-07-12 581 }
f9358e12 Maxime Chevallier 2018-07-12 582
:::::: The code at line 575 was first introduced by commit
:::::: 9cee8c4375431d5087466eacf6f8f436210e56ea net: mvpp2: mvpp2_cls_flow_get() can be static
:::::: TO: kbuild test robot <fengguang.wu@intel.com>
:::::: CC: David S. Miller <davem@davemloft.net>
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 57634 bytes --]
next prev parent reply other threads:[~2018-07-17 1:01 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-13 16:13 [PATCH net-next 0/5] net: mvpp2: add debugfs interface Maxime Chevallier
2018-07-13 16:13 ` [PATCH net-next 1/5] net: mvpp2: switch to SPDX identifiers Maxime Chevallier
2018-07-13 16:13 ` [PATCH net-next 2/5] net: mvpp2: add a debugfs interface for the Header Parser Maxime Chevallier
2018-07-13 16:13 ` [PATCH net-next 3/5] net: mvpp2: debugfs: add hit counter stats for Header Parser entries Maxime Chevallier
2018-07-13 16:13 ` [PATCH net-next 4/5] net: mvpp2: debugfs: add entries for classifier flows Maxime Chevallier
2018-07-14 11:20 ` Maxime Chevallier
2018-07-17 1:01 ` kbuild test robot [this message]
2018-07-13 16:13 ` [PATCH net-next 5/5] net: mvpp2: debugfs: add classifier hit counters Maxime Chevallier
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=20180717010122.GC10593@intel.com \
--to=lkp@intel.com \
--cc=antoine.tenart@bootlin.com \
--cc=davem@davemloft.net \
--cc=gregory.clement@bootlin.com \
--cc=kbuild-all@01.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maxime.chevallier@bootlin.com \
--cc=miquel.raynal@bootlin.com \
--cc=mw@semihalf.com \
--cc=nadavh@marvell.com \
--cc=netdev@vger.kernel.org \
--cc=stefanc@marvell.com \
--cc=thomas.petazzoni@bootlin.com \
--cc=ymarkman@marvell.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).