HomeSort by: relevance | last modified time | path
    Searched defs:rawbufmax (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/ufs/lfs/
ulfs_vnops.c 800 size_t rawbufmax, rawbytes; local in function:ulfs_readdir
831 rawbufmax = callerbytes + skipstart - dropend;
834 rawbuf = kmem_alloc(rawbufmax, KM_SLEEP);
836 rawiov.iov_len = rawbufmax;
840 rawuio.uio_resid = rawbufmax;
845 kmem_free(rawbuf, rawbufmax);
848 rawbytes = rawbufmax - rawuio.uio_resid;
942 kmem_free(rawbuf, rawbufmax);
  /src/sys/ufs/ufs/
ufs_vnops.c 1593 size_t rawbufmax, rawbytes; local in function:ufs_readdir
1672 * Note: rawbufmax = physend - physstart. Proof:
1683 * = rawbufmax
1694 rawbufmax = callerbytes + skipstart;
1695 if (rawbufmax < callerbytes)
1697 rawbufmax -= dropend;
1699 if (rawbufmax < _DIRENT_MINSIZE(rawdp)) {
1705 rawbuf = kmem_alloc(rawbufmax, KM_SLEEP);
1707 rawiov.iov_len = rawbufmax;
1711 rawuio.uio_resid = rawbufmax;
    [all...]

Completed in 32 milliseconds