summaryrefslogtreecommitdiffstats
path: root/sys/kern/sys_generic.c
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2002-07-22 15:44:27 +0000
committeralfred <alfred@FreeBSD.org>2002-07-22 15:44:27 +0000
commitbb1a616a3ff7f6a6b245073a02a2ad376055e79b (patch)
treede93524853ac33e416dc88842547b07719806930 /sys/kern/sys_generic.c
parent9c2c51a1e61030bfe633fa01ea19069f3fd0091b (diff)
downloadFreeBSD-src-bb1a616a3ff7f6a6b245073a02a2ad376055e79b.zip
FreeBSD-src-bb1a616a3ff7f6a6b245073a02a2ad376055e79b.tar.gz
remove caddr_t
Diffstat (limited to 'sys/kern/sys_generic.c')
-rw-r--r--sys/kern/sys_generic.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/sys/kern/sys_generic.c b/sys/kern/sys_generic.c
index d8fba59..595e74f 100644
--- a/sys/kern/sys_generic.c
+++ b/sys/kern/sys_generic.c
@@ -169,7 +169,7 @@ dofileread(td, fp, fd, buf, nbyte, offset, flags)
int didktr = 0;
#endif
- aiov.iov_base = (caddr_t)buf;
+ aiov.iov_base = buf;
aiov.iov_len = nbyte;
auio.uio_iov = &aiov;
auio.uio_iovcnt = 1;
@@ -260,7 +260,7 @@ readv(td, uap)
auio.uio_segflg = UIO_USERSPACE;
auio.uio_td = td;
auio.uio_offset = -1;
- if ((error = copyin((caddr_t)uap->iovp, (caddr_t)iov, iovlen)))
+ if ((error = copyin(uap->iovp, iov, iovlen)))
goto done;
auio.uio_resid = 0;
for (i = 0; i < uap->iovcnt; i++) {
@@ -277,7 +277,7 @@ readv(td, uap)
*/
if (KTRPOINT(td, KTR_GENIO)) {
MALLOC(ktriov, struct iovec *, iovlen, M_TEMP, M_WAITOK);
- bcopy((caddr_t)auio.uio_iov, (caddr_t)ktriov, iovlen);
+ bcopy(auio.uio_iov, ktriov, iovlen);
ktruio = auio;
}
#endif
@@ -494,7 +494,7 @@ writev(td, uap)
auio.uio_segflg = UIO_USERSPACE;
auio.uio_td = td;
auio.uio_offset = -1;
- if ((error = copyin((caddr_t)uap->iovp, (caddr_t)iov, iovlen)))
+ if ((error = copyin(uap->iovp, iov, iovlen)))
goto done;
auio.uio_resid = 0;
for (i = 0; i < uap->iovcnt; i++) {
@@ -511,7 +511,7 @@ writev(td, uap)
*/
if (KTRPOINT(td, KTR_GENIO)) {
MALLOC(ktriov, struct iovec *, iovlen, M_TEMP, M_WAITOK);
- bcopy((caddr_t)auio.uio_iov, (caddr_t)ktriov, iovlen);
+ bcopy(auio.uio_iov, ktriov, iovlen);
ktruio = auio;
}
#endif
@@ -620,7 +620,7 @@ ioctl(td, uap)
memp = NULL;
if (size > sizeof (ubuf.stkbuf)) {
- memp = (caddr_t)malloc((u_long)size, M_IOCTLOPS, M_WAITOK);
+ memp = malloc((u_long)size, M_IOCTLOPS, M_WAITOK);
data = memp;
} else {
data = ubuf.stkbuf;
@@ -781,8 +781,7 @@ select(td, uap)
bzero(selbits, nbufbytes / 2);
if (uap->tv) {
- error = copyin((caddr_t)uap->tv, (caddr_t)&atv,
- sizeof (atv));
+ error = copyin(uap->tv, &atv, sizeof (atv));
if (error)
goto done_nosellock;
if (itimerfix(&atv)) {
@@ -1186,7 +1185,7 @@ selwakeup(sip)
TAILQ_REMOVE(&td->td_selq, sip, si_thrlist);
sip->si_thread = NULL;
mtx_lock_spin(&sched_lock);
- if (td->td_wchan == (caddr_t)&selwait) {
+ if (td->td_wchan == &selwait) {
if (td->td_state == TDS_SLP)
setrunnable(td);
else
OpenPOWER on IntegriCloud