diff options
| author | David S. Miller <davem@davemloft.net> | 2023-05-03 10:55:12 +0300 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2023-05-03 10:55:12 +0300 |
| commit | 9e08dcef60baa3125d10077ce5e9b3b5cf28a169 (patch) | |
| tree | ee459182ca14be12b400f4998fcec4a30eedf0a3 /include | |
| parent | c6d96df9fa2c1d19525239d4262889cce594ce6c (diff) | |
| parent | c1592a89942e9678f7d9c8030efa777c0d57edab (diff) | |
| download | linux-9e08dcef60baa3125d10077ce5e9b3b5cf28a169.tar.xz | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf
Pablo Neir Ayuso says:
====================
The following patchset contains Netfilter fixes for net:
1) Hit ENOENT when trying to update an unexisting base chain.
2) Fix libmnl pkg-config usage in selftests, from Jeremy Sowden.
3) KASAN reports use-after-free when deleting a set element for an
anonymous set that was already removed in the same transaction,
reported by P. Sondej and P. Krysiuk.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
| -rw-r--r-- | include/net/netfilter/nf_tables.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/netfilter/nf_tables.h b/include/net/netfilter/nf_tables.h index 3ed21d2d5659..2e24ea1d744c 100644 --- a/include/net/netfilter/nf_tables.h +++ b/include/net/netfilter/nf_tables.h @@ -619,6 +619,7 @@ struct nft_set_binding { }; enum nft_trans_phase; +void nf_tables_activate_set(const struct nft_ctx *ctx, struct nft_set *set); void nf_tables_deactivate_set(const struct nft_ctx *ctx, struct nft_set *set, struct nft_set_binding *binding, enum nft_trans_phase phase); |
