@@ -99,7 +99,6 @@ static struct kmem_cache *dentry_cache __read_mostly;
* information, yet avoid using a prime hash-size or similar.
*/
-static unsigned int d_hash_mask __read_mostly;
static unsigned int d_hash_shift __read_mostly;
static struct hlist_bl_head *dentry_hashtable __read_mostly;
@@ -3554,7 +3553,7 @@ static void __init dcache_init_early(void)
13,
HASH_EARLY,
&d_hash_shift,
- &d_hash_mask,
+ NULL,
0,
0);
@@ -3587,7 +3586,7 @@ static void __init dcache_init(void)
13,
0,
&d_hash_shift,
- &d_hash_mask,
+ NULL,
0,
0);
Write-only variable. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> --- fs/dcache.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html