2 * This file and its contents are supplied under the terms of the
3 * Common Development and Distribution License ("CDDL"), version 1.0.
4 * You may only use this file in accordance with the terms of version
7 * A full copy of the text of the CDDL should have accompanied this
8 * source. A copy of the CDDL is also available via the Internet at
9 * http://www.illumos.org/license/CDDL.
13 * Copyright 2015 Nexenta Systems, Inc. All rights reserved.
16 #include <sys/types.h>
17 #include <sys/sysmacros.h>
18 #include <sys/param.h>
19 #include <sys/systm.h>
21 #include <sys/errno.h>
24 * Move "n" bytes at byte address "p"; "rw" indicates the direction
25 * of the move, and the I/O parameters are provided in "uio", which is
26 * update to reflect the data which was moved. Returns 0 on success or
27 * a non-zero errno on failure.
30 uiomove(void *p
, size_t n
, enum uio_rw rw
, struct uio
*uio
)
35 while (n
&& uio
->uio_resid
) {
37 cnt
= MIN(iov
->iov_len
, n
);
43 switch (uio
->uio_segflg
) {
51 bcopy(p
, iov
->iov_base
, cnt
);
53 bcopy(iov
->iov_base
, p
, cnt
);
58 uio
->uio_resid
-= cnt
;
59 uio
->uio_loffset
+= cnt
;
67 * Drop the next n chars out of *uiop.
70 uioskip(uio_t
*uiop
, size_t n
)
72 if (n
> uiop
->uio_resid
)
75 iovec_t
*iovp
= uiop
->uio_iov
;
76 size_t niovb
= MIN(iovp
->iov_len
, n
);
83 iovp
->iov_base
+= niovb
;
84 uiop
->uio_loffset
+= niovb
;
85 iovp
->iov_len
-= niovb
;
86 uiop
->uio_resid
-= niovb
;