From: kernel test robot <lkp@intel.com>
To: Pablo Neira Ayuso <pablo@netfilter.org>, netfilter-devel@vger.kernel.org
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org, edg-e@nccgroup.com
Subject: Re: [PATCH nf] netfilter: nf_tables: disallow non-stateful expression in sets earlier
Date: Thu, 26 May 2022 21:20:36 +0800 [thread overview]
Message-ID: <202205262104.cowfvBMc-lkp@intel.com> (raw)
In-Reply-To: <20220526105952.306242-1-pablo@netfilter.org>
Hi Pablo,
I love your patch! Perhaps something to improve:
[auto build test WARNING on nf/master]
url: https://github.com/intel-lab-lkp/linux/commits/Pablo-Neira-Ayuso/netfilter-nf_tables-disallow-non-stateful-expression-in-sets-earlier/20220526-190122
base: https://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git master
config: i386-randconfig-a013 (https://download.01.org/0day-ci/archive/20220526/202205262104.cowfvBMc-lkp@intel.com/config)
compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project 6f4644d194da594562027a5d458d9fb7a20ebc39)
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/intel-lab-lkp/linux/commit/08b6b97fd372a14e82e821bb2b4c9c10c1426080
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Pablo-Neira-Ayuso/netfilter-nf_tables-disallow-non-stateful-expression-in-sets-earlier/20220526-190122
git checkout 08b6b97fd372a14e82e821bb2b4c9c10c1426080
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 SHELL=/bin/bash net/netfilter/
If you fix the issue, kindly add following tag where applicable
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
>> net/netfilter/nf_tables_api.c:5431:17: warning: variable 'err' is uninitialized when used here [-Wuninitialized]
return ERR_PTR(err);
^~~
net/netfilter/nf_tables_api.c:5413:9: note: initialize the variable 'err' to silence this warning
int err;
^
= 0
1 warning generated.
vim +/err +5431 net/netfilter/nf_tables_api.c
60319eb1ca351a Pablo Neira Ayuso 2014-04-04 5407
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5408 struct nft_expr *nft_set_elem_expr_alloc(const struct nft_ctx *ctx,
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5409 const struct nft_set *set,
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5410 const struct nlattr *attr)
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5411 {
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5412 struct nft_expr *expr;
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5413 int err;
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5414
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5415 expr = nft_expr_init(ctx, attr);
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5416 if (IS_ERR(expr))
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5417 return expr;
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5418
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5419 if (expr->ops->type->flags & NFT_EXPR_GC) {
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5420 if (set->flags & NFT_SET_TIMEOUT)
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5421 goto err_set_elem_expr;
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5422 if (!set->ops->gc_init)
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5423 goto err_set_elem_expr;
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5424 set->ops->gc_init(set);
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5425 }
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5426
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5427 return expr;
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5428
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5429 err_set_elem_expr:
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5430 nft_expr_destroy(ctx, expr);
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 @5431 return ERR_PTR(err);
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5432 }
a7fc9368040841 Pablo Neira Ayuso 2020-03-11 5433
--
0-DAY CI Kernel Test Service
https://01.org/lkp
prev parent reply other threads:[~2022-05-26 13:21 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-26 10:59 [PATCH nf] netfilter: nf_tables: disallow non-stateful expression in sets earlier Pablo Neira Ayuso
2022-05-26 13:20 ` kernel test robot [this message]
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=202205262104.cowfvBMc-lkp@intel.com \
--to=lkp@intel.com \
--cc=edg-e@nccgroup.com \
--cc=kbuild-all@lists.01.org \
--cc=llvm@lists.linux.dev \
--cc=netfilter-devel@vger.kernel.org \
--cc=pablo@netfilter.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 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).