From: kernel test robot <lkp@intel.com>
To: Jeremy Kerr <jk@codeconstruct.com.au>, netdev@vger.kernel.org
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org,
Jakub Kicinski <kuba@kernel.org>,
Matt Johnston <matt@codeconstruct.com.au>,
Andrew Jeffery <andrew@aj.id.au>
Subject: Re: [PATCH net-next 3/3] mctp: Pass flow data & flow release events to drivers
Date: Thu, 28 Oct 2021 20:20:29 +0800 [thread overview]
Message-ID: <202110282047.0yukMJA5-lkp@intel.com> (raw)
In-Reply-To: <20211028061833.2390354-3-jk@codeconstruct.com.au>
[-- Attachment #1: Type: text/plain, Size: 2522 bytes --]
Hi Jeremy,
I love your patch! Perhaps something to improve:
[auto build test WARNING on net-next/master]
url: https://github.com/0day-ci/linux/commits/Jeremy-Kerr/mctp-Return-new-key-from-mctp_alloc_local_tag/20211028-142024
base: https://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git 5a48585d7ec1d0e1e83539d56846c1e513ef66ea
config: hexagon-randconfig-r041-20211027 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 5db7568a6a1fcb408eb8988abdaff2a225a8eb72)
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/27aeac2b7b2395816e26dcd1c3f3a1da4ae89ffe
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Jeremy-Kerr/mctp-Return-new-key-from-mctp_alloc_local_tag/20211028-142024
git checkout 27aeac2b7b2395816e26dcd1c3f3a1da4ae89ffe
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 ARCH=hexagon
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 >>):
In file included from net/mctp/test/utils.c:7:
>> include/net/mctpdevice.h:36:14: warning: declaration of 'struct mctp_sk_key' will not be visible outside of this function [-Wvisibility]
struct mctp_sk_key *key);
^
include/net/mctpdevice.h:51:52: warning: declaration of 'struct mctp_sk_key' will not be visible outside of this function [-Wvisibility]
void mctp_dev_set_key(struct mctp_dev *dev, struct mctp_sk_key *key);
^
include/net/mctpdevice.h:52:56: warning: declaration of 'struct mctp_sk_key' will not be visible outside of this function [-Wvisibility]
void mctp_dev_release_key(struct mctp_dev *dev, struct mctp_sk_key *key);
^
3 warnings generated.
vim +36 include/net/mctpdevice.h
33
34 struct mctp_netdev_ops {
35 void (*release_flow)(struct mctp_dev *dev,
> 36 struct mctp_sk_key *key);
37 };
38
---
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: 27335 bytes --]
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 3/3] mctp: Pass flow data & flow release events to drivers
Date: Thu, 28 Oct 2021 20:20:29 +0800 [thread overview]
Message-ID: <202110282047.0yukMJA5-lkp@intel.com> (raw)
In-Reply-To: <20211028061833.2390354-3-jk@codeconstruct.com.au>
[-- Attachment #1: Type: text/plain, Size: 2574 bytes --]
Hi Jeremy,
I love your patch! Perhaps something to improve:
[auto build test WARNING on net-next/master]
url: https://github.com/0day-ci/linux/commits/Jeremy-Kerr/mctp-Return-new-key-from-mctp_alloc_local_tag/20211028-142024
base: https://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git 5a48585d7ec1d0e1e83539d56846c1e513ef66ea
config: hexagon-randconfig-r041-20211027 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 5db7568a6a1fcb408eb8988abdaff2a225a8eb72)
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/27aeac2b7b2395816e26dcd1c3f3a1da4ae89ffe
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Jeremy-Kerr/mctp-Return-new-key-from-mctp_alloc_local_tag/20211028-142024
git checkout 27aeac2b7b2395816e26dcd1c3f3a1da4ae89ffe
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 ARCH=hexagon
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 >>):
In file included from net/mctp/test/utils.c:7:
>> include/net/mctpdevice.h:36:14: warning: declaration of 'struct mctp_sk_key' will not be visible outside of this function [-Wvisibility]
struct mctp_sk_key *key);
^
include/net/mctpdevice.h:51:52: warning: declaration of 'struct mctp_sk_key' will not be visible outside of this function [-Wvisibility]
void mctp_dev_set_key(struct mctp_dev *dev, struct mctp_sk_key *key);
^
include/net/mctpdevice.h:52:56: warning: declaration of 'struct mctp_sk_key' will not be visible outside of this function [-Wvisibility]
void mctp_dev_release_key(struct mctp_dev *dev, struct mctp_sk_key *key);
^
3 warnings generated.
vim +36 include/net/mctpdevice.h
33
34 struct mctp_netdev_ops {
35 void (*release_flow)(struct mctp_dev *dev,
> 36 struct mctp_sk_key *key);
37 };
38
---
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: 27335 bytes --]
next prev parent reply other threads:[~2021-10-28 12:26 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-28 6:18 [PATCH net-next 1/3] mctp: Return new key from mctp_alloc_local_tag Jeremy Kerr
2021-10-28 6:18 ` [PATCH net-next 2/3] mctp: Add flow extension to skb Jeremy Kerr
2021-10-28 12:02 ` kernel test robot
2021-10-28 12:02 ` kernel test robot
2021-10-28 13:09 ` kernel test robot
2021-10-28 13:09 ` kernel test robot
2021-10-28 6:18 ` [PATCH net-next 3/3] mctp: Pass flow data & flow release events to drivers Jeremy Kerr
2021-10-28 12:20 ` kernel test robot [this message]
2021-10-28 12:20 ` 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=202110282047.0yukMJA5-lkp@intel.com \
--to=lkp@intel.com \
--cc=andrew@aj.id.au \
--cc=jk@codeconstruct.com.au \
--cc=kbuild-all@lists.01.org \
--cc=kuba@kernel.org \
--cc=llvm@lists.linux.dev \
--cc=matt@codeconstruct.com.au \
--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.