diff --git a/sys/kern/kern_malloc_stdtype.c b/sys/kern/kern_malloc_stdtype.c index a60a94c044e9..6d9de95f2a18 100644 --- a/sys/kern/kern_malloc_stdtype.c +++ b/sys/kern/kern_malloc_stdtype.c @@ -1,4 +1,4 @@ -/* $NetBSD: kern_malloc_stdtype.c,v 1.2 2008/10/14 14:17:49 pooka Exp $ */ +/* $NetBSD: kern_malloc_stdtype.c,v 1.3 2009/11/06 13:32:41 pooka Exp $ */ /* * Copyright (c) 1987, 1991, 1993 @@ -32,7 +32,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: kern_malloc_stdtype.c,v 1.2 2008/10/14 14:17:49 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: kern_malloc_stdtype.c,v 1.3 2009/11/06 13:32:41 pooka Exp $"); #include #include @@ -45,7 +45,6 @@ MALLOC_DEFINE(M_DEVBUF, "devbuf", "device driver memory"); MALLOC_DEFINE(M_DMAMAP, "DMA map", "bus_dma(9) structures"); MALLOC_DEFINE(M_FREE, "free", "should be on free list"); MALLOC_DEFINE(M_PCB, "pcb", "protocol control block"); -MALLOC_DEFINE(M_SOFTINTR, "softintr", "Softinterrupt structures"); MALLOC_DEFINE(M_TEMP, "temp", "misc. temporary data buffers"); /* XXX These should all be elsewhere. */ diff --git a/sys/sys/malloc.h b/sys/sys/malloc.h index 7737abdce75d..569d855253e8 100644 --- a/sys/sys/malloc.h +++ b/sys/sys/malloc.h @@ -1,4 +1,4 @@ -/* $NetBSD: malloc.h,v 1.105 2009/09/13 18:45:11 pooka Exp $ */ +/* $NetBSD: malloc.h,v 1.106 2009/11/06 13:32:41 pooka Exp $ */ /* * Copyright (c) 1987, 1993 @@ -60,7 +60,6 @@ MALLOC_DECLARE(M_DEVBUF); MALLOC_DECLARE(M_DMAMAP); MALLOC_DECLARE(M_FREE); MALLOC_DECLARE(M_PCB); -MALLOC_DECLARE(M_SOFTINTR); MALLOC_DECLARE(M_TEMP); /* XXX These should all be declared elsewhere. */