Source-Changes-HG archive

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

[src/trunk]: src/sys Remove M_IOV (missed in previous commit) and M_1394DATA ...



details:   https://anonhg.NetBSD.org/src/rev/376c51eb20d7
branches:  trunk
changeset: 754212:376c51eb20d7
user:      rmind <rmind%NetBSD.org@localhost>
date:      Fri Apr 23 19:09:15 2010 +0000

description:
Remove M_IOV (missed in previous commit) and M_1394DATA types.

diffstat:

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

diffs (41 lines):

diff -r 0d2fe9cb667e -r 376c51eb20d7 sys/kern/kern_malloc_stdtype.c
--- a/sys/kern/kern_malloc_stdtype.c    Fri Apr 23 19:04:54 2010 +0000
+++ b/sys/kern/kern_malloc_stdtype.c    Fri Apr 23 19:09:15 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: kern_malloc_stdtype.c,v 1.3 2009/11/06 13:32:41 pooka Exp $    */
+/*     $NetBSD: kern_malloc_stdtype.c,v 1.4 2010/04/23 19:09:15 rmind Exp $    */
 
 /*
  * Copyright (c) 1987, 1991, 1993
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_malloc_stdtype.c,v 1.3 2009/11/06 13:32:41 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_malloc_stdtype.c,v 1.4 2010/04/23 19:09:15 rmind Exp $");
 
 #include <sys/param.h>
 #include <sys/malloc.h>
@@ -56,5 +56,3 @@
 MALLOC_DEFINE(M_IPMADDR, "in_multi", "internet multicast address");
 MALLOC_DEFINE(M_MRTABLE, "mrt", "multicast routing tables");
 MALLOC_DEFINE(M_BWMETER, "bwmeter", "multicast upcall bw meters");
-MALLOC_DEFINE(M_1394DATA, "1394data", "IEEE 1394 data buffers");
-MALLOC_DEFINE(M_IOV, "iov", "large iov's");
diff -r 0d2fe9cb667e -r 376c51eb20d7 sys/sys/malloc.h
--- a/sys/sys/malloc.h  Fri Apr 23 19:04:54 2010 +0000
+++ b/sys/sys/malloc.h  Fri Apr 23 19:09:15 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: malloc.h,v 1.106 2009/11/06 13:32:41 pooka Exp $       */
+/*     $NetBSD: malloc.h,v 1.107 2010/04/23 19:09:15 rmind Exp $       */
 
 /*
  * Copyright (c) 1987, 1993
@@ -71,7 +71,6 @@
 MALLOC_DECLARE(M_IPMADDR);
 MALLOC_DECLARE(M_MRTABLE);
 MALLOC_DECLARE(M_BWMETER);
-MALLOC_DECLARE(M_1394DATA);
 #endif /* _KERNEL */
 
 /*



Home | Main Index | Thread Index | Old Index