[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <b0d883b82b275ffe9aa0c9e3ca7960377e78c06e.1631027711.git.zanussi@kernel.org>
Date: Tue, 7 Sep 2021 10:15:28 -0500
From: zanussi@...nel.org
To: LKML <linux-kernel@...r.kernel.org>,
linux-rt-users <linux-rt-users@...r.kernel.org>,
Steven Rostedt <rostedt@...dmis.org>,
Thomas Gleixner <tglx@...utronix.de>,
Carsten Emde <C.Emde@...dl.org>,
John Kacur <jkacur@...hat.com>,
Sebastian Andrzej Siewior <bigeasy@...utronix.de>,
Daniel Wagner <wagi@...om.org>,
Clark Williams <williams@...hat.com>,
"Luis Claudio R. Goncalves" <lgoncalv@...hat.com>,
Tom Zanussi <zanussi@...nel.org>
Cc: Gregor Beck <gbeck@...gma-technology.com>,
Gregor Beck <gregor.beck@...il.com>
Subject: [PATCH RT 2/3] fscache: fix initialisation of cookie hash table raw spinlocks
From: Gregor Beck <gbeck@...gma-technology.com>
v5.4.143-rt64-rc2 stable review patch.
If anyone has any objections, please let me know.
-----------
The original patch, 602660600bcd ("fscache: initialize cookie hash
table raw spinlocks"), subtracted 1 from the shift and so still left
some spinlocks uninitialized. This fixes that.
[zanussi: Added changelog text]
Signed-off-by: Gregor Beck <gregor.beck@...il.com>
Fixes: 602660600bcd ("fscache: initialize cookie hash table raw spinlocks")
Signed-off-by: Tom Zanussi <zanussi@...nel.org>
---
fs/fscache/cookie.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/fscache/cookie.c b/fs/fscache/cookie.c
index 5508d92e3f8f..cba2a226897f 100644
--- a/fs/fscache/cookie.c
+++ b/fs/fscache/cookie.c
@@ -963,6 +963,6 @@ void __init fscache_cookie_init(void)
{
int i;
- for (i = 0; i < (1 << fscache_cookie_hash_shift) - 1; i++)
+ for (i = 0; i < ARRAY_SIZE(fscache_cookie_hash); i++)
INIT_HLIST_BL_HEAD(&fscache_cookie_hash[i]);
}
--
2.17.1
Powered by blists - more mailing lists