summaryrefslogtreecommitdiffstats
path: root/fs/dcache.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/dcache.c')
-rw-r--r--fs/dcache.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/dcache.c b/fs/dcache.c
index d4f5b52d99be..f110e9eebb58 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -103,7 +103,6 @@ EXPORT_SYMBOL(slash_name);
103 * information, yet avoid using a prime hash-size or similar. 103 * information, yet avoid using a prime hash-size or similar.
104 */ 104 */
105 105
106static unsigned int d_hash_mask __read_mostly;
107static unsigned int d_hash_shift __read_mostly; 106static unsigned int d_hash_shift __read_mostly;
108 107
109static struct hlist_bl_head *dentry_hashtable __read_mostly; 108static struct hlist_bl_head *dentry_hashtable __read_mostly;
@@ -3590,7 +3589,7 @@ static void __init dcache_init_early(void)
3590 13, 3589 13,
3591 HASH_EARLY | HASH_ZERO, 3590 HASH_EARLY | HASH_ZERO,
3592 &d_hash_shift, 3591 &d_hash_shift,
3593 &d_hash_mask, 3592 NULL,
3594 0, 3593 0,
3595 0); 3594 0);
3596 d_hash_shift = 32 - d_hash_shift; 3595 d_hash_shift = 32 - d_hash_shift;
@@ -3617,7 +3616,7 @@ static void __init dcache_init(void)
3617 13, 3616 13,
3618 HASH_ZERO, 3617 HASH_ZERO,
3619 &d_hash_shift, 3618 &d_hash_shift,
3620 &d_hash_mask, 3619 NULL,
3621 0, 3620 0,
3622 0); 3621 0);
3623 d_hash_shift = 32 - d_hash_shift; 3622 d_hash_shift = 32 - d_hash_shift;