vfs: fix panic in __d_lookup() with high dentry hashtable counts
When the number of dentry cache hash table entries gets too high (2147483648 entries), as happens by default on a 16TB system, use of a signed integer in the dcache_init() initialization loop prevents the dentry_hashtable from getting initialized, causing a panic in __d_lookup(). Fix this in dcache_init() and similar areas. Signed-off-by: Dimitri Sivanich <sivanich@sgi.com> Acked-by: David S. Miller <davem@davemloft.net> Cc: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
committed by
Al Viro
parent
1d6f209786
commit
074b85175a
@ -5236,6 +5236,7 @@ void *__init alloc_large_system_hash(const char *tablename,
|
||||
max = ((unsigned long long)nr_all_pages << PAGE_SHIFT) >> 4;
|
||||
do_div(max, bucketsize);
|
||||
}
|
||||
max = min(max, 0x80000000ULL);
|
||||
|
||||
if (numentries > max)
|
||||
numentries = max;
|
||||
|
Reference in New Issue
Block a user