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/vax | |
parent | ff4c44726bfd6e9c1fe5b09d86ca20e850023414 (diff) |
M_ZERO -> bzero.
ok art@
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/vax/mem.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/arch/vax/vax/mem.c b/sys/arch/vax/vax/mem.c index f41ee6a3752..036fae831d6 100644 --- a/sys/arch/vax/vax/mem.c +++ b/sys/arch/vax/vax/mem.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mem.c,v 1.14 2005/11/06 22:21:33 miod Exp $ */ +/* $OpenBSD: mem.c,v 1.15 2007/09/22 16:21:32 krw Exp $ */ /* $NetBSD: mem.c,v 1.15 1999/03/24 05:51:17 mrg Exp $ */ /* @@ -146,11 +146,9 @@ mmrw(dev, uio, flags) c = iov->iov_len; break; } - 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); continue; |