Searched refs:inohsz (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/mdb/common/modules/ufs/
H A Dufs.c48 int inohsz; local
58 if (mdb_readvar(&inohsz, "inohsz") == -1) {
59 mdb_warn("failed to read 'inohsz'");
63 if (inohsz == 0)
77 iw->iw_inohsz = inohsz;
135 int inohsz; local
160 * INOHASH needs inohsz.
162 if (mdb_readvar(&inohsz, "inohsz")
[all...]
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_inode.c108 int inohsz; /* number of buckets in the hash table */ variable
306 inohsz = 1 << highbit(ufs_ninode / ino_hashlen);
307 ihead = kmem_zalloc(inohsz * sizeof (union ihead), KM_SLEEP);
308 ih_lock = kmem_zalloc(inohsz * sizeof (kmutex_t), KM_SLEEP);
310 for (i = 0, ih = ihead; i < inohsz; i++, ih++) {
1652 for (i = 0, ih = ihead; i < inohsz; i++, ih++) {
H A Dufs_vfsops.c1511 for (i = 0, ih = ihead; i < inohsz; i++, ih++) {
1562 for (i = 0, ih = ihead; i < inohsz; i++, ih++) {
2185 for (i = 0, ih = ihead; i < inohsz; i++, ih++) {
H A Dufs_subr.c841 for (i = 0, ih = ihead; i < inohsz; i++, ih++) {
/illumos-gate/usr/src/uts/common/sys/fs/
H A Dufs_inode.h807 /* inohsz is guaranteed to be a power of 2 */
808 #define INOHASH(ino) (((int)ino) & (inohsz - 1))
822 extern int inohsz;

Completed in 72 milliseconds