--- 2.3.18ac7/fs/inode.c Tue Sep 14 14:35:13 1999 +++ /tmp/inode.c Wed Sep 22 00:31:32 1999 @@ -28,7 +28,7 @@ * Inode lookup is no longer as critical as it used to be: * most of the lookups are going to be through the dcache. */ -#define HASH_BITS 8 +#define HASH_BITS 14 #define HASH_SIZE (1UL << HASH_BITS) #define HASH_MASK (HASH_SIZE-1) --- 2.3.18ac7/fs/dcache.c Tue Sep 14 14:35:13 1999 +++ /tmp/dcache.c Wed Sep 22 00:31:47 1999 @@ -42,7 +42,7 @@ * This hash-function tries to avoid losing too many bits of hash * information, yet avoid using a prime hash-size or similar. */ -#define D_HASHBITS 10 +#define D_HASHBITS 14 #define D_HASHSIZE (1UL << D_HASHBITS) #define D_HASHMASK (D_HASHSIZE-1)