diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2007-09-22 16:21:33 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2007-09-22 16:21:33 +0000 |
commit | a64a0fba9e2c0404ddfd4287f37f5c0a1be565e2 (patch) | |
tree | f3d5836b8f295070afdf605e7148ff3afecad398 /sys/arch/alpha | |
parent | ff4c44726bfd6e9c1fe5b09d86ca20e850023414 (diff) |
M_ZERO -> bzero.
ok art@
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r-- | sys/arch/alpha/alpha/mem.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/arch/alpha/alpha/mem.c b/sys/arch/alpha/alpha/mem.c index d5d5bc9fc16..a1a6425ae42 100644 --- a/sys/arch/alpha/alpha/mem.c +++ b/sys/arch/alpha/alpha/mem.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mem.c,v 1.21 2006/04/13 14:41:08 brad Exp $ */ +/* $OpenBSD: mem.c,v 1.22 2007/09/22 16:21:32 krw Exp $ */ /* $NetBSD: mem.c,v 1.26 2000/03/29 03:48:20 simonb Exp $ */ /* @@ -197,11 +197,9 @@ kmemphys: * On the first call, allocate and zero a page * of memory for use with /dev/zero. */ - if (zeropage == NULL) { - zeropage = (caddr_t) - malloc(PAGE_SIZE, M_TEMP, M_WAITOK); - bzero(zeropage, PAGE_SIZE); - } + if (zeropage == NULL) + zeropage = malloc(PAGE_SIZE, M_TEMP, + M_WAITOK | M_ZERO); c = min(iov->iov_len, PAGE_SIZE); error = uiomove(zeropage, c, uio); break; |