On Wed, Jan 24, 2018 at 05:07:22AM +0530, Harsha Sharma wrote: > Add extra bits for table, chain, sets and object handle. > > Signed-off-by: Harsha Sharma <harshasharmaiitr@xxxxxxxxx> > --- > net/netfilter/nf_tables_trace.c | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/net/netfilter/nf_tables_trace.c b/net/netfilter/nf_tables_trace.c > index e1dc527a493b..f804c3924d32 100644 > --- a/net/netfilter/nf_tables_trace.c > +++ b/net/netfilter/nf_tables_trace.c > @@ -212,7 +212,11 @@ void nft_trace_notify(struct nft_traceinfo *info) > nla_total_size(sizeof(__be16)) + /* oiftype */ > nla_total_size(sizeof(u32)) + /* mark */ > nla_total_size(sizeof(u32)) + /* nfproto */ > - nla_total_size(sizeof(u32)); /* policy */ > + nla_total_size(sizeof(u32)); + /* policy */ > + nla_total_size_64bit(sizeof(__be64)) + /* table handle */ > + nla_total_size_64bit(sizeof(__be64)) + /* chain handle */ > + nla_total_size_64bit(sizeof(__be64)) + /* set handle */ > + nla_total_size_64bit(sizeof(__be64)) /* object handle */ I think just two of this should be fine. Is nla_total_size_64bit() accounting for padding too? I would like to see the userspace patches in place too, to test this. Thanks! -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html