From dd75d1d73b4f3034c1d9f621a49fff58b1d71eb1 Mon Sep 17 00:00:00 2001 From: dwmalone Date: Fri, 8 Dec 2000 21:51:06 +0000 Subject: Convert more malloc+bzero to malloc+M_ZERO. Submitted by: josh@zipperup.org Submitted by: Robert Drehmel --- sys/dev/si/si.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'sys/dev/si/si.c') diff --git a/sys/dev/si/si.c b/sys/dev/si/si.c index 28e6a42..cc61a17 100644 --- a/sys/dev/si/si.c +++ b/sys/dev/si/si.c @@ -497,23 +497,22 @@ try_next: (maddr + (unsigned)(modp->sm_next & 0x7fff)); } sc->sc_ports = (struct si_port *)malloc(sizeof(struct si_port) * nport, - M_DEVBUF, M_NOWAIT); + M_DEVBUF, M_NOWAIT | M_ZERO); if (sc->sc_ports == 0) { mem_fail: printf("si%d: fail to malloc memory for port structs\n", unit); return EINVAL; } - bzero(sc->sc_ports, sizeof(struct si_port) * nport); sc->sc_nport = nport; /* * allocate tty structures for ports */ - tp = (struct tty *)malloc(sizeof(*tp) * nport, M_DEVBUF, M_NOWAIT); + tp = (struct tty *)malloc(sizeof(*tp) * nport, M_DEVBUF, + M_NOWAIT | M_ZERO); if (tp == 0) goto mem_fail; - bzero(tp, sizeof(*tp) * nport); si__tty = tp; /* -- cgit v1.1