summaryrefslogtreecommitdiff
path: root/sys/dev/rnd.c
diff options
context:
space:
mode:
authorGilles Chehade <gilles@cvs.openbsd.org>2007-10-09 17:06:19 +0000
committerGilles Chehade <gilles@cvs.openbsd.org>2007-10-09 17:06:19 +0000
commitafa372e686eb8138537c13a18e6fd0abdc8e7d70 (patch)
treeceacbfd431a914c70749fe6fa0d7444fc377004c /sys/dev/rnd.c
parentd77b3f516b36f537c0e4c5626461f1b82f01f860 (diff)
MALLOC -> malloc
ok krw@
Diffstat (limited to 'sys/dev/rnd.c')
-rw-r--r--sys/dev/rnd.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/rnd.c b/sys/dev/rnd.c
index 703c58736d4..badb616ff78 100644
--- a/sys/dev/rnd.c
+++ b/sys/dev/rnd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rnd.c,v 1.82 2007/06/17 21:22:04 jasper Exp $ */
+/* $OpenBSD: rnd.c,v 1.83 2007/10/09 17:05:19 gilles Exp $ */
/*
* rnd.c -- A strong random number generator
@@ -947,7 +947,7 @@ randomread(dev_t dev, struct uio *uio, int ioflag)
if (uio->uio_resid == 0)
return 0;
- MALLOC(buf, u_int32_t *, POOLBYTES, M_TEMP, M_WAITOK);
+ buf = malloc(POOLBYTES, M_TEMP, M_WAITOK);
while (!ret && uio->uio_resid > 0) {
int n = min(POOLBYTES, uio->uio_resid);
@@ -1013,7 +1013,7 @@ randomread(dev_t dev, struct uio *uio, int ioflag)
ret = uiomove((caddr_t)buf, n, uio);
}
- FREE(buf, M_TEMP);
+ free(buf, M_TEMP);
return ret;
}
@@ -1105,7 +1105,7 @@ randomwrite(dev_t dev, struct uio *uio, int flags)
if (uio->uio_resid == 0)
return 0;
- MALLOC(buf, u_int32_t *, POOLBYTES, M_TEMP, M_WAITOK);
+ buf = malloc(POOLBYTES, M_TEMP, M_WAITOK);
while (!ret && uio->uio_resid > 0) {
u_short n = min(POOLBYTES, uio->uio_resid);
@@ -1121,7 +1121,7 @@ randomwrite(dev_t dev, struct uio *uio, int flags)
if (minor(dev) == RND_ARND && !ret)
arc4random_initialized = 0;
- FREE(buf, M_TEMP);
+ free(buf, M_TEMP);
return ret;
}