Searched refs:m_ihsize (Results 1 - 4 of 4) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/
H A Dxfs_iget.c55 if (!mp->m_ihsize) {
58 mp->m_ihsize = 1 << max_t(uint, 8,
60 mp->m_ihsize = min_t(uint, mp->m_ihsize,
64 mp->m_ihash = kmem_zalloc_greedy(&mp->m_ihsize,
66 mp->m_ihsize * sizeof(xfs_ihash_t),
68 mp->m_ihsize /= sizeof(xfs_ihash_t);
69 for (i = 0; i < mp->m_ihsize; i++)
79 kmem_free(mp->m_ihash, mp->m_ihsize * sizeof(xfs_ihash_t));
92 mp->m_chsize = max_t(uint, 1, mp->m_ihsize /
[all...]
H A Dxfs_inode.h183 #define XFS_IHASH(mp,ino) ((mp)->m_ihash + (((uint)(ino)) % (mp)->m_ihsize))
H A Dxfs_mount.h337 size_t m_ihsize; /* size of next field */ member in struct:xfs_mount
H A Dxfs_vfsops.c245 mp->m_ihsize = ap->ihashsize;
1925 seq_printf(m, "," MNTOPT_IHASHSIZE "=%d", (int)mp->m_ihsize);

Completed in 90 milliseconds