Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a90099d9 authored by David S. Miller's avatar David S. Miller
Browse files

Revert "rhashtable: Use __vmalloc with GFP_ATOMIC for table allocation"



This reverts commit d3716f18.

vmalloc cannot be used in BH disabled contexts, even
with GFP_ATOMIC.  And we certainly want to support
rhashtable users inserting entries with software
interrupts disabled.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8e6569af
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -120,9 +120,8 @@ static struct bucket_table *bucket_table_alloc(struct rhashtable *ht,
	if (size <= (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER) ||
	    gfp != GFP_KERNEL)
		tbl = kzalloc(size, gfp | __GFP_NOWARN | __GFP_NORETRY);
	if (tbl == NULL)
		tbl = __vmalloc(size, gfp | __GFP_HIGHMEM | __GFP_ZERO,
				PAGE_KERNEL);
	if (tbl == NULL && gfp == GFP_KERNEL)
		tbl = vzalloc(size);
	if (tbl == NULL)
		return NULL;