netfilter: nf_tables: rename function to destroy hook list
[ Upstream commitcdc3254663
] Rename nft_flowtable_hooks_destroy() by nft_hooks_destroy() to prepare for netdev chain device updates. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org> Stable-dep-of:d472e9853d
("netfilter: nf_tables: register hooks last when adding new chain/flowtable") Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
a6cafdb49a
commit
26994a04b0
|
@ -7938,7 +7938,7 @@ err_unregister_net_hooks:
|
|||
return err;
|
||||
}
|
||||
|
||||
static void nft_flowtable_hooks_destroy(struct list_head *hook_list)
|
||||
static void nft_hooks_destroy(struct list_head *hook_list)
|
||||
{
|
||||
struct nft_hook *hook, *next;
|
||||
|
||||
|
@ -8123,7 +8123,7 @@ static int nf_tables_newflowtable(struct sk_buff *skb,
|
|||
&flowtable->hook_list,
|
||||
flowtable);
|
||||
if (err < 0) {
|
||||
nft_flowtable_hooks_destroy(&flowtable->hook_list);
|
||||
nft_hooks_destroy(&flowtable->hook_list);
|
||||
goto err4;
|
||||
}
|
||||
|
||||
|
@ -8893,7 +8893,7 @@ static void nft_commit_release(struct nft_trans *trans)
|
|||
break;
|
||||
case NFT_MSG_DELFLOWTABLE:
|
||||
if (nft_trans_flowtable_update(trans))
|
||||
nft_flowtable_hooks_destroy(&nft_trans_flowtable_hooks(trans));
|
||||
nft_hooks_destroy(&nft_trans_flowtable_hooks(trans));
|
||||
else
|
||||
nf_tables_flowtable_destroy(nft_trans_flowtable(trans));
|
||||
break;
|
||||
|
@ -9850,7 +9850,7 @@ static void nf_tables_abort_release(struct nft_trans *trans)
|
|||
break;
|
||||
case NFT_MSG_NEWFLOWTABLE:
|
||||
if (nft_trans_flowtable_update(trans))
|
||||
nft_flowtable_hooks_destroy(&nft_trans_flowtable_hooks(trans));
|
||||
nft_hooks_destroy(&nft_trans_flowtable_hooks(trans));
|
||||
else
|
||||
nf_tables_flowtable_destroy(nft_trans_flowtable(trans));
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue