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

/freebsd-11.0-release/sys/riscv/riscv/
H A Dmem.c51 ssize_t orig_resid; local
60 orig_resid = uio->uio_resid;
119 if (uio->uio_resid != orig_resid)
/freebsd-11.0-release/sys/amd64/amd64/
H A Dmem.c82 ssize_t orig_resid; local
88 orig_resid = uio->uio_resid;
157 if (uio->uio_resid != orig_resid)
/freebsd-11.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) &&
1802 ssize_t orig_resid; local
1811 orig_resid = uio->uio_resid;
1812 KASSERT(orig_resid >= 0, ("%s: uio->uio_resid < 0", __func__));
1813 if (orig_resid == 0)
/freebsd-11.0-release/sys/ufs/ffs/
H A Dffs_vnops.c438 ssize_t orig_resid; local
475 orig_resid = uio->uio_resid;
476 KASSERT(orig_resid >= 0, ("ffs_read: uio->uio_resid < 0"));
477 if (orig_resid == 0)
631 if ((error == 0 || uio->uio_resid != orig_resid) &&
863 ssize_t orig_resid; local
875 orig_resid = uio->uio_resid;
876 KASSERT(orig_resid >= 0, ("ffs_extread: uio->uio_resid < 0"));
877 if (orig_resid == 0)
/freebsd-11.0-release/sys/fs/msdosfs/
H A Dmsdosfs_vnops.c519 ssize_t orig_resid; local
536 orig_resid = uio->uio_resid;
537 if (orig_resid == 0)
599 if (!isadir && (error == 0 || uio->uio_resid != orig_resid) &&
/freebsd-11.0-release/sys/fs/nfsclient/
H A Dnfs_clbio.c863 size_t orig_resid, local_resid; local
915 orig_resid = uio->uio_resid;
1243 uio->uio_offset -= orig_resid - uio->uio_resid;
1244 uio->uio_resid = orig_resid;
/freebsd-11.0-release/sys/kern/
H A Dsys_pipe.c1048 ssize_t orig_resid; local
1118 orig_resid = uio->uio_resid;
1177 if ((space < uio->uio_resid) && (orig_resid <= PIPE_BUF))
1302 if (uio->uio_resid != orig_resid && error == EPIPE)
H A Duipc_socket.c1503 ssize_t orig_resid = uio->uio_resid; local
1616 orig_resid = 0;
1672 orig_resid = 0;
1682 orig_resid = 0;
1923 if (orig_resid == uio->uio_resid && orig_resid &&

Completed in 95 milliseconds