Source-Changes-HG archive

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

[src/trunk]: src/sys g/c REAL_CLISTS.



details:   https://anonhg.NetBSD.org/src/rev/3f0b53218a06
branches:  trunk
changeset: 472205:3f0b53218a06
user:      simonb <simonb%NetBSD.org@localhost>
date:      Sun Apr 25 02:56:26 1999 +0000

description:
g/c REAL_CLISTS.

diffstat:

 sys/arch/alpha/alpha/machdep.c     |  10 ++--------
 sys/arch/hp300/hp300/machdep.c     |   5 +----
 sys/arch/i386/i386/machdep.c       |   6 ++----
 sys/arch/mac68k/mac68k/machdep.c   |   6 ++----
 sys/arch/mips/mips/mips_machdep.c  |   7 ++-----
 sys/arch/mvme68k/mvme68k/machdep.c |   5 +----
 sys/arch/next68k/next68k/machdep.c |   5 +----
 sys/arch/pc532/pc532/machdep.c     |   9 ++-------
 sys/arch/sun3/sun3/machdep.c       |   6 ++----
 sys/arch/sun3/sun3x/machdep.c      |   6 ++----
 sys/arch/vax/vax/machdep.c         |   5 +----
 sys/arch/x68k/x68k/machdep.c       |   6 ++----
 sys/conf/param.c                   |   8 +-------
 sys/kern/init_main.c               |  10 +---------
 sys/kern/tty.c                     |  25 +------------------------
 sys/kern/tty_subr.c                |   5 +----
 sys/sys/tty.h                      |  14 +-------------
 17 files changed, 25 insertions(+), 113 deletions(-)

diffs (truncated from 467 to 300 lines):

diff -r cd47bfd6f804 -r 3f0b53218a06 sys/arch/alpha/alpha/machdep.c
--- a/sys/arch/alpha/alpha/machdep.c    Sun Apr 25 02:42:01 1999 +0000
+++ b/sys/arch/alpha/alpha/machdep.c    Sun Apr 25 02:56:26 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.169 1999/04/15 22:15:05 thorpej Exp $ */
+/* $NetBSD: machdep.c,v 1.170 1999/04/25 02:56:26 simonb Exp $ */
 
 /*-
  * Copyright (c) 1998, 1999 The NetBSD Foundation, Inc.
@@ -82,7 +82,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.169 1999/04/15 22:15:05 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.170 1999/04/25 02:56:26 simonb Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -94,9 +94,6 @@
 #include <sys/reboot.h>
 #include <sys/device.h>
 #include <sys/file.h>
-#ifdef REAL_CLISTS
-#include <sys/clist.h>
-#endif
 #include <sys/callout.h>
 #include <sys/malloc.h>
 #include <sys/mbuf.h>
@@ -919,9 +916,6 @@
 #define valloc(name, type, num) \
            (name) = (type *)v; v = (caddr_t)ALIGN((name)+(num))
 
-#ifdef REAL_CLISTS
-       valloc(cfree, struct cblock, nclist);
-#endif
        valloc(callout, struct callout, ncallout);
 #ifdef SYSVSHM
        valloc(shmsegs, struct shmid_ds, shminfo.shmmni);
diff -r cd47bfd6f804 -r 3f0b53218a06 sys/arch/hp300/hp300/machdep.c
--- a/sys/arch/hp300/hp300/machdep.c    Sun Apr 25 02:42:01 1999 +0000
+++ b/sys/arch/hp300/hp300/machdep.c    Sun Apr 25 02:56:26 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.123 1999/04/11 04:04:06 chs Exp $        */
+/*     $NetBSD: machdep.c,v 1.124 1999/04/25 02:56:27 simonb Exp $     */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -449,9 +449,6 @@
 #define        valloclim(name, type, num, lim) \
            (name) = (type *)v; v = (caddr_t)((lim) = ((name)+(num)))
 
