[BACK]Return to ufs_vnops.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / ufs / ufs

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/ufs/ufs/ufs_vnops.c between version 1.138 and 1.138.2.1

version 1.138, 2005/12/11 12:25:28 version 1.138.2.1, 2005/12/31 12:37:20
Line 1597  ufs_readdir(void *v)
Line 1597  ufs_readdir(void *v)
         auio.uio_iovcnt = 1;          auio.uio_iovcnt = 1;
         auio.uio_offset = uio->uio_offset;          auio.uio_offset = uio->uio_offset;
         auio.uio_resid = rcount;          auio.uio_resid = rcount;
         auio.uio_segflg = UIO_SYSSPACE;          UIO_SETUP_SYSSPACE(&auio);
         auio.uio_rw = UIO_READ;          auio.uio_rw = UIO_READ;
         cdbuf = malloc(rcount, M_TEMP, M_WAITOK);          cdbuf = malloc(rcount, M_TEMP, M_WAITOK);
         aiov.iov_base = cdbuf;          aiov.iov_base = cdbuf;

Legend:
Removed from v.1.138  
changed lines
  Added in v.1.138.2.1

CVSweb <webmaster@jp.NetBSD.org>