Searched refs:orig_resid (Results 1 - 6 of 6) sorted by relevance

/freebsd-10.0-release/sys/fs/ext2fs/
H A Dext2_vnops.c1641 int error, orig_resid, seqcount; local
1661 orig_resid = uio->uio_resid;
1662 KASSERT(orig_resid >= 0, ("ext2_read: uio->uio_resid < 0"));
1663 if (orig_resid == 0)
1765 if ((error == 0 || uio->uio_resid != orig_resid) &&
1801 ssize_t orig_resid; local
1810 orig_resid = uio->uio_resid;
1811 KASSERT(orig_resid >= 0, ("%s: uio->uio_resid < 0", __func__));
1812 if (orig_resid == 0)
/freebsd-10.0-release/sys/ufs/ffs/
H A Dffs_vnops.c429 ssize_t orig_resid; local
466 orig_resid = uio->uio_resid;
467 KASSERT(orig_resid >= 0, ("ffs_read: uio->uio_resid < 0"));
468 if (orig_resid == 0)
622 if ((error == 0 || uio->uio_resid != orig_resid) &&
896 ssize_t orig_resid; local
908 orig_resid = uio->uio_resid;
909 KASSERT(orig_resid >= 0, ("ffs_extread: uio->uio_resid < 0"));
910 if (orig_resid == 0)
/freebsd-10.0-release/sys/fs/msdosfs/
H A Dmsdosfs_vnops.c567 ssize_t orig_resid; local
584 orig_resid = uio->uio_resid;
585 if (orig_resid == 0)
647 if (!isadir && (error == 0 || uio->uio_resid != orig_resid) &&
/freebsd-10.0-release/sys/fs/nfsclient/
H A Dnfs_clbio.c879 size_t orig_resid, local_resid; local
932 orig_resid = uio->uio_resid;
1263 uio->uio_offset -= orig_resid - uio->uio_resid;
1264 uio->uio_resid = orig_resid;
/freebsd-10.0-release/sys/kern/
H A Dsys_pipe.c1056 ssize_t orig_resid; local
1126 orig_resid = uio->uio_resid;
1185 if ((space < uio->uio_resid) && (orig_resid <= PIPE_BUF))
H A Duipc_socket.c1415 ssize_t orig_resid = uio->uio_resid; local
1528 orig_resid = 0;
1584 orig_resid = 0;
1594 orig_resid = 0;
1837 if (orig_resid == uio->uio_resid && orig_resid &&

Completed in 110 milliseconds