Home
last modified time | relevance | path

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

/NextBSD/sys/fs/nfsclient/
HDnfs_clbio.c571 lbn = (uoff_t)uio->uio_offset / NFS_DIRBLKSIZ; in ncl_bioread()
572 on = uio->uio_offset & (NFS_DIRBLKSIZ - 1); in ncl_bioread()
573 bp = nfs_getcacheblk(vp, lbn, NFS_DIRBLKSIZ, td); in ncl_bioread()
600 && (i * NFS_DIRBLKSIZ) >= np->n_direofoffset) in ncl_bioread()
602 bp = nfs_getcacheblk(vp, i, NFS_DIRBLKSIZ, td); in ncl_bioread()
645 (lbn + 1) * NFS_DIRBLKSIZ < np->n_direofoffset) && in ncl_bioread()
647 rabp = nfs_getcacheblk(vp, lbn + 1, NFS_DIRBLKSIZ, td); in ncl_bioread()
676 n = lmin(uio->uio_resid, NFS_DIRBLKSIZ - bp->b_resid - on); in ncl_bioread()
1649 uiop->uio_offset = ((u_quad_t)bp->b_lblkno) * NFS_DIRBLKSIZ; in ncl_doio()
HDnfs_clport.c1023 && fsp->fs_dtpref >= NFS_DIRBLKSIZ) in nfscl_loadfsinfo()
1024 nmp->nm_readdirsize = (fsp->fs_dtpref + NFS_DIRBLKSIZ - 1) & in nfscl_loadfsinfo()
1025 ~(NFS_DIRBLKSIZ - 1); in nfscl_loadfsinfo()
1027 nmp->nm_readdirsize = fsp->fs_rtmax & ~(NFS_DIRBLKSIZ - 1); in nfscl_loadfsinfo()
1031 if (nmp->nm_readdirsize < NFS_DIRBLKSIZ) in nfscl_loadfsinfo()
1032 nmp->nm_readdirsize = NFS_DIRBLKSIZ; in nfscl_loadfsinfo()
HDnfs_clsubs.c288 pos = (uoff_t)off / NFS_DIRBLKSIZ; in ncl_getcookie()
HDnfs_clcomsubs.c408 pos = off / NFS_DIRBLKSIZ; in nfscl_getcookie()
HDnfs_clvfsops.c224 iosize = imax(iosize, NFS_DIRBLKSIZ); in newnfs_iosize()
1435 mp->mnt_stat.f_iosize = NFS_DIRBLKSIZ; in mountnfs()
HDnfs_clvnops.c483 bp = malloc(NFS_DIRBLKSIZ, M_TEMP, M_WAITOK); in nfs_access()
485 aiov.iov_len = auio.uio_resid = NFS_DIRBLKSIZ; in nfs_access()
/NextBSD/sys/nfsclient/
HDnfs.h80 #define NFS_DIRBLKSIZ 4096 /* Must be a multiple of DIRBLKSIZ */ macro
/NextBSD/sys/fs/nfs/
HDnfsport.h879 #define NFS_DIRBLKSIZ (16 * DIRBLKSIZ) /* Must be a multiple of DIRBLKSIZ */ macro