-#ifdef REAL_CLISTS
-       valloc(cfree, struct cblock, nclist);
-#endif
        valloc(callout, struct callout, ncallout);
 #ifdef SYSVSHM
        valloc(shmsegs, struct shmid_ds, shminfo.shmmni);
diff -r cd47bfd6f804 -r 3f0b53218a06 sys/arch/i386/i386/machdep.c
--- a/sys/arch/i386/i386/machdep.c      Sun Apr 25 02:42:01 1999 +0000
+++ b/sys/arch/i386/i386/machdep.c      Sun Apr 25 02:56:26 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.350 1999/04/11 04:04:07 chs Exp $        */
+/*     $NetBSD: machdep.c,v 1.351 1999/04/25 02:56:27 simonb Exp $     */
 
 /*-
  * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@@ -631,9 +631,7 @@
 
 #define        valloc(name, type, num) \
            v = (caddr_t)(((name) = (type *)v) + (num))
-#ifdef REAL_CLISTS
-       valloc(cfree, struct cblock, nclist);
-#endif
+
        valloc(callout, struct callout, ncallout);
 #ifdef SYSVSHM
        valloc(shmsegs, struct shmid_ds, shminfo.shmmni);
diff -r cd47bfd6f804 -r 3f0b53218a06 sys/arch/mac68k/mac68k/machdep.c
--- a/sys/arch/mac68k/mac68k/machdep.c  Sun Apr 25 02:42:01 1999 +0000
+++ b/sys/arch/mac68k/mac68k/machdep.c  Sun Apr 25 02:56:26 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.229 1999/04/11 04:04:07 chs Exp $        */
+/*     $NetBSD: machdep.c,v 1.230 1999/04/25 02:56:28 simonb Exp $     */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -414,9 +414,7 @@
            (name) = (type *)v; v = (caddr_t)((name)+(num))
 #define        valloclim(name, type, num, lim) \
            (name) = (type *)v; v = (caddr_t)((lim) = ((name)+(num)))
-#ifdef REAL_CLISTS
-       valloc(cfree, struct cblock, nclist);
-#endif
+
        valloc(callout, struct callout, ncallout);
 #ifdef SYSVSHM
        valloc(shmsegs, struct shmid_ds, shminfo.shmmni);
diff -r cd47bfd6f804 -r 3f0b53218a06 sys/arch/mips/mips/mips_machdep.c
--- a/sys/arch/mips/mips/mips_machdep.c Sun Apr 25 02:42:01 1999 +0000
+++ b/sys/arch/mips/mips/mips_machdep.c Sun Apr 25 02:56:26 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mips_machdep.c,v 1.50 1999/04/24 15:04:32 simonb Exp $ */
+/*     $NetBSD: mips_machdep.c,v 1.51 1999/04/25 02:56:28 simonb Exp $ */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -52,7 +52,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: mips_machdep.c,v 1.50 1999/04/24 15:04:32 simonb Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mips_machdep.c,v 1.51 1999/04/25 02:56:28 simonb Exp $");
 
 #include "opt_bufcache.h"
 #include "opt_compat_netbsd.h"
@@ -1148,9 +1148,6 @@
 #define valloc(name, type, num) \
            (name) = (type *)v; v = (caddr_t)ALIGN((name)+(num))
 
-#ifdef REAL_CLISTS
-       valloc(cfree, struct cblock, nclist);
-#endif
        valloc(callout, struct callout, ncallout);
 #ifdef SYSVSHM
        valloc(shmsegs, struct shmid_ds, shminfo.shmmni);
diff -r cd47bfd6f804 -r 3f0b53218a06 sys/arch/mvme68k/mvme68k/machdep.c
--- a/sys/arch/mvme68k/mvme68k/machdep.c        Sun Apr 25 02:42:01 1999 +0000
+++ b/sys/arch/mvme68k/mvme68k/machdep.c        Sun Apr 25 02:56:26 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.53 1999/04/11 04:04:08 chs Exp $ */
+/*     $NetBSD: machdep.c,v 1.54 1999/04/25 02:56:28 simonb Exp $      */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -546,9 +546,6 @@
 #define valloclim(name, type, num, lim) \
            (name) = (type *)v; v = (caddr_t)((lim) = ((name)+(num)))
 
