summaryrefslogtreecommitdiffstats
path: root/sys/kern/sys_generic.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern/sys_generic.c')
-rw-r--r--sys/kern/sys_generic.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/kern/sys_generic.c b/sys/kern/sys_generic.c
index c26cf47..9e3ccff 100644
--- a/sys/kern/sys_generic.c
+++ b/sys/kern/sys_generic.c
@@ -248,7 +248,7 @@ readv(td, uap)
error = EINVAL;
goto done;
}
- MALLOC(iov, struct iovec *, iovlen, M_IOV, M_WAITOK);
+ MALLOC(iov, struct iovec *, iovlen, M_IOV, 0);
needfree = iov;
} else
iov = aiov;
@@ -274,7 +274,7 @@ readv(td, uap)
* if tracing, save a copy of iovec
*/
if (KTRPOINT(td, KTR_GENIO)) {
- MALLOC(ktriov, struct iovec *, iovlen, M_TEMP, M_WAITOK);
+ MALLOC(ktriov, struct iovec *, iovlen, M_TEMP, 0);
bcopy(auio.uio_iov, ktriov, iovlen);
ktruio = auio;
}
@@ -480,7 +480,7 @@ writev(td, uap)
error = EINVAL;
goto done;
}
- MALLOC(iov, struct iovec *, iovlen, M_IOV, M_WAITOK);
+ MALLOC(iov, struct iovec *, iovlen, M_IOV, 0);
needfree = iov;
} else {
iov = aiov;
@@ -508,7 +508,7 @@ writev(td, uap)
* if tracing, save a copy of iovec and uio
*/
if (KTRPOINT(td, KTR_GENIO)) {
- MALLOC(ktriov, struct iovec *, iovlen, M_TEMP, M_WAITOK);
+ MALLOC(ktriov, struct iovec *, iovlen, M_TEMP, 0);
bcopy(auio.uio_iov, ktriov, iovlen);
ktruio = auio;
}
@@ -618,7 +618,7 @@ ioctl(td, uap)
memp = NULL;
if (size > sizeof (ubuf.stkbuf)) {
- memp = malloc((u_long)size, M_IOCTLOPS, M_WAITOK);
+ memp = malloc((u_long)size, M_IOCTLOPS, 0);
data = memp;
} else {
data = ubuf.stkbuf;
@@ -768,7 +768,7 @@ kern_select(struct thread *td, int nd, fd_set *fd_in, fd_set *fd_ou,
if (nbufbytes <= sizeof s_selbits)
selbits = &s_selbits[0];
else
- selbits = malloc(nbufbytes, M_SELECT, M_WAITOK);
+ selbits = malloc(nbufbytes, M_SELECT, 0);
/*
* Assign pointers into the bit buffers and fetch the input bits.
@@ -968,7 +968,7 @@ poll(td, uap)
}
ni = nfds * sizeof(struct pollfd);
if (ni > sizeof(smallbits))
- bits = malloc(ni, M_TEMP, M_WAITOK);
+ bits = malloc(ni, M_TEMP, 0);
else
bits = smallbits;
error = copyin(uap->fds, bits, ni);
OpenPOWER on IntegriCloud