diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2021-09-26 09:59:35 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2021-10-02 12:00:17 +0200 |
commit | 6fb721cf781808ee2ca5e737fb0592cc68de3381 (patch) | |
tree | 403bbee246f1912e021082e8df3a730287db83e5 /include/net | |
parent | netfilter: nf_tables: reverse order in rule replacement expansion (diff) | |
download | linux-6fb721cf781808ee2ca5e737fb0592cc68de3381.tar.xz linux-6fb721cf781808ee2ca5e737fb0592cc68de3381.zip |
netfilter: nf_tables: honor NLM_F_CREATE and NLM_F_EXCL in event notification
Include the NLM_F_CREATE and NLM_F_EXCL flags in netlink event
notifications, otherwise userspace cannot distiguish between create and
add commands.
Fixes: 96518518cc41 ("netfilter: add nftables")
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/netfilter/nf_tables.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/netfilter/nf_tables.h b/include/net/netfilter/nf_tables.h index 148f5d8ee5ab..a16171c5fd9e 100644 --- a/include/net/netfilter/nf_tables.h +++ b/include/net/netfilter/nf_tables.h @@ -1202,7 +1202,7 @@ struct nft_object *nft_obj_lookup(const struct net *net, void nft_obj_notify(struct net *net, const struct nft_table *table, struct nft_object *obj, u32 portid, u32 seq, - int event, int family, int report, gfp_t gfp); + int event, u16 flags, int family, int report, gfp_t gfp); /** * struct nft_object_type - stateful object type |