From: kernel test robot <lkp@intel.com>
To: Leonard Crestez <cdleonard@gmail.com>,
David Ahern <dsahern@kernel.org>,
Eric Dumazet <edumazet@google.com>,
Philip Paeps <philip@trouble.is>,
Dmitry Safonov <0x7f454c46@gmail.com>
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org,
Shuah Khan <skhan@linuxfoundation.org>,
Herbert Xu <herbert@gondor.apana.org.au>,
Kuniyuki Iwashima <kuniyu@amazon.co.jp>,
Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>,
Jakub Kicinski <kuba@kernel.org>,
Yuchung Cheng <ycheng@google.com>
Subject: Re: [PATCH v4 16/19] tcp: authopt: Add /proc/net/tcp_authopt listing all keys
Date: Sun, 26 Dec 2021 05:04:16 +0800 [thread overview]
Message-ID: <202112260500.dMAhM2XB-lkp@intel.com> (raw)
In-Reply-To: <80510f065b3b17d36626962cd7c7719036a6f9e1.1640273966.git.cdleonard@gmail.com>
Hi Leonard,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on f4f2970dfd87e5132c436e6125148914596a9863]
url: https://github.com/0day-ci/linux/commits/Leonard-Crestez/tcp-Initial-support-for-RFC5925-auth-option/20211223-234349
base: f4f2970dfd87e5132c436e6125148914596a9863
config: riscv-randconfig-c006-20211226 (https://download.01.org/0day-ci/archive/20211226/202112260500.dMAhM2XB-lkp@intel.com/config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project a9e8b1ee7fd44b53c555a7823ae8fd1a8209c520)
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 riscv cross compiling tool for clang build
# apt-get install binutils-riscv64-linux-gnu
# https://github.com/0day-ci/linux/commit/78eca32fd5749f14aa4db0d123364a310f70392b
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Leonard-Crestez/tcp-Initial-support-for-RFC5925-auth-option/20211223-234349
git checkout 78eca32fd5749f14aa4db0d123364a310f70392b
# 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=riscv SHELL=/bin/bash drivers/iio/accel/ net/ipv4/
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 >>):
>> net/ipv4/tcp_authopt.c:1742:36: warning: unused variable 'tcp_authopt_seq_ops' [-Wunused-const-variable]
static const struct seq_operations tcp_authopt_seq_ops = {
^
1 warning generated.
vim +/tcp_authopt_seq_ops +1742 net/ipv4/tcp_authopt.c
1741
> 1742 static const struct seq_operations tcp_authopt_seq_ops = {
1743 .start = tcp_authopt_seq_start,
1744 .next = tcp_authopt_seq_next,
1745 .stop = tcp_authopt_seq_stop,
1746 .show = tcp_authopt_seq_show,
1747 };
1748
---
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 v4 16/19] tcp: authopt: Add /proc/net/tcp_authopt listing all keys
Date: Sun, 26 Dec 2021 05:04:16 +0800 [thread overview]
Message-ID: <202112260500.dMAhM2XB-lkp@intel.com> (raw)
In-Reply-To: <80510f065b3b17d36626962cd7c7719036a6f9e1.1640273966.git.cdleonard@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2256 bytes --]
Hi Leonard,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on f4f2970dfd87e5132c436e6125148914596a9863]
url: https://github.com/0day-ci/linux/commits/Leonard-Crestez/tcp-Initial-support-for-RFC5925-auth-option/20211223-234349
base: f4f2970dfd87e5132c436e6125148914596a9863
config: riscv-randconfig-c006-20211226 (https://download.01.org/0day-ci/archive/20211226/202112260500.dMAhM2XB-lkp(a)intel.com/config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project a9e8b1ee7fd44b53c555a7823ae8fd1a8209c520)
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 riscv cross compiling tool for clang build
# apt-get install binutils-riscv64-linux-gnu
# https://github.com/0day-ci/linux/commit/78eca32fd5749f14aa4db0d123364a310f70392b
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Leonard-Crestez/tcp-Initial-support-for-RFC5925-auth-option/20211223-234349
git checkout 78eca32fd5749f14aa4db0d123364a310f70392b
# 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=riscv SHELL=/bin/bash drivers/iio/accel/ net/ipv4/
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 >>):
>> net/ipv4/tcp_authopt.c:1742:36: warning: unused variable 'tcp_authopt_seq_ops' [-Wunused-const-variable]
static const struct seq_operations tcp_authopt_seq_ops = {
^
1 warning generated.
vim +/tcp_authopt_seq_ops +1742 net/ipv4/tcp_authopt.c
1741
> 1742 static const struct seq_operations tcp_authopt_seq_ops = {
1743 .start = tcp_authopt_seq_start,
1744 .next = tcp_authopt_seq_next,
1745 .stop = tcp_authopt_seq_stop,
1746 .show = tcp_authopt_seq_show,
1747 };
1748
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
next prev parent reply other threads:[~2021-12-25 21:04 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-12-23 15:39 [PATCH v4 00/19] tcp: Initial support for RFC5925 auth option Leonard Crestez
2021-12-23 15:39 ` [PATCH v4 01/19] tcp: authopt: Initial support and key management Leonard Crestez
2021-12-23 15:39 ` [PATCH v4 02/19] docs: Add user documentation for tcp_authopt Leonard Crestez
2021-12-23 15:39 ` [PATCH v4 03/19] tcp: authopt: Add crypto initialization Leonard Crestez
2021-12-23 15:39 ` [PATCH v4 04/19] tcp: md5: Refactor tcp_sig_hash_skb_data for AO Leonard Crestez
2021-12-23 15:40 ` [PATCH v4 05/19] tcp: authopt: Compute packet signatures Leonard Crestez
2021-12-28 7:33 ` kernel test robot
2021-12-23 15:40 ` [PATCH v4 06/19] tcp: authopt: Hook into tcp core Leonard Crestez
2021-12-23 15:40 ` [PATCH v4 07/19] tcp: authopt: Disable via sysctl by default Leonard Crestez
2021-12-23 15:40 ` [PATCH v4 08/19] tcp: authopt: Implement Sequence Number Extension Leonard Crestez
2021-12-23 15:40 ` [PATCH v4 09/19] tcp: ipv6: Add AO signing for tcp_v6_send_response Leonard Crestez
2021-12-23 15:40 ` [PATCH v4 10/19] tcp: authopt: Add support for signing skb-less replies Leonard Crestez
2021-12-23 15:40 ` [PATCH v4 11/19] tcp: ipv4: Add AO signing for " Leonard Crestez
2021-12-23 15:40 ` [PATCH v4 12/19] tcp: authopt: Add key selection controls Leonard Crestez
2021-12-23 15:40 ` [PATCH v4 13/19] tcp: authopt: Add initial l3index support Leonard Crestez
2021-12-23 15:40 ` [PATCH v4 14/19] tcp: authopt: Add NOSEND/NORECV flags Leonard Crestez
2021-12-23 15:40 ` [PATCH v4 15/19] tcp: authopt: Add prefixlen support Leonard Crestez
2021-12-23 15:40 ` [PATCH v4 16/19] tcp: authopt: Add /proc/net/tcp_authopt listing all keys Leonard Crestez
2021-12-25 21:04 ` kernel test robot [this message]
2021-12-25 21:04 ` kernel test robot
2021-12-23 15:40 ` [PATCH v4 17/19] selftests: nettest: Rename md5_prefix to key_addr_prefix Leonard Crestez
2021-12-23 15:40 ` [PATCH v4 18/19] selftests: nettest: Initial tcp_authopt support Leonard Crestez
2021-12-23 15:40 ` [PATCH v4 19/19] selftests: net/fcnal: " Leonard Crestez
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=202112260500.dMAhM2XB-lkp@intel.com \
--to=lkp@intel.com \
--cc=0x7f454c46@gmail.com \
--cc=cdleonard@gmail.com \
--cc=dsahern@kernel.org \
--cc=edumazet@google.com \
--cc=herbert@gondor.apana.org.au \
--cc=kbuild-all@lists.01.org \
--cc=kuba@kernel.org \
--cc=kuniyu@amazon.co.jp \
--cc=llvm@lists.linux.dev \
--cc=philip@trouble.is \
--cc=skhan@linuxfoundation.org \
--cc=ycheng@google.com \
--cc=yoshfuji@linux-ipv6.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.