Commit ffb40fba authored by Florian Westphal's avatar Florian Westphal Committed by Pablo Neira Ayuso
Browse files

netfilter: nft_set_pipapo: prefer gfp_kernel allocation



No need to use GFP_ATOMIC here.

Fixes: f6c383b8 ("netfilter: nf_tables: adapt set backend to use GC transaction API")
Signed-off-by: default avatarFlorian Westphal <fw@strlen.de>
Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
parent 3d483faa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1597,7 +1597,7 @@ static void pipapo_gc(struct nft_set *set, struct nft_pipapo_match *m)
		if (nft_set_elem_expired(&e->ext)) {
			priv->dirty = true;

			gc = nft_trans_gc_queue_sync(gc, GFP_ATOMIC);
			gc = nft_trans_gc_queue_sync(gc, GFP_KERNEL);
			if (!gc)
				return;