All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Yi-Hung Wei <yihung.wei@gmail.com>
Cc: kbuild-all@01.org, netdev@vger.kernel.org,
	Yi-Hung Wei <yihung.wei@gmail.com>,
	Pablo Neira Ayuso <pablo@netfilter.org>
Subject: Re: [PATCH 1/2] netfilter: Export nf_ct_{set,destroy}_timeout()
Date: Sun, 24 Mar 2019 00:24:37 +0800	[thread overview]
Message-ID: <201903240059.zAgBzYvV%lkp@intel.com> (raw)
In-Reply-To: <1553276009-39311-1-git-send-email-yihung.wei@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 1516 bytes --]

Hi Yi-Hung,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on nf-next/master]
[also build test ERROR on v5.1-rc1 next-20190322]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]

url:    https://github.com/0day-ci/linux/commits/Yi-Hung-Wei/netfilter-Export-nf_ct_-set-destroy-_timeout/20190323-195349
base:   https://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git master
config: x86_64-randconfig-b0-03232323 (attached as .config)
compiler: gcc-7 (Debian 7.3.0-1) 7.3.0
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

   net/netfilter/xt_CT.o: In function `xt_ct_tg_destroy':
>> net/netfilter/xt_CT.c:283: undefined reference to `nf_ct_destroy_timeout'

vim +283 net/netfilter/xt_CT.c

   269	
   270	static void xt_ct_tg_destroy(const struct xt_tgdtor_param *par,
   271				     struct xt_ct_target_info_v1 *info)
   272	{
   273		struct nf_conn *ct = info->ct;
   274		struct nf_conn_help *help;
   275	
   276		if (ct) {
   277			help = nfct_help(ct);
   278			if (help)
   279				nf_conntrack_helper_put(help->helper);
   280	
   281			nf_ct_netns_put(par->net, par->family);
   282	
 > 283			nf_ct_destroy_timeout(ct);
   284			nf_ct_put(info->ct);
   285		}
   286	}
   287	

---
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: 29039 bytes --]

      parent reply	other threads:[~2019-03-23 16:24 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-03-22 17:33 [PATCH 1/2] netfilter: Export nf_ct_{set,destroy}_timeout() Yi-Hung Wei
2019-03-22 17:33 ` [PATCH 2/2] openvswitch: Add timeout support to ct action Yi-Hung Wei
2019-03-23 13:58   ` kbuild test robot
2019-03-23 14:59 ` [PATCH 1/2] netfilter: Export nf_ct_{set,destroy}_timeout() kbuild test robot
2019-03-23 16:24 ` kbuild 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=201903240059.zAgBzYvV%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@01.org \
    --cc=netdev@vger.kernel.org \
    --cc=pablo@netfilter.org \
    --cc=yihung.wei@gmail.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 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.