taglinefilesource code
nr_hash58fs/buffer.cstatic int nr_hash = 0;  /* Size of hash table */
nr_hash359fs/buffer.c#define _hashfn(dev,block) (((unsigned)(dev^block))%nr_hash)
nr_hash1685fs/buffer.cnr_hash = 16381;
nr_hash1687fs/buffer.cnr_hash = 4093;
nr_hash1690fs/buffer.cnr_hash = 997;
nr_hash1693fs/buffer.chash_table = (struct buffer_head **) vmalloc(nr_hash * 
nr_hash1702fs/buffer.cfor (i = 0 ; i < nr_hash ; i++)