Searched refs:nr_hash (Results 1 - 2 of 2) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Ddquot.c1840 unsigned long nr_hash, order; local
1858 nr_hash = (1UL << order) * PAGE_SIZE / sizeof(struct hlist_head);
1862 } while (nr_hash >> dq_hash_bits);
1865 nr_hash = 1UL << dq_hash_bits;
1866 dq_hash_mask = nr_hash - 1;
1867 for (i = 0; i < nr_hash; i++)
1871 nr_hash, order, (PAGE_SIZE << order));
H A Dnamespace.c1802 unsigned int nr_hash; local
1821 nr_hash = PAGE_SIZE / sizeof(struct list_head);
1825 } while ((nr_hash >> hash_bits) != 0);
1832 nr_hash = 1UL << hash_bits;
1833 hash_mask = nr_hash - 1;
1835 printk("Mount-cache hash table entries: %d\n", nr_hash);
1839 i = nr_hash;

Completed in 59 milliseconds