-#ifdef REAL_CLISTS
-       valloc(cfree, struct cblock, nclist);
-#endif
        valloc(callout, struct callout, ncallout);
 #ifdef SYSVSHM
        valloc(shmsegs, struct shmid_ds, shminfo.shmmni);
diff -r cd47bfd6f804 -r 3f0b53218a06 sys/arch/next68k/next68k/machdep.c
--- a/sys/arch/next68k/next68k/machdep.c        Sun Apr 25 02:42:01 1999 +0000
+++ b/sys/arch/next68k/next68k/machdep.c        Sun Apr 25 02:56:26 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.20 1999/04/11 04:04:08 chs Exp $ */
+/*     $NetBSD: machdep.c,v 1.21 1999/04/25 02:56:29 simonb Exp $      */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -488,9 +488,6 @@
 #define valloclim(name, type, num, lim) \
            (name) = (type *)v; v = (caddr_t)((lim) = ((name)+(num)))
 
-#ifdef REAL_CLISTS
-       valloc(cfree, struct cblock, nclist);
-#endif
        valloc(callout, struct callout, ncallout);
 #ifdef SYSVSHM
        valloc(shmsegs, struct shmid_ds, shminfo.shmmni);
diff -r cd47bfd6f804 -r 3f0b53218a06 sys/arch/pc532/pc532/machdep.c
--- a/sys/arch/pc532/pc532/machdep.c    Sun Apr 25 02:42:01 1999 +0000
+++ b/sys/arch/pc532/pc532/machdep.c    Sun Apr 25 02:56:26 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.97 1999/04/11 04:04:09 chs Exp $ */
+/*     $NetBSD: machdep.c,v 1.98 1999/04/25 02:56:28 simonb Exp $      */
 
 /*-
  * Copyright (c) 1996 Matthias Pfaller.
@@ -67,9 +67,6 @@
 #include <sys/conf.h>
 #include <sys/file.h>
 #include <sys/callout.h>
-#ifdef REAL_CLISTS
-#include <sys/clist.h>
-#endif
 #include <sys/malloc.h>
 #include <sys/mbuf.h>
 #include <sys/msgbuf.h>
@@ -372,9 +369,7 @@
 
 #define        valloc(name, type, num) \
            v = (caddr_t)(((name) = (type *)v) + (num))
-#ifdef REAL_CLISTS
-       valloc(cfree, struct cblock, nclist);
-#endif
+
        valloc(callout, struct callout, ncallout);
 #ifdef SYSVSHM
        valloc(shmsegs, struct shmid_ds, shminfo.shmmni);
diff -r cd47bfd6f804 -r 3f0b53218a06 sys/arch/sun3/sun3/machdep.c
--- a/sys/arch/sun3/sun3/machdep.c      Sun Apr 25 02:42:01 1999 +0000
+++ b/sys/arch/sun3/sun3/machdep.c      Sun Apr 25 02:56:26 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.127 1999/04/11 04:04:10 chs Exp $        */
+/*     $NetBSD: machdep.c,v 1.128 1999/04/25 02:56:29 simonb Exp $     */
 
 /*
  * Copyright (c) 1994, 1995 Gordon W. Ross
@@ -210,14 +210,12 @@
 #define        valloc(name, type, num) \
        v = (caddr_t)(((name) = (type *)v) + (num))
 static caddr_t allocsys __P((caddr_t));
+
 static caddr_t
 allocsys(v)
        register caddr_t v;
 {
 
-#ifdef REAL_CLISTS
-       valloc(cfree, struct cblock, nclist);
-#endif
        valloc(callout, struct callout, ncallout);
 #ifdef SYSVSHM
        valloc(shmsegs, struct shmid_ds, shminfo.shmmni);
diff -r cd47bfd6f804 -r 3f0b53218a06 sys/arch/sun3/sun3x/machdep.c
--- a/sys/arch/sun3/sun3x/machdep.c     Sun Apr 25 02:42:01 1999 +0000
+++ b/sys/arch/sun3/sun3x/machdep.c     Sun Apr 25 02:56:26 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.47 1999/04/11 04:04:10 chs Exp $ */
+/*     $NetBSD: machdep.c,v 1.48 1999/04/25 02:56:29 simonb Exp $      */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -211,14 +211,12 @@
 #define        valloc(name, type, num) \
        v = (caddr_t)(((name) = (type *)v) + (num))
 static caddr_t allocsys __P((caddr_t));
