aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/net/netfilter/nft_hash.c
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2022-10-14 23:45:58 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2022-11-15 10:46:34 +0100
commit7d34aa3e03b6a56306296bd98b26c6a1710cd57b (patch)
treeb6433794bb2069d4cbec27b49b4a730d879ca373 /net/netfilter/nft_hash.c
parentnetfilter: nft_inner: fix return value check in nft_inner_parse_l2l3() (diff)
downloadwireguard-linux-7d34aa3e03b6a56306296bd98b26c6a1710cd57b.tar.xz
wireguard-linux-7d34aa3e03b6a56306296bd98b26c6a1710cd57b.zip
netfilter: nf_tables: Extend nft_expr_ops::dump callback parameters
Add a 'reset' flag just like with nft_object_ops::dump. This will be useful to reset "anonymous stateful objects", e.g. simple rule counters. No functional change intended. Signed-off-by: Phil Sutter <phil@nwl.cc> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/netfilter/nft_hash.c')
-rw-r--r--net/netfilter/nft_hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/netfilter/nft_hash.c b/net/netfilter/nft_hash.c
index e5631e88b285..ee8d487b69c0 100644
--- a/net/netfilter/nft_hash.c
+++ b/net/netfilter/nft_hash.c
@@ -139,7 +139,7 @@ static int nft_symhash_init(const struct nft_ctx *ctx,
}
static int nft_jhash_dump(struct sk_buff *skb,
- const struct nft_expr *expr)
+ const struct nft_expr *expr, bool reset)
{
const struct nft_jhash *priv = nft_expr_priv(expr);
@@ -176,7 +176,7 @@ static bool nft_jhash_reduce(struct nft_regs_track *track,
}
static int nft_symhash_dump(struct sk_buff *skb,
- const struct nft_expr *expr)
+ const struct nft_expr *expr, bool reset)
{
const struct nft_symhash *priv = nft_expr_priv(expr);