summaryrefslogtreecommitdiff
path: root/patches/lib-rhashtable.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/lib-rhashtable.patch')
-rw-r--r--patches/lib-rhashtable.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/patches/lib-rhashtable.patch b/patches/lib-rhashtable.patch
deleted file mode 100644
index 2e91f8d9..00000000
--- a/patches/lib-rhashtable.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-
---- a/compat/lib-rhashtable.c
-+++ b/compat/lib-rhashtable.c
-@@ -175,10 +175,11 @@ static struct bucket_table *bucket_table
- int i;
-
- size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]);
-- if (gfp != GFP_KERNEL)
-+ if (size <= (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER) ||
-+ gfp != GFP_KERNEL)
- tbl = kzalloc(size, gfp | __GFP_NOWARN | __GFP_NORETRY);
-- else
-- tbl = kvzalloc(size, gfp);
-+ if (tbl == NULL && gfp == GFP_KERNEL)
-+ tbl = vzalloc(size);
-
- size = nbuckets;
-