+
 static caddr_t
 allocsys(v)
        register caddr_t v;
 {
 
-#ifdef REAL_CLISTS
-       valloc(cfree, struct cblock, nclist);
-#endif
        valloc(callout, struct callout, ncallout);
 #ifdef SYSVSHM
        valloc(shmsegs, struct shmid_ds, shminfo.shmmni);
diff -r cd47bfd6f804 -r 3f0b53218a06 sys/arch/vax/vax/machdep.c
--- a/sys/arch/vax/vax/machdep.c        Sun Apr 25 02:42:01 1999 +0000
+++ b/sys/arch/vax/vax/machdep.c        Sun Apr 25 02:56:26 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.79 1999/04/17 00:01:19 ragge Exp $    */
+/* $NetBSD: machdep.c,v 1.80 1999/04/25 02:56:29 simonb Exp $   */
 
 /*
  * Copyright (c) 1994, 1998 Ludd, University of Lule}, Sweden.
@@ -319,9 +319,6 @@
 #define valloc(name, type, num) \
            v = (caddr_t)(((name) = (type *)v) + (num))
 
-#ifdef REAL_CLISTS
-       valloc(cfree, struct cblock, nclist);
-#endif
        valloc(callout, struct callout, ncallout);
 #ifdef SYSVSHM
        valloc(shmsegs, struct shmid_ds, shminfo.shmmni);
diff -r cd47bfd6f804 -r 3f0b53218a06 sys/arch/x68k/x68k/machdep.c
--- a/sys/arch/x68k/x68k/machdep.c      Sun Apr 25 02:42:01 1999 +0000
+++ b/sys/arch/x68k/x68k/machdep.c      Sun Apr 25 02:56:26 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.61 1999/04/11 04:04:11 chs Exp $ */
+/*     $NetBSD: machdep.c,v 1.62 1999/04/25 02:56:29 simonb Exp $      */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -311,9 +311,7 @@
            (name) = (type *)v; v = (caddr_t)((name)+(num))
 #define        valloclim(name, type, num, lim) \
            (name) = (type *)v; v = (caddr_t)((lim) = ((name)+(num)))
-#ifdef REAL_CLISTS
-       valloc(cfree, struct cblock, nclist);
-#endif
+
        valloc(callout, struct callout, ncallout);
 #ifdef SYSVSHM
        valloc(shmsegs, struct shmid_ds, shminfo.shmmni);
diff -r cd47bfd6f804 -r 3f0b53218a06 sys/conf/param.c
--- a/sys/conf/param.c  Sun Apr 25 02:42:01 1999 +0000
+++ b/sys/conf/param.c  Sun Apr 25 02:56:26 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: param.c,v 1.26 1999/04/22 04:50:05 simonb Exp $        */
+/*     $NetBSD: param.c,v 1.27 1999/04/25 02:56:30 simonb Exp $        */
 
 /*
  * Copyright (c) 1980, 1986, 1989 Regents of the University of California.
@@ -52,9 +52,6 @@
 #include <sys/vnode.h>
 #include <sys/file.h>
 #include <sys/callout.h>
-#ifdef REAL_CLISTS
-#include <sys/clist.h>
-#endif
 #include <sys/mbuf.h>
 #include <ufs/ufs/quota.h>



Home | Main Index | Thread Index | Old Index