Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys g/c M_SOFTINTR



details:   https://anonhg.NetBSD.org/src/rev/1e21fcc2d816
branches:  trunk
changeset: 748820:1e21fcc2d816
user:      pooka <pooka%NetBSD.org@localhost>
date:      Fri Nov 06 13:32:41 2009 +0000

description:
g/c M_SOFTINTR

diffstat:

 sys/kern/kern_malloc_stdtype.c |  5 ++---
 sys/sys/malloc.h               |  3 +--
 2 files changed, 3 insertions(+), 5 deletions(-)

diffs (43 lines):

diff -r 2811148a948d -r 1e21fcc2d816 sys/kern/kern_malloc_stdtype.c
--- a/sys/kern/kern_malloc_stdtype.c    Fri Nov 06 13:01:36 2009 +0000
+++ b/sys/kern/kern_malloc_stdtype.c    Fri Nov 06 13:32:41 2009 +0000
@@ -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 <sys/cdefs.h>
-__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 <sys/param.h>
 #include <sys/malloc.h>
@@ -45,7 +45,6 @@
 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 -r 2811148a948d -r 1e21fcc2d816 sys/sys/malloc.h
--- a/sys/sys/malloc.h  Fri Nov 06 13:01:36 2009 +0000
+++ b/sys/sys/malloc.h  Fri Nov 06 13:32:41 2009 +0000
@@ -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_DMAMAP);
 MALLOC_DECLARE(M_FREE);
 MALLOC_DECLARE(M_PCB);
-MALLOC_DECLARE(M_SOFTINTR);
 MALLOC_DECLARE(M_TEMP);
 
 /* XXX These should all be declared elsewhere. */



Home | Main Index | Thread Index | Old Index