From: kernel test robot <lkp@intel.com>
To: Florian Westphal <fw@strlen.de>, netfilter-devel@vger.kernel.org
Cc: oe-kbuild-all@lists.linux.dev, Florian Westphal <fw@strlen.de>,
Nadia Pinaeva <n.m.pinaeva@gmail.com>,
Pablo Neira Ayuso <pablo@netfilter.org>
Subject: Re: [PATCH nf-next] netfilter: conntrack: add conntrack event timestamp
Date: Fri, 8 Nov 2024 09:33:15 +0800 [thread overview]
Message-ID: <202411080914.UxWFvWGn-lkp@intel.com> (raw)
In-Reply-To: <20241107194117.32116-1-fw@strlen.de>
Hi Florian,
kernel test robot noticed the following build errors:
[auto build test ERROR on netfilter-nf/main]
[also build test ERROR on linus/master v6.12-rc6 next-20241107]
[cannot apply to nf-next/master horms-ipvs/master]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Florian-Westphal/netfilter-conntrack-add-conntrack-event-timestamp/20241108-034444
base: https://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git main
patch link: https://lore.kernel.org/r/20241107194117.32116-1-fw%40strlen.de
patch subject: [PATCH nf-next] netfilter: conntrack: add conntrack event timestamp
config: openrisc-allyesconfig (https://download.01.org/0day-ci/archive/20241108/202411080914.UxWFvWGn-lkp@intel.com/config)
compiler: or1k-linux-gcc (GCC) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20241108/202411080914.UxWFvWGn-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/202411080914.UxWFvWGn-lkp@intel.com/
All errors (new ones prefixed by >>):
In file included from include/net/netfilter/nf_conntrack_core.h:18,
from net/bridge/br_netfilter_hooks.c:49:
>> include/net/netfilter/nf_conntrack_ecache.h:24:9: error: unknown type name 'local64_t'; did you mean 'local_t'?
24 | local64_t timestamp; /* event timestamp, in nanoseconds */
| ^~~~~~~~~
| local_t
include/net/netfilter/nf_conntrack_ecache.h: In function 'nf_conntrack_event_cache':
>> include/net/netfilter/nf_conntrack_ecache.h:118:13: error: implicit declaration of function 'local64_read'; did you mean 'local_read'? [-Wimplicit-function-declaration]
118 | if (local64_read(&e->timestamp) && READ_ONCE(e->cache) == 0)
| ^~~~~~~~~~~~
| local_read
>> include/net/netfilter/nf_conntrack_ecache.h:119:17: error: implicit declaration of function 'local64_set'; did you mean 'local_set'? [-Wimplicit-function-declaration]
119 | local64_set(&e->timestamp, ktime_get_real_ns());
| ^~~~~~~~~~~
| local_set
Kconfig warnings: (for reference only)
WARNING: unmet direct dependencies detected for GET_FREE_REGION
Depends on [n]: SPARSEMEM [=n]
Selected by [y]:
- RESOURCE_KUNIT_TEST [=y] && RUNTIME_TESTING_MENU [=y] && KUNIT [=y]
vim +24 include/net/netfilter/nf_conntrack_ecache.h
20
21 struct nf_conntrack_ecache {
22 unsigned long cache; /* bitops want long */
23 #ifdef CONFIG_NF_CONNTRACK_TIMESTAMP
> 24 local64_t timestamp; /* event timestamp, in nanoseconds */
25 #endif
26 u16 ctmask; /* bitmask of ct events to be delivered */
27 u16 expmask; /* bitmask of expect events to be delivered */
28 u32 missed; /* missed events */
29 u32 portid; /* netlink portid of destroyer */
30 };
31
32 static inline struct nf_conntrack_ecache *
33 nf_ct_ecache_find(const struct nf_conn *ct)
34 {
35 #ifdef CONFIG_NF_CONNTRACK_EVENTS
36 return nf_ct_ext_find(ct, NF_CT_EXT_ECACHE);
37 #else
38 return NULL;
39 #endif
40 }
41
42 static inline bool nf_ct_ecache_exist(const struct nf_conn *ct)
43 {
44 #ifdef CONFIG_NF_CONNTRACK_EVENTS
45 return nf_ct_ext_exist(ct, NF_CT_EXT_ECACHE);
46 #else
47 return false;
48 #endif
49 }
50
51 #ifdef CONFIG_NF_CONNTRACK_EVENTS
52
53 /* This structure is passed to event handler */
54 struct nf_ct_event {
55 struct nf_conn *ct;
56 u32 portid;
57 int report;
58 };
59
60 struct nf_exp_event {
61 struct nf_conntrack_expect *exp;
62 u32 portid;
63 int report;
64 };
65
66 struct nf_ct_event_notifier {
67 int (*ct_event)(unsigned int events, const struct nf_ct_event *item);
68 int (*exp_event)(unsigned int events, const struct nf_exp_event *item);
69 };
70
71 void nf_conntrack_register_notifier(struct net *net,
72 const struct nf_ct_event_notifier *nb);
73 void nf_conntrack_unregister_notifier(struct net *net);
74
75 void nf_ct_deliver_cached_events(struct nf_conn *ct);
76 int nf_conntrack_eventmask_report(unsigned int eventmask, struct nf_conn *ct,
77 u32 portid, int report);
78
79 bool nf_ct_ecache_ext_add(struct nf_conn *ct, u16 ctmask, u16 expmask, gfp_t gfp);
80 #else
81
82 static inline void nf_ct_deliver_cached_events(const struct nf_conn *ct)
83 {
84 }
85
86 static inline int nf_conntrack_eventmask_report(unsigned int eventmask,
87 struct nf_conn *ct,
88 u32 portid,
89 int report)
90 {
91 return 0;
92 }
93
94 static inline bool nf_ct_ecache_ext_add(struct nf_conn *ct, u16 ctmask, u16 expmask, gfp_t gfp)
95 {
96 return false;
97 }
98 #endif
99
100 static inline void
101 nf_conntrack_event_cache(enum ip_conntrack_events event, struct nf_conn *ct)
102 {
103 #ifdef CONFIG_NF_CONNTRACK_EVENTS
104 struct net *net = nf_ct_net(ct);
105 struct nf_conntrack_ecache *e;
106
107 if (!rcu_access_pointer(net->ct.nf_conntrack_event_cb))
108 return;
109
110 e = nf_ct_ecache_find(ct);
111 if (e == NULL)
112 return;
113
114 #ifdef CONFIG_NF_CONNTRACK_TIMESTAMP
115 /* renew only if this is the first cached event, so that the
116 * timestamp reflects the first, not the last, generated event.
117 */
> 118 if (local64_read(&e->timestamp) && READ_ONCE(e->cache) == 0)
> 119 local64_set(&e->timestamp, ktime_get_real_ns());
120 #endif
121
122 set_bit(event, &e->cache);
123 #endif
124 }
125
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2024-11-08 1:33 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-07 19:41 [PATCH nf-next] netfilter: conntrack: add conntrack event timestamp Florian Westphal
2024-11-08 0:09 ` kernel test robot
2024-11-08 1:33 ` kernel test robot [this message]
2024-11-08 6:34 ` kernel test robot
2024-11-12 18:25 ` Florian Westphal
-- strict thread matches above, loose matches on Subject: below --
2024-11-15 13:46 Florian Westphal
2025-01-07 15:53 ` Florian Westphal
2025-01-08 23:48 ` Pablo Neira Ayuso
2025-01-09 0:31 ` Florian Westphal
2025-01-09 10:25 ` Antonio Ojea
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=202411080914.UxWFvWGn-lkp@intel.com \
--to=lkp@intel.com \
--cc=fw@strlen.de \
--cc=n.m.pinaeva@gmail.com \
--cc=netfilter-devel@vger.kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--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