netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Florian Westphal <fw@strlen.de>,
	netfilter-devel <netfilter-devel@vger.kernel.org>
Cc: oe-kbuild-all@lists.linux.dev, syzkaller-bugs@googlegroups.com,
	Florian Westphal <fw@strlen.de>,
	syzbot+256c348558aa5cf611a9@syzkaller.appspotmail.com,
	Pablo Neira Ayuso <pablo@netfilter.org>
Subject: Re: [PATCH nf v2] netfilter: xtables: avoid NFPROTO_UNSPEC where needed
Date: Sun, 6 Oct 2024 15:45:28 +0800	[thread overview]
Message-ID: <202410061557.72ec7vqP-lkp@intel.com> (raw)
In-Reply-To: <20241004230134.75274-1-fw@strlen.de>

Hi Florian,

kernel test robot noticed the following build errors:

[auto build test ERROR on netfilter-nf/main]

url:    https://github.com/intel-lab-lkp/linux/commits/Florian-Westphal/netfilter-xtables-avoid-NFPROTO_UNSPEC-where-needed/20241005-070222
base:   https://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git main
patch link:    https://lore.kernel.org/r/20241004230134.75274-1-fw%40strlen.de
patch subject: [PATCH nf v2] netfilter: xtables: avoid NFPROTO_UNSPEC where needed
config: sh-randconfig-r071-20241006 (https://download.01.org/0day-ci/archive/20241006/202410061557.72ec7vqP-lkp@intel.com/config)
compiler: sh4-linux-gcc (GCC) 14.1.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20241006/202410061557.72ec7vqP-lkp@intel.com/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202410061557.72ec7vqP-lkp@intel.com/

All errors (new ones prefixed by >>):

>> net/netfilter/xt_connlimit.c:145:1: error: expected ',' or ';' before '}' token
     145 | };
         | ^


vim +145 net/netfilter/xt_connlimit.c

370786f9cfd430 Jan Engelhardt   2007-07-14  119  
c43803e262643c Florian Westphal 2024-10-05  120  static struct xt_match connlimit_mt_reg[] __read_mostly = {
c43803e262643c Florian Westphal 2024-10-05  121  	{
cc4fc022571376 Jan Engelhardt   2011-01-18  122  		.name       = "connlimit",
cc4fc022571376 Jan Engelhardt   2011-01-18  123  		.revision   = 1,
c43803e262643c Florian Westphal 2024-10-05  124  		.family     = NFPROTO_IPV4,
cc4fc022571376 Jan Engelhardt   2011-01-18  125  		.checkentry = connlimit_mt_check,
cc4fc022571376 Jan Engelhardt   2011-01-18  126  		.match      = connlimit_mt,
cc4fc022571376 Jan Engelhardt   2011-01-18  127  		.matchsize  = sizeof(struct xt_connlimit_info),
ec23189049651b Willem de Bruijn 2017-01-02  128  		.usersize   = offsetof(struct xt_connlimit_info, data),
cc4fc022571376 Jan Engelhardt   2011-01-18  129  		.destroy    = connlimit_mt_destroy,
cc4fc022571376 Jan Engelhardt   2011-01-18  130  		.me         = THIS_MODULE,
c43803e262643c Florian Westphal 2024-10-05  131  	},
c43803e262643c Florian Westphal 2024-10-05  132  #if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
c43803e262643c Florian Westphal 2024-10-05  133  	{
c43803e262643c Florian Westphal 2024-10-05  134  		.name       = "connlimit",
c43803e262643c Florian Westphal 2024-10-05  135  		.revision   = 1,
c43803e262643c Florian Westphal 2024-10-05  136  		.family     = NFPROTO_IPV6,
c43803e262643c Florian Westphal 2024-10-05  137  		.checkentry = connlimit_mt_check,
c43803e262643c Florian Westphal 2024-10-05  138  		.match      = connlimit_mt,
c43803e262643c Florian Westphal 2024-10-05  139  		.matchsize  = sizeof(struct xt_connlimit_info),
c43803e262643c Florian Westphal 2024-10-05  140  		.usersize   = offsetof(struct xt_connlimit_info, data),
c43803e262643c Florian Westphal 2024-10-05  141  		.destroy    = connlimit_mt_destroy,
c43803e262643c Florian Westphal 2024-10-05  142  		.me         = THIS_MODULE,
c43803e262643c Florian Westphal 2024-10-05  143  #endif
c43803e262643c Florian Westphal 2024-10-05  144  	}
370786f9cfd430 Jan Engelhardt   2007-07-14 @145  };
370786f9cfd430 Jan Engelhardt   2007-07-14  146  

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

      reply	other threads:[~2024-10-06  7:45 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-04 23:01 [PATCH nf v2] netfilter: xtables: avoid NFPROTO_UNSPEC where needed Florian Westphal
2024-10-06  7:45 ` 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=202410061557.72ec7vqP-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=fw@strlen.de \
    --cc=netfilter-devel@vger.kernel.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=pablo@netfilter.org \
    --cc=syzbot+256c348558aa5cf611a9@syzkaller.appspotmail.com \
    --cc=syzkaller-bugs@googlegroups.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).