diff options
author | bp <bp@FreeBSD.org> | 2001-01-31 04:50:20 +0000 |
---|---|---|
committer | bp <bp@FreeBSD.org> | 2001-01-31 04:50:20 +0000 |
commit | 076c2e70fda136ef48c7da93fc16bf7d4c7cb0cf (patch) | |
tree | 9d890169bad4aa8fae0892a28852ca0f5723e2d8 /sys/net | |
parent | 6150a5017458fd74462db58efb154b09f995f8f9 (diff) | |
download | FreeBSD-src-076c2e70fda136ef48c7da93fc16bf7d4c7cb0cf.zip FreeBSD-src-076c2e70fda136ef48c7da93fc16bf7d4c7cb0cf.tar.gz |
Let M_PANIC go back to the private tree as its intention isn't understood well
for now.
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if_loop.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/net/if_loop.c b/sys/net/if_loop.c index 20bad44..105b8dd 100644 --- a/sys/net/if_loop.c +++ b/sys/net/if_loop.c @@ -120,8 +120,7 @@ locreate(int unit) { struct lo_softc *sc; - MALLOC(sc, struct lo_softc *, sizeof(*sc), M_LO, - M_WAITOK | M_ZERO | M_PANIC); + MALLOC(sc, struct lo_softc *, sizeof(*sc), M_LO, M_WAITOK | M_ZERO); sc->sc_if.if_name = "lo"; sc->sc_if.if_unit = unit; |