netfilter: nf_tables: Drop pointless memset when dumping rules
[ Upstream commit 30fa41a0f6df4c85790cc6499ddc4a926a113bfa ]
None of the dump callbacks uses netlink_callback::args beyond the first
element, no need to zero the data.
Fixes: 96518518cc ("netfilter: add nftables")
Signed-off-by: Phil Sutter <phil@nwl.cc>
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
100a75d56b
commit
9709c6d759
1 changed files with 0 additions and 4 deletions
|
|
@ -3279,10 +3279,6 @@ static int __nf_tables_dump_rules(struct sk_buff *skb,
|
||||||
goto cont_skip;
|
goto cont_skip;
|
||||||
if (*idx < s_idx)
|
if (*idx < s_idx)
|
||||||
goto cont;
|
goto cont;
|
||||||
if (*idx > s_idx) {
|
|
||||||
memset(&cb->args[1], 0,
|
|
||||||
sizeof(cb->args) - sizeof(cb->args[0]));
|
|
||||||
}
|
|
||||||
if (prule)
|
if (prule)
|
||||||
handle = prule->handle;
|
handle = prule->handle;
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue