Home
last modified time | relevance | path

Searched refs:NFS_DIRBLKSIZ (Results 1 – 5 of 5) sorted by relevance

/dragonfly/sys/vfs/nfs/
H A Dnfs_bio.c290 lbn = (uoff_t)uio->uio_offset / NFS_DIRBLKSIZ; in nfs_bioread()
291 boff = uio->uio_offset & (NFS_DIRBLKSIZ - 1); in nfs_bioread()
293 bp = nfs_getcacheblk(vp, loffset, NFS_DIRBLKSIZ, td); in nfs_bioread()
321 && (i * NFS_DIRBLKSIZ) >= np->n_direofoffset) in nfs_bioread()
323 bp = nfs_getcacheblk(vp, (off_t)i * NFS_DIRBLKSIZ, in nfs_bioread()
324 NFS_DIRBLKSIZ, td); in nfs_bioread()
367 loffset + NFS_DIRBLKSIZ < np->n_direofoffset) && in nfs_bioread()
370 rabp = nfs_getcacheblk(vp, loffset + NFS_DIRBLKSIZ, in nfs_bioread()
371 NFS_DIRBLKSIZ, td); in nfs_bioread()
396 if ((size_t)boff > NFS_DIRBLKSIZ - bp->b_resid) { in nfs_bioread()
[all …]
H A Dnfs_vfsops.c519 if (pref < nmp->nm_readdirsize && pref >= NFS_DIRBLKSIZ) in nfs_fsinfo()
520 nmp->nm_readdirsize = roundup2(pref, NFS_DIRBLKSIZ); in nfs_fsinfo()
522 nmp->nm_readdirsize = rounddown2(max, NFS_DIRBLKSIZ); in nfs_fsinfo()
H A Dnfs.h92 #define NFS_DIRBLKSIZ 4096 /* Must be a multiple of DIRBLKSIZ */ macro
H A Dnfs_subs.c1341 pos = (uoff_t)off / NFS_DIRBLKSIZ; in nfs_getcookie()
H A Dnfs_vnops.c451 bp = kmalloc(NFS_DIRBLKSIZ, M_TEMP, M_WAITOK); in nfs_access()
453 aiov.iov_len = auio.uio_resid = NFS_DIRBLKSIZ; in nfs_access()