Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1506156

[PATCH 3/5] fs/dcache: init in_lookup_hashtable

From Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Newsgroups linux.kernel
Subject [PATCH 3/5] fs/dcache: init in_lookup_hashtable
Date 2016-10-21 19:10 +0200
Message-ID <suLuq-ag-43@gated-at.bofh.it> (permalink)
References <suLup-ag-13@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


in_lookup_hashtable was introduced in commit 94bdd655caba ("parallel
lookups machinery, part 3") and never initialized but since it is in
the data it is all zeros. But we need this for -RT.

Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: linux-fsdevel@vger.kernel.org
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
---
 fs/dcache.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/fs/dcache.c b/fs/dcache.c
index 5c7cc953ac81..24e3d7f7b2b7 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -3601,6 +3601,11 @@ EXPORT_SYMBOL(d_genocide);
 
 void __init vfs_caches_init_early(void)
 {
+	int i;
+
+	for (i = 0; i < ARRAY_SIZE(in_lookup_hashtable); i++)
+		INIT_HLIST_BL_HEAD(&in_lookup_hashtable[i]);
+
 	dcache_init_early();
 	inode_init_early();
 }
-- 
2.9.3

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH 1/5] fs/dcache: include wait.h Sebastian Andrzej Siewior <bigeasy@linutronix.de> - 2016-10-21 19:10 +0200
  [PATCH 3/5] fs/dcache: init in_lookup_hashtable Sebastian Andrzej Siewior <bigeasy@linutronix.de> - 2016-10-21 19:10 +0200

csiph-web