linux/debian/patches-rt/0172-fs-dcache-bring-back-e...

58 lines
1.7 KiB
Diff
Raw Normal View History

From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Date: Wed, 13 Sep 2017 12:32:34 +0200
2019-11-25 00:04:39 +00:00
Subject: [PATCH 172/290] fs/dcache: bring back explicit INIT_HLIST_BL_HEAD
2019-04-08 23:49:20 +00:00
init
2019-11-25 00:04:39 +00:00
Origin: https://git.kernel.org/cgit/linux/kernel/git/rt/linux-stable-rt.git/commit?id=e3be20e797ac5235e6dea292095b4965758e5fae
Commit 3d375d78593c ("mm: update callers to use HASH_ZERO flag") removed
INIT_HLIST_BL_HEAD and uses the ZERO flag instead for the init. However
on RT we have also a spinlock which needs an init call so we can't use
that.
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
---
2019-04-08 23:49:20 +00:00
fs/dcache.c | 11 +++++++++++
1 file changed, 11 insertions(+)
2019-04-08 23:49:20 +00:00
diff --git a/fs/dcache.c b/fs/dcache.c
index 6e0022326afe..10225a9135fb 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -3060,6 +3060,8 @@ __setup("dhash_entries=", set_dhash_entries);
static void __init dcache_init_early(void)
{
+ unsigned int loop;
+
/* If hashes are distributed across NUMA nodes, defer
* hash allocation until vmalloc space is available.
*/
@@ -3076,11 +3078,16 @@ static void __init dcache_init_early(void)
NULL,
0,
0);
+
+ for (loop = 0; loop < (1U << d_hash_shift); loop++)
+ INIT_HLIST_BL_HEAD(dentry_hashtable + loop);
+
d_hash_shift = 32 - d_hash_shift;
}
static void __init dcache_init(void)
{
+ unsigned int loop;
/*
* A constructor could be added for stable state like the lists,
* but it is probably not worth it because of the cache nature
@@ -3104,6 +3111,10 @@ static void __init dcache_init(void)
NULL,
0,
0);
+
+ for (loop = 0; loop < (1U << d_hash_shift); loop++)
+ INIT_HLIST_BL_HEAD(dentry_hashtable + loop);
+
d_hash_shift = 32 - d_hash_shift;
}