Fix #includes.

This commit is contained in:
mycroft 1996-02-02 18:05:36 +00:00
parent cd2d3b3a65
commit 9d9a70a5a2
92 changed files with 713 additions and 768 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: prom_disp.s,v 1.2 1996/02/01 22:28:35 mycroft Exp $ */
/* $NetBSD: prom_disp.s,v 1.3 1996/02/02 18:05:36 mycroft Exp $ */
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
@ -28,9 +28,9 @@
*/
#ifndef _LOCORE
#include "../include/asm.h"
#include "../include/prom.h"
#include "../include/rpb.h"
#include <machine/asm.h>
#include <machine/prom.h>
#include <machine/rpb.h>
#endif
.globl prom_dispatch_v

View File

@ -1,4 +1,4 @@
/* $NetBSD: scc.c,v 1.11 1995/12/20 00:43:24 cgd Exp $ */
/* $NetBSD: scc.c,v 1.12 1996/02/02 18:05:42 mycroft Exp $ */
/*
* Copyright (c) 1991,1990,1989,1994,1995 Carnegie Mellon University
@ -63,7 +63,7 @@
* @(#)scc.c 8.2 (Berkeley) 11/30/93
*/
#include <scc.h>
#include "scc.h"
#if NSCC > 0
/*
* Intel 82530 dual usart chip driver. Supports the serial port(s) on the

View File

@ -1,4 +1,4 @@
/* $NetBSD: msc.c,v 1.2 1995/10/07 18:18:26 chopps Exp $ */
/* $NetBSD: msc.c,v 1.3 1996/02/02 18:05:44 mycroft Exp $ */
/*
* Copyright (c) 1993 Zik.
@ -69,7 +69,7 @@
#include <amiga/amiga/device.h>
#include <amiga/dev/zbusvar.h>
#include <amiga/dev/mscreg.h>
#include "machine/cpu.h"
#include <machine/cpu.h>
#include <amiga/amiga/custom.h>
#include <amiga/amiga/cia.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: bcopyinout.S,v 1.2 1996/02/02 02:35:30 mycroft Exp $ */
/* $NetBSD: bcopyinout.S,v 1.3 1996/02/02 18:05:47 mycroft Exp $ */
/*
* Copyright (c) 1995 Mark Brinicombe.
@ -43,11 +43,11 @@
* Created : 16/05/95
* Last updated : 16/05/95
*
* $Id: bcopyinout.S,v 1.2 1996/02/02 02:35:30 mycroft Exp $
* $Id: bcopyinout.S,v 1.3 1996/02/02 18:05:47 mycroft Exp $
*/
#include "assym.h"
#include "sys/errno.h"
#include <sys/errno.h>
sp .req r13
lr .req r14

View File

@ -1,4 +1,4 @@
/* $NetBSD: copystr.S,v 1.2 1996/02/02 02:35:32 mycroft Exp $ */
/* $NetBSD: copystr.S,v 1.3 1996/02/02 18:05:49 mycroft Exp $ */
/*
* Copyright (c) 1995 Mark Brinicombe.
@ -43,11 +43,11 @@
* Created : 16/05/95
* Last updated : 16/05/95
*
* $Id: copystr.S,v 1.2 1996/02/02 02:35:32 mycroft Exp $
* $Id: copystr.S,v 1.3 1996/02/02 18:05:49 mycroft Exp $
*/
#include "assym.h"
#include "sys/errno.h"
#include <sys/errno.h>
sp .req r13
lr .req r14

View File

@ -1,4 +1,4 @@
/* $NetBSD: atari5380.c,v 1.5 1996/01/14 13:06:37 leo Exp $ */
/* $NetBSD: atari5380.c,v 1.6 1996/02/02 18:05:51 mycroft Exp $ */
/*
* Copyright (c) 1995 Leo Weppelman.
@ -837,4 +837,4 @@ int sr; /* sr at time of interrupt */
/*
* Last but not least... Include the general driver code
*/
#include "atari/dev/ncr5380.c"
#include <atari/dev/ncr5380.c>

View File

@ -1,4 +1,4 @@
/* $NetBSD: fd.c,v 1.13 1996/01/07 22:02:05 thorpej Exp $ */
/* $NetBSD: fd.c,v 1.14 1996/02/02 18:05:52 mycroft Exp $ */
/*
* Copyright (c) 1995 Leo Weppelman.
@ -48,25 +48,25 @@
* - Finish ioctl's
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/buf.h>
#include <sys/device.h>
#include <sys/ioctl.h>
#include <sys/fcntl.h>
#include <sys/conf.h>
#include <sys/disklabel.h>
#include <sys/disk.h>
#include <sys/dkbad.h>
#include <atari/atari/device.h>
#include <machine/disklabel.h>
#include <machine/iomap.h>
#include <machine/mfp.h>
#include <machine/dma.h>
#include <machine/video.h>
#include <atari/dev/fdreg.h>
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/buf.h>
#include <sys/device.h>
#include <sys/ioctl.h>
#include <sys/fcntl.h>
#include <sys/conf.h>
#include <sys/disklabel.h>
#include <sys/disk.h>
#include <sys/dkbad.h>
#include <atari/atari/device.h>
#include <machine/disklabel.h>
#include <machine/iomap.h>
#include <machine/mfp.h>
#include <machine/dma.h>
#include <machine/video.h>
#include <atari/dev/fdreg.h>
/*
* Be verbose for debugging

View File

@ -1,4 +1,4 @@
/* $NetBSD: Locore.c,v 1.11 1995/09/10 19:42:17 thorpej Exp $ */
/* $NetBSD: Locore.c,v 1.12 1996/02/02 18:05:55 mycroft Exp $ */
/*
* Copyright (c) 1982, 1986, 1990 The Regents of the University of California.
@ -35,23 +35,23 @@
* @(#)Locore.c 7.4 (Berkeley) 5/7/91
*/
#include "../include/pte.h"
#include "../includecpu.h"
#include <machine/pte.h>
#include <machine/cpu.h>
#include "sys/param.h"
#include "sys/systm.h"
#include "sys/user.h"
#include "sys/vm.h"
#include "sys/ioctl.h"
#include "sys/tty.h"
#include "sys/proc.h"
#include "sys/buf.h"
#include "sys/msgbuf.h"
#include "sys/mbuf.h"
#include "sys/protosw.h"
#include "sys/domain.h"
#include "sys/map.h"
#include "sys/dkbad.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/user.h>
#include <sys/vm.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/proc.h>
#include <sys/buf.h>
#include <sys/msgbuf.h>
#include <sys/mbuf.h>
#include <sys/protosw.h>
#include <sys/domain.h>
#include <sys/map.h>
#include <sys/dkbad.h>
/*
* Pseudo file for lint to show what is used/defined in locore.s.

View File

@ -1,4 +1,4 @@
/* $NetBSD: disksubr.c,v 1.6 1995/08/08 06:23:08 thorpej Exp $ */
/* $NetBSD: disksubr.c,v 1.7 1996/02/02 18:05:56 mycroft Exp $ */
/*
* Copyright (c) 1982, 1986, 1988, 1993
@ -40,11 +40,11 @@
* @(#)ufs_disksubr.c 8.5 (Berkeley) 1/21/94
*/
#include "param.h"
#include "systm.h"
#include "buf.h"
#include "disklabel.h"
#include "syslog.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>
#include <sys/disklabel.h>
#include <sys/syslog.h>
#define b_cylinder b_resid

View File

@ -1,4 +1,4 @@
/* $NetBSD: db_disasm.c,v 1.9 1995/02/05 13:59:38 mycroft Exp $ */
/* $NetBSD: db_disasm.c,v 1.10 1996/02/02 18:05:58 mycroft Exp $ */
/*
* Mach Operating System
@ -31,8 +31,8 @@
/*
* Instruction disassembler.
*/
#include "param.h"
#include "proc.h"
#include <sys/param.h>
#include <sys/proc.h>
#include <machine/db_machdep.h>
#include <ddb/db_access.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: dkbad.c,v 1.3 1994/10/27 04:15:19 cgd Exp $ */
/* $NetBSD: dkbad.c,v 1.4 1996/02/02 18:05:59 mycroft Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -40,9 +40,9 @@
#ifndef NOBADSECT
#include "sys/param.h"
#include "sys/buf.h"
#include "sys/dkbad.h"
#include <sys/param.h>
#include <sys/buf.h>
#include <sys/dkbad.h>
/*
* Search the bad sector table looking for

View File

@ -1,4 +1,4 @@
/* $NetBSD: math_emulate.c,v 1.15 1995/10/10 04:45:30 mycroft Exp $ */
/* $NetBSD: math_emulate.c,v 1.16 1996/02/02 18:06:01 mycroft Exp $ */
/*
* expediant "port" of linux 8087 emulator to 386BSD, with apologies -wfj
@ -909,7 +909,7 @@ void fmul(const temp_real * src1, const temp_real * src2, temp_real * result)
* temporary real division routine.
*/
#include "i386/i386/math_emu.h"
#include <i386/i386/math_emu.h>
static void shift_left(int * c)
{

View File

@ -1,4 +1,4 @@
/* $NetBSD: ns_cksum.c,v 1.3 1994/10/27 04:15:39 cgd Exp $ */
/* $NetBSD: ns_cksum.c,v 1.4 1996/02/02 18:06:03 mycroft Exp $ */
/*
* Copyright (c) 1982, 1988 Regents of the University of California.
@ -35,8 +35,8 @@
* @(#)ns_cksum.c 7.7 (Berkeley) 4/29/91
*/
#include "sys/param.h"
#include "sys/mbuf.h"
#include <sys/param.h>
#include <sys/mbuf.h>
/*
* Checksum routine for Network Systems Protocol Packets (Big-Endian).

View File

@ -1,4 +1,4 @@
/* $NetBSD: pccons.h,v 1.3 1995/03/28 18:17:02 jtc Exp $ */
/* $NetBSD: pccons.h,v 1.4 1996/02/02 18:06:06 mycroft Exp $ */
/*
* pccons.h -- pccons ioctl definitions
@ -7,11 +7,7 @@
#ifndef _PCCONS_H_
#define _PCCONS_H_
#ifndef _KERNEL
#include <sys/ioctl.h>
#else
#include "ioctl.h"
#endif
#define CONSOLE_X_MODE_ON _IO('t',121)
#define CONSOLE_X_MODE_OFF _IO('t',122)

View File

@ -72,8 +72,6 @@
#define PCVT_REL "3.32" /* driver attach announcement */
/* see also: pcvt_ioctl.h */
#if PCVT_FREEBSD >= 200
#include <sys/param.h>
#include <sys/conf.h>
#include <sys/ioctl.h>
@ -88,110 +86,63 @@
#include <sys/malloc.h>
#include <sys/time.h>
#else /* ! PCVT_FREEBSD >= 200 */
#include "param.h"
#include "conf.h"
#include "ioctl.h"
#include "proc.h"
#include "user.h"
#include "tty.h"
#include "uio.h"
#include "callout.h"
#include "systm.h"
#include "kernel.h"
#include "syslog.h"
#include "malloc.h"
#include "time.h"
#endif /* PCVT_FREEBSD >= 200 */
#include "pcvt_conf.h"
#if PCVT_NETBSD > 9
#include "device.h"
#include <sys/device.h>
#endif
#if PCVT_NETBSD > 9
#if PCVT_NETBSD > 101
#include "i386/isa/isa_machdep.h"
#include "dev/isa/isavar.h"
#include <i386/isa/isa_machdep.h>
#include <dev/isa/isavar.h>
#else
#include "i386/isa/isavar.h"
#include <i386/isa/isavar.h>
#endif
#include "i386/cpufunc.h"
#elif PCVT_FREEBSD >= 200
#include <i386/cpufunc.h>
#include <i386/isa/isa_device.h>
#else
#include "i386/isa/isa_device.h"
#endif
#if PCVT_FREEBSD >= 200
#include <i386/isa/icu.h>
#else
#include "i386/isa/icu.h"
#endif
#if PCVT_NETBSD > 100
#if PCVT_NETBSD > 101
#include "dev/isa/isareg.h"
#include <dev/isa/isareg.h>
#else
#include "i386/isa/isareg.h"
#include <i386/isa/isareg.h>
#endif
#elif PCVT_FREEBSD >= 200
#include <i386/isa/isa.h>
#else
#include "i386/isa/isa.h"
#include <i386/isa/isa.h>
#endif
#if PCVT_NETBSD > 9
#include "dev/cons.h"
#include <dev/cons.h>
#if PCVT_NETBSD > 100
#include "dev/ic/mc146818reg.h"
#include "i386/isa/nvram.h"
#include <dev/ic/mc146818reg.h>
#include <i386/isa/nvram.h>
#endif
#elif PCVT_FREEBSD >= 200
#include <i386/i386/cons.h>
#else
#include "i386/i386/cons.h"
#include <i386/i386/cons.h>
#endif
#if PCVT_NETBSD <= 9
#if PCVT_FREEBSD >= 200
#include <machine/psl.h>
#include <machine/frame.h>
#else /* ! PCVT_FREEBSD >= 200 */
#include "machine/psl.h"
#include "machine/frame.h"
#endif /* PCVT_FREEBSD >= 200 */
#endif /* PCVT_NETBSD <= 9 */
#if PCVT_FREEBSD >= 200
#include <machine/stdarg.h>
#else
#include "machine/stdarg.h"
#endif
#if PCVT_NETBSD > 9
#include "pcvt_ioctl.h"
#elif PCVT_FREEBSD >= 200
#include <machine/pcvt_ioctl.h>
#else
#include "machine/pcvt_ioctl.h"
#include <machine/pcvt_ioctl.h>
#endif
#if PCVT_FREEBSD >= 200
#include <machine/pc/display.h>
#if PCVT_FREEBSD > 200
#include <machine/clock.h>
#include <machine/md_var.h>
#endif
#include <vm/vm_kern.h>
#else /* PCVT_FREEBSD >= 200 */
#include "machine/pc/display.h"
#include "vm/vm_kern.h"
#endif /* PCVT_FREEBSD >= 200 */
#if PCVT_FREEBSD > 205
#include <sys/devconf.h>
@ -252,9 +203,9 @@ in the config file"
#if PCVT_NETBSD
#if PCVT_NETBSD == 9
#include "machine/cpufunc.h" /* NetBSD 0.9 [...and earlier -currents] */
#include <machine/cpufunc.h> /* NetBSD 0.9 [...and earlier -currents] */
#else
#include "machine/pio.h" /* recent NetBSD -currents */
#include <machine/pio.h> /* recent NetBSD -currents */
#define NEW_AVERUNNABLE /* averunnable changes for younger currents */
#endif /* PCVT_NETBSD == 9 */
#endif /* PCVT_NETBSD */

View File

@ -75,10 +75,8 @@
#define PCVTIDMAJOR 3 /* driver id - major release */
#define PCVTIDMINOR 32 /* driver id - minor release */
#if defined(KERNEL) || defined(_KERNEL)
#include "ioctl.h"
#else
#include <sys/ioctl.h>
#if !defined(KERNEL) && !defined(_KERNEL)
#include <sys/types.h>
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: arp.c,v 1.4 1994/10/27 04:21:01 cgd Exp $ */
/* $NetBSD: arp.c,v 1.5 1996/02/02 18:06:14 mycroft Exp $ */
/*
* source in this file came from
@ -12,7 +12,7 @@
#include "proto.h"
#include "assert.h"
#include "param.h"
#include <sys/param.h>
#include "packet.h"
#include "ether.h"
#include "inet.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: main.c,v 1.5 1994/10/27 04:21:17 cgd Exp $ */
/* $NetBSD: main.c,v 1.6 1996/02/02 18:06:17 mycroft Exp $ */
/*
* source code in this file is from:
@ -57,7 +57,7 @@ WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "config.h"
#include "nbtypes.h"
#include "assert.h"
#include "param.h"
#include <sys/param.h>
#include "packet.h"
#include "ether.h"
#include "inet.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: packet.c,v 1.3 1994/10/27 04:21:21 cgd Exp $ */
/* $NetBSD: packet.c,v 1.4 1996/02/02 18:06:21 mycroft Exp $ */
/*
* source in this file came from
@ -11,7 +11,7 @@
#include "proto.h"
#include "assert.h"
#include "param.h"
#include <sys/param.h>
#include "packet.h"
static packet_t *pool = (packet_t *)0;

View File

@ -1,4 +1,4 @@
/* $NetBSD: tftp.c,v 1.3 1994/10/27 04:21:26 cgd Exp $ */
/* $NetBSD: tftp.c,v 1.4 1996/02/02 18:06:23 mycroft Exp $ */
/*
* source in this file came from
@ -11,7 +11,7 @@
#include "proto.h"
#include "assert.h"
#include "param.h"
#include <sys/param.h>
#include "packet.h"
#include "ether.h"
#include "inet.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: param.h,v 1.22 1996/01/13 01:41:05 briggs Exp $ */
/* $NetBSD: param.h,v 1.23 1996/02/02 18:06:29 mycroft Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -80,7 +80,7 @@
#define _MACHINE_PARAM_H_ 1
#ifndef PSL_IPL
#include "machine/psl.h"
#include <machine/psl.h>
#endif /* PSL_IPL */
/*

View File

@ -1,4 +1,4 @@
/* $NetBSD: clock.c,v 1.17 1996/01/29 04:10:00 briggs Exp $ */
/* $NetBSD: clock.c,v 1.18 1996/02/02 18:06:34 mycroft Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -78,14 +78,14 @@
*/
#if !defined(STANDALONE)
#include "param.h"
#include "kernel.h"
#include <sys/param.h>
#include <sys/kernel.h>
#include "machine/psl.h"
#include "machine/cpu.h"
#include <machine/psl.h>
#include <machine/cpu.h>
#if defined(GPROF) && defined(PROFTIMER)
#include "sys/gprof.h"
#include <sys/gprof.h>
#endif
#else /* STANDALONE */

View File

@ -1,4 +1,4 @@
/* $NetBSD: locore.s,v 1.54 1996/02/02 02:36:54 mycroft Exp $ */
/* $NetBSD: locore.s,v 1.55 1996/02/02 18:06:41 mycroft Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -1040,7 +1040,7 @@ _esigcode:
* Primitives
*/
#include "m68k/asm.h"
#include <m68k/asm.h>
/*
* copypage(fromaddr, toaddr)

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.87 1996/01/15 12:29:48 briggs Exp $ */
/* $NetBSD: machdep.c,v 1.88 1996/02/02 18:12:24 mycroft Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -76,7 +76,7 @@
* @(#)machdep.c 7.16 (Berkeley) 6/3/91
*/
#include <param.h>
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/signalvar.h>
#include <sys/kernel.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: sys_machdep.c,v 1.7 1995/10/10 03:48:33 briggs Exp $ */
/* $NetBSD: sys_machdep.c,v 1.8 1996/02/02 18:06:47 mycroft Exp $ */
/*
* Copyright (c) 1990 The Regents of the University of California.
@ -69,18 +69,18 @@
* @(#)sys_machdep.c 7.7 (Berkeley) 5/7/91
*/
#include "sys/param.h"
#include "sys/systm.h"
#include "sys/ioctl.h"
#include "sys/file.h"
#include "sys/time.h"
#include "sys/proc.h"
#include "sys/uio.h"
#include "sys/kernel.h"
#include "sys/mtio.h"
#include "sys/buf.h"
#include "sys/trace.h"
#include "sys/mount.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/ioctl.h>
#include <sys/file.h>
#include <sys/time.h>
#include <sys/proc.h>
#include <sys/uio.h>
#include <sys/kernel.h>
#include <sys/mtio.h>
#include <sys/buf.h>
#include <sys/trace.h>
#include <sys/mount.h>
#include <sys/syscallargs.h>
@ -140,7 +140,7 @@ vdoualarm(arg)
}
#endif
#include "machine/cpu.h"
#include <machine/cpu.h>
/* XXX should be in an include file somewhere */
#define CC_PURGE 1

View File

@ -1,4 +1,4 @@
/* $NetBSD: trap.c,v 1.26 1996/01/31 08:47:00 jonathan Exp $ */
/* $NetBSD: trap.c,v 1.27 1996/02/02 18:07:59 mycroft Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -78,10 +78,10 @@
#include <pmax/stand/dec_prom.h>
#include <asc.h>
#include <sii.h>
#include <le.h>
#include <dc.h>
#include "asc.h"
#include "sii.h"
#include "le.h"
#include "dc.h"
#include <sys/cdefs.h>
#include <sys/syslog.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: aic.c,v 1.4 1995/08/12 20:31:10 mycroft Exp $ */
/* $NetBSD: aic.c,v 1.5 1996/02/02 18:06:52 mycroft Exp $ */
/* Written by Phil Nelson for the pc532. Used source with the following
* copyrights as a model.
@ -48,21 +48,21 @@
*
*/
#include "sys/types.h"
#include "sys/param.h"
#include "sys/systm.h"
#include "sys/errno.h"
#include "sys/ioctl.h"
#include "sys/buf.h"
#include "machine/stdarg.h"
#include "sys/proc.h"
#include "sys/user.h"
#include "sys/dkbad.h"
#include "sys/disklabel.h"
#include "scsi/scsi_all.h"
#include "scsi/scsiconf.h"
#include <sys/types.h>
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/buf.h>
#include <machine/stdarg.h>
#include <sys/proc.h>
#include <sys/user.h>
#include <sys/dkbad.h>
#include <sys/disklabel.h>
#include <scsi/scsi_all.h>
#include <scsi/scsiconf.h>
#include "device.h"
#include <sys/device.h>
/* Some constants (may need to be changed!) */
#define AIC_NSEG 16

View File

@ -1,4 +1,4 @@
/* $NetBSD: dp.c,v 1.8 1995/08/12 20:31:11 mycroft Exp $ */
/* $NetBSD: dp.c,v 1.9 1996/02/02 18:06:54 mycroft Exp $ */
/* Written by Phil Nelson for the pc532. Used source with the following
* copyrights as a model.
@ -66,7 +66,7 @@
#include <machine/frame.h>
#include <machine/icu.h>
#include "device.h"
#include <sys/device.h>
#include "dpreg.h"
#define DP_DEBUG 0

View File

@ -1,4 +1,4 @@
/* $NetBSD: scn.c,v 1.24 1996/02/01 02:37:15 phil Exp $ */
/* $NetBSD: scn.c,v 1.25 1996/02/02 18:06:57 mycroft Exp $ */
/*
* Copyright (c) 1991 The Regents of the University of California.
@ -147,7 +147,7 @@ struct speedtab scnspeedtab[] = {
extern struct tty *constty;
#ifdef KGDB
#include "machine/remote-sl.h"
#include <machine/remote-sl.h>
extern int kgdb_dev;
extern int kgdb_rate;

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.h,v 1.13 1996/02/01 00:03:25 phil Exp $ */
/* $NetBSD: cpu.h,v 1.14 1996/02/02 18:07:03 mycroft Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -47,8 +47,8 @@
* modified from 386 code for the pc532 by Phil Nelson (12/92)
*/
#include "machine/psl.h"
#include "machine/frame.h"
#include <machine/psl.h>
#include <machine/frame.h>
/*
* definitions of cpu-dependent requirements

View File

@ -1,4 +1,4 @@
/* $NetBSD: disksubr.c,v 1.7 1995/08/25 07:49:05 phil Exp $ */
/* $NetBSD: disksubr.c,v 1.8 1996/02/02 18:07:07 mycroft Exp $ */
/*
* Copyright (c) 1982, 1986, 1988 Regents of the University of California.
@ -35,11 +35,11 @@
* @(#)ufs_disksubr.c 7.16 (Berkeley) 5/4/91
*/
#include "param.h"
#include "systm.h"
#include "buf.h"
#include "disklabel.h"
#include "syslog.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>
#include <sys/disklabel.h>
#include <sys/syslog.h>
#define b_cylin b_resid

View File

@ -1,4 +1,4 @@
/* $NetBSD: ns_cksum.c,v 1.2 1994/10/26 08:25:11 cgd Exp $ */
/* $NetBSD: ns_cksum.c,v 1.3 1996/02/02 18:07:09 mycroft Exp $ */
/*
* Copyright (c) 1982, 1988 Regents of the University of California.
@ -35,8 +35,8 @@
* @(#)ns_cksum.c 7.7 (Berkeley) 4/29/91
*/
#include "sys/param.h"
#include "sys/mbuf.h"
#include <sys/param.h>
#include <sys/mbuf.h>
/*
* Checksum routine for Network Systems Protocol Packets (Big-Endian).

View File

@ -1,4 +1,4 @@
/* $NetBSD: umprintf.c,v 1.3 1994/10/26 08:25:20 cgd Exp $ */
/* $NetBSD: umprintf.c,v 1.4 1996/02/02 18:13:04 mycroft Exp $ */
/*-
* Copyright (c) 1986, 1988, 1991 The Regents of the University of California.
@ -36,7 +36,7 @@
* @(#)subr_prf.c 7.30 (Berkeley) 6/29/91
*/
#include <stdarg.h>
#include <machine/stdarg.h>
static char *ksprintn __P((u_long num, int base, int *len));
void

View File

@ -1,4 +1,4 @@
/* $NetBSD: cfb.c,v 1.12 1996/01/29 22:52:15 jonathan Exp $ */
/* $NetBSD: cfb.c,v 1.13 1996/02/02 18:07:13 mycroft Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* from: @(#)sfb.c 8.1 (Berkeley) 6/10/93
* $Id: cfb.c,v 1.12 1996/01/29 22:52:15 jonathan Exp $
* $Id: cfb.c,v 1.13 1996/02/02 18:07:13 mycroft Exp $
*/
/*
@ -81,8 +81,8 @@
* rights to redistribute these changes.
*/
#include <fb.h>
#include <cfb.h>
#include "fb.h"
#include "cfb.h"
#if NCFB > 0
#include <sys/param.h>
#include <sys/kernel.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: dc.c,v 1.13 1996/01/29 22:52:16 jonathan Exp $ */
/* $NetBSD: dc.c,v 1.14 1996/02/02 18:07:17 mycroft Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -56,7 +56,7 @@
* v 1.4 89/08/29 11:55:30 nelson Exp SPRITE (DECWRL)";
*/
#include <dc.h>
#include "dc.h"
#if NDC > 0
/*
* DC7085 (DZ-11 look alike) Driver

View File

@ -1,4 +1,4 @@
/* $NetBSD: dtop.c,v 1.10 1996/01/29 22:52:19 jonathan Exp $ */
/* $NetBSD: dtop.c,v 1.11 1996/02/02 18:07:20 mycroft Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -93,7 +93,7 @@ SOFTWARE.
********************************************************/
#include <dtop.h>
#include "dtop.h"
#if NDTOP > 0
#include <sys/param.h>
#include <sys/systm.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: fb.c,v 1.9 1995/10/05 01:52:57 jonathan Exp $ */
/* $NetBSD: fb.c,v 1.10 1996/02/02 18:07:23 mycroft Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -93,11 +93,11 @@
#include <pmax/pmax/cons.h>
#include <pmax/pmax/pmaxtype.h>
#include <rasterconsole.h>
#include "rasterconsole.h"
#include <dc.h>
#include <scc.h>
#include <dtop.h>
#include "dc.h"
#include "scc.h"
#include "dtop.h"
/*
* This framebuffer driver is a generic driver for all supported
@ -163,7 +163,7 @@ u_short defCursor[32] = {
*/
#include <sys/device.h>
#include <fb.h>
#include "fb.h"
static struct {

View File

@ -1,4 +1,4 @@
/* $NetBSD: mfb.c,v 1.9 1996/01/29 22:52:20 jonathan Exp $ */
/* $NetBSD: mfb.c,v 1.10 1996/02/02 18:07:26 mycroft Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -80,8 +80,8 @@
* v 9.2 90/02/13 22:16:24 shirriff Exp SPRITE (DECWRL)";
*/
#include <fb.h>
#include <mfb.h>
#include "fb.h"
#include "mfb.h"
#if NMFB > 0
#include <sys/param.h>
#include <sys/kernel.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: pm.c,v 1.11 1996/01/29 22:52:21 jonathan Exp $ */
/* $NetBSD: pm.c,v 1.12 1996/02/02 18:07:29 mycroft Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -56,9 +56,9 @@
*/
#include <fb.h>
#include <pm.h>
#include <dc.h>
#include "fb.h"
#include "pm.h"
#include "dc.h"
#if NPM > 0
#if NDC == 0
pm needs dc device

View File

@ -1,4 +1,4 @@
/* $NetBSD: promio.c,v 1.7 1996/01/29 22:52:31 jonathan Exp $ */
/* $NetBSD: promio.c,v 1.8 1996/02/02 18:07:44 mycroft Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -77,16 +77,16 @@
#include <pmax/dev/lk201.h>
#include <dev/tc/tcvar.h>
#include <pm.h>
#include <cfb.h>
#include <mfb.h>
#include <xcfb.h>
#include <sfb.h>
#include <dc.h>
#include <dtop.h>
#include <scc.h>
#include <le.h>
#include <asc.h>
#include "pm.h"
#include "cfb.h"
#include "mfb.h"
#include "xcfb.h"
#include "sfb.h"
#include "dc.h"
#include "dtop.h"
#include "scc.h"
#include "le.h"
#include "asc.h"
#if NDC > 0
#include <machine/dc7085cons.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: qvss_compat.c,v 1.2 1995/09/18 03:01:24 jonathan Exp $ */
/* $NetBSD: qvss_compat.c,v 1.3 1996/02/02 18:07:33 mycroft Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -89,9 +89,9 @@
#include <pmax/pmax/cons.h>
#include <pmax/pmax/pmaxtype.h>
#include <dc.h>
#include <scc.h>
#include <dtop.h>
#include "dc.h"
#include "scc.h"
#include "dtop.h"
/*

View File

@ -1,4 +1,4 @@
/* $NetBSD: rcons.c,v 1.6 1995/10/05 01:52:51 jonathan Exp $ */
/* $NetBSD: rcons.c,v 1.7 1996/02/02 18:07:35 mycroft Exp $ */
/*
* Copyright (c) 1995
@ -37,7 +37,7 @@
*
*/
#include <rasterconsole.h>
#include "rasterconsole.h"
#if NRASTERCONSOLE > 0
#include <sys/param.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: sfb.c,v 1.5 1996/01/31 02:53:39 jonathan Exp $ */
/* $NetBSD: sfb.c,v 1.6 1996/02/02 18:07:37 mycroft Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* from: @(#)sfb.c 8.1 (Berkeley) 6/10/93
* $Id: sfb.c,v 1.5 1996/01/31 02:53:39 jonathan Exp $
* $Id: sfb.c,v 1.6 1996/02/02 18:07:37 mycroft Exp $
*/
/*
@ -81,8 +81,8 @@
* rights to redistribute these changes.
*/
#include <fb.h>
#include <sfb.h>
#include "fb.h"
#include "sfb.h"
#include <sys/param.h>
#include <sys/kernel.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: xcfb.c,v 1.10 1996/01/29 22:52:24 jonathan Exp $ */
/* $NetBSD: xcfb.c,v 1.11 1996/02/02 18:07:40 mycroft Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -80,10 +80,10 @@
* v 9.2 90/02/13 22:16:24 shirriff Exp SPRITE (DECWRL)";
*/
#include <fb.h>
#include "fb.h"
#include <xcfb.h>
#include <dtop.h>
#include "xcfb.h"
#include "dtop.h"
#if NXCFB > 0
#if NDTOP == 0
xcfb needs dtop device

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu_cons.c,v 1.7 1996/01/29 22:52:31 jonathan Exp $ */
/* $NetBSD: cpu_cons.c,v 1.8 1996/02/02 18:07:44 mycroft Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -77,16 +77,16 @@
#include <pmax/dev/lk201.h>
#include <dev/tc/tcvar.h>
#include <pm.h>
#include <cfb.h>
#include <mfb.h>
#include <xcfb.h>
#include <sfb.h>
#include <dc.h>
#include <dtop.h>
#include <scc.h>
#include <le.h>
#include <asc.h>
#include "pm.h"
#include "cfb.h"
#include "mfb.h"
#include "xcfb.h"
#include "sfb.h"
#include "dc.h"
#include "dtop.h"
#include "scc.h"
#include "le.h"
#include "asc.h"
#if NDC > 0
#include <machine/dc7085cons.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: disksubr.c,v 1.7 1996/01/07 22:02:55 thorpej Exp $ */
/* $NetBSD: disksubr.c,v 1.8 1996/02/02 18:07:47 mycroft Exp $ */
/*
* Copyright (c) 1982, 1986, 1988 Regents of the University of California.
@ -35,11 +35,11 @@
* @(#)ufs_disksubr.c 7.16 (Berkeley) 5/4/91
*/
#include "param.h"
#include "systm.h"
#include "buf.h"
#include "disklabel.h"
#include "syslog.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>
#include <sys/disklabel.h>
#include <sys/syslog.h>
#define b_cylin b_resid

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.43 1996/01/31 08:46:53 jonathan Exp $ */
/* $NetBSD: machdep.c,v 1.44 1996/02/02 18:07:53 mycroft Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -95,16 +95,16 @@
#include <pmax/pmax/pmaxtype.h>
#include <pmax/pmax/cons.h>
#include <pm.h>
#include <cfb.h>
#include <mfb.h>
#include <xcfb.h>
#include <sfb.h>
#include <dc.h>
#include <dtop.h>
#include <scc.h>
#include <le.h>
#include <asc.h>
#include "pm.h"
#include "cfb.h"
#include "mfb.h"
#include "xcfb.h"
#include "sfb.h"
#include "dc.h"
#include "dtop.h"
#include "scc.h"
#include "le.h"
#include "asc.h"
#include <pmax/dev/sccvar.h>
#include <pmax/dev/dcvar.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: mainbus.c,v 1.5 1996/01/29 22:52:34 jonathan Exp $ */
/* $NetBSD: mainbus.c,v 1.6 1996/02/02 18:07:56 mycroft Exp $ */
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
@ -36,7 +36,7 @@
#include <machine/autoconf.h>
/*#include <machine/rpb.h>*/
#include "pmaxtype.h"
#include "machine/machConst.h"
#include <machine/machConst.h>
#include "nameglue.h"
#include "kn01.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmax_trap.c,v 1.26 1996/01/31 08:47:00 jonathan Exp $ */
/* $NetBSD: pmax_trap.c,v 1.27 1996/02/02 18:07:59 mycroft Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -78,10 +78,10 @@
#include <pmax/stand/dec_prom.h>
#include <asc.h>
#include <sii.h>
#include <le.h>
#include <dc.h>
#include "asc.h"
#include "sii.h"
#include "le.h"
#include "dc.h"
#include <sys/cdefs.h>
#include <sys/syslog.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: trap.c,v 1.26 1996/01/31 08:47:00 jonathan Exp $ */
/* $NetBSD: trap.c,v 1.27 1996/02/02 18:07:59 mycroft Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -78,10 +78,10 @@
#include <pmax/stand/dec_prom.h>
#include <asc.h>
#include <sii.h>
#include <le.h>
#include <dc.h>
#include "asc.h"
#include "sii.h"
#include "le.h"
#include "dc.h"
#include <sys/cdefs.h>
#include <sys/syslog.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: scc.c,v 1.7 1996/01/31 08:47:22 jonathan Exp $ */
/* $NetBSD: scc.c,v 1.8 1996/02/02 18:08:03 mycroft Exp $ */
/*
* Copyright (c) 1991,1990,1989,1994,1995 Carnegie Mellon University
@ -66,7 +66,7 @@
*/
#include <scc.h>
#include "scc.h"
#if NSCC > 0
/*
* Intel 82530 dual usart chip driver. Supports the serial port(s) on the

View File

@ -1,4 +1,4 @@
/* $NetBSD: tc.c,v 1.8 1996/01/29 22:52:44 jonathan Exp $ */
/* $NetBSD: tc.c,v 1.9 1996/02/02 18:08:06 mycroft Exp $ */
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
@ -37,9 +37,9 @@
/* Which TC framebuffers have drivers, for configuring a console device. */
#include <cfb.h>
#include <mfb.h>
#include <sfb.h>
#include "cfb.h"
#include "mfb.h"
#include "sfb.h"
extern int pmax_boardtype;

View File

@ -1,4 +1,4 @@
/* $NetBSD: db_trace.c,v 1.4 1995/07/05 18:51:41 pk Exp $ */
/* $NetBSD: db_trace.c,v 1.5 1996/02/02 18:08:09 mycroft Exp $ */
/*
* Mach Operating System
@ -26,8 +26,8 @@
* rights to redistribute these changes.
*/
#include "param.h"
#include "proc.h"
#include <sys/param.h>
#include <sys/proc.h>
#include <machine/db_machdep.h>
#include <ddb/db_access.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_de.c,v 1.12 1995/12/30 19:42:16 ragge Exp $ */
/* $NetBSD: if_de.c,v 1.13 1996/02/02 18:08:12 mycroft Exp $ */
/*
* Copyright (c) 1982, 1986, 1989 Regents of the University of California.
@ -45,49 +45,49 @@
* timeout routine (get statistics)
*/
#include "sys/param.h"
#include "sys/systm.h"
#include "sys/mbuf.h"
#include "sys/buf.h"
#include "sys/protosw.h"
#include "sys/socket.h"
#include "sys/ioctl.h"
#include "sys/errno.h"
#include "sys/syslog.h"
#include "sys/device.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mbuf.h>
#include <sys/buf.h>
#include <sys/protosw.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
#include <sys/syslog.h>
#include <sys/device.h>
#include "machine/pte.h"
#include "machine/sid.h"
#include <machine/pte.h>
#include <machine/sid.h>
#include "net/if.h"
#include "net/netisr.h"
#include "net/route.h"
#include <net/if.h>
#include <net/netisr.h>
#include <net/route.h>
#ifdef INET
#include "netinet/in.h"
#include "netinet/in_systm.h"
#include "netinet/in_var.h"
#include "netinet/ip.h"
#include "netinet/if_ether.h"
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/in_var.h>
#include <netinet/ip.h>
#include <netinet/if_ether.h>
#endif
#ifdef NS
#include "netns/ns.h"
#include "netns/ns_if.h"
#include <netns/ns.h>
#include <netns/ns_if.h>
#endif
#ifdef ISO
#include "netiso/iso.h"
#include "netiso/iso_var.h"
#include <netiso/iso.h>
#include <netiso/iso_var.h>
extern char all_es_snpa[], all_is_snpa[];
#endif
#include "../include/cpu.h"
#include "../include/mtpr.h"
#include <machine/cpu.h>
#include <machine/mtpr.h>
#include "if_dereg.h"
#include "if_uba.h"
#include "../uba/ubareg.h"
#include "../uba/ubavar.h"
#include <vax/uba/ubareg.h>
#include <vax/uba/ubavar.h>
#define NXMT 3 /* number of transmit buffers */
#define NRCV 7 /* number of receive buffers (must be > 1) */

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_qe.c,v 1.8 1995/12/24 02:30:55 mycroft Exp $ */
/* $NetBSD: if_qe.c,v 1.9 1996/02/02 18:08:14 mycroft Exp $ */
/*
* Copyright (c) 1988 Regents of the University of California.
@ -137,49 +137,49 @@
/*
* Digital Q-BUS to NI Adapter
*/
#include "sys/param.h"
#include "sys/systm.h"
#include "sys/mbuf.h"
#include "sys/buf.h"
#include "sys/protosw.h"
#include "sys/socket.h"
#include "sys/ioctl.h"
#include "sys/errno.h"
#include "sys/syslog.h"
#include "sys/device.h"
#include "sys/time.h"
#include "sys/kernel.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mbuf.h>
#include <sys/buf.h>
#include <sys/protosw.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
#include <sys/syslog.h>
#include <sys/device.h>
#include <sys/time.h>
#include <sys/kernel.h>
#include "net/if.h"
#include "net/netisr.h"
#include "net/route.h"
#include <net/if.h>
#include <net/netisr.h>
#include <net/route.h>
#ifdef INET
#include "netinet/in.h"
#include "netinet/in_systm.h"
#include "netinet/in_var.h"
#include "netinet/ip.h"
#include "netinet/if_ether.h"
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/in_var.h>
#include <netinet/ip.h>
#include <netinet/if_ether.h>
#endif
#ifdef NS
#include "netns/ns.h"
#include "netns/ns_if.h"
#include <netns/ns.h>
#include <netns/ns_if.h>
#endif
#ifdef ISO
#include "netiso/iso.h"
#include "netiso/iso_var.h"
#include <netiso/iso.h>
#include <netiso/iso_var.h>
extern char all_es_snpa[], all_is_snpa[], all_l1is_snpa[], all_l2is_snpa[];
#endif
#include "machine/pte.h"
#include "machine/cpu.h"
#include "machine/mtpr.h"
#include <machine/pte.h>
#include <machine/cpu.h>
#include <machine/mtpr.h>
#include "if_qereg.h"
#include "if_uba.h"
#include "vax/uba/ubareg.h"
#include "vax/uba/ubavar.h"
#include <vax/uba/ubareg.h>
#include <vax/uba/ubavar.h>
#define NRCV 15 /* Receive descriptors */
#define NXMT 5 /* Transmit descriptors */

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_uba.c,v 1.7 1995/11/10 19:25:56 ragge Exp $ */
/* $NetBSD: if_uba.c,v 1.8 1996/02/02 18:08:17 mycroft Exp $ */
/*
* Copyright (c) 1982, 1986, 1988 Regents of the University of California.
@ -35,24 +35,24 @@
* @(#)if_uba.c 7.16 (Berkeley) 12/16/90
*/
#include "sys/param.h"
#include "sys/systm.h"
#include "sys/malloc.h"
#include "sys/mbuf.h"
#include "sys/map.h"
#include "sys/buf.h"
#include "sys/socket.h"
#include "sys/syslog.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/map.h>
#include <sys/buf.h>
#include <sys/socket.h>
#include <sys/syslog.h>
#include "net/if.h"
#include <net/if.h>
#include "machine/pte.h"
#include "machine/mtpr.h"
#include "machine/vmparam.h"
#include "machine/macros.h"
#include <machine/pte.h>
#include <machine/mtpr.h>
#include <machine/vmparam.h>
#include <machine/macros.h>
#include "if_uba.h"
#include "vax/uba/ubareg.h"
#include "vax/uba/ubavar.h"
#include <vax/uba/ubareg.h>
#include <vax/uba/ubavar.h>
static if_ubaalloc(struct ifubinfo *, struct ifrw *, int);
static rcv_xmtbuf(struct ifxmt *);

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.h,v 1.13 1995/12/13 18:57:57 ragge Exp $ */
/* $NetBSD: cpu.h,v 1.14 1996/02/02 18:08:20 mycroft Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden
@ -32,9 +32,9 @@
/* All bugs are subject to removal without further notice */
#include "sys/cdefs.h"
#include "machine/mtpr.h"
#include "machine/pcb.h"
#include <sys/cdefs.h>
#include <machine/mtpr.h>
#include <machine/pcb.h>
#define enablertclock()
#define cpu_wait(p)

View File

@ -1,4 +1,4 @@
/* $NetBSD: ka750.h,v 1.3 1995/11/12 14:37:20 ragge Exp $ */
/* $NetBSD: ka750.h,v 1.4 1996/02/02 18:08:22 mycroft Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@ -30,7 +30,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "machine/nexus.h"
#include <machine/nexus.h>
#define V750UCODE(x) ((x>>8)&255)
#define V750HARDW(x) (x&255)

View File

@ -1,4 +1,4 @@
/* $NetBSD: mtpr.h,v 1.5 1995/05/03 19:53:45 ragge Exp $ */
/* $NetBSD: mtpr.h,v 1.6 1996/02/02 18:08:23 mycroft Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@ -35,7 +35,7 @@
#ifndef _VAX_MTPR_H_
#define _VAX_MTPR_H_
#include "machine/macros.h"
#include <machine/macros.h>
/******************************************************************************

View File

@ -1,4 +1,4 @@
/* $NetBSD: nexus.h,v 1.7 1996/02/01 22:33:32 mycroft Exp $ */
/* $NetBSD: nexus.h,v 1.8 1996/02/02 18:08:24 mycroft Exp $ */
/*-
* Copyright (c) 1982, 1986 The Regents of the University of California.
@ -77,7 +77,7 @@
#ifndef ASSEMBLER
#include "sys/types.h"
#include <sys/types.h>
struct nexus {
union nexcsr {

View File

@ -1,4 +1,4 @@
/* $NetBSD: param.h,v 1.14 1995/12/30 21:37:31 ragge Exp $ */
/* $NetBSD: param.h,v 1.15 1996/02/02 18:08:25 mycroft Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -41,8 +41,8 @@
#ifndef _VAX_PARAM_H_
#define _VAX_PARAM_H_
#include "machine/macros.h"
#include "machine/psl.h"
#include <machine/macros.h>
#include <machine/psl.h>
/*
* Machine dependent constants for VAX.

View File

@ -1,4 +1,4 @@
/* $NetBSD: pcb.h,v 1.9 1996/01/28 12:27:19 ragge Exp $ */
/* $NetBSD: pcb.h,v 1.10 1996/02/02 18:08:26 mycroft Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@ -35,7 +35,7 @@
#ifndef _VAX_PCB_H_
#define _VAX_PCB_H_
#include "machine/trap.h"
#include <machine/trap.h>
struct pcb {

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.h,v 1.11 1995/11/12 14:41:41 ragge Exp $ */
/* $NetBSD: pmap.h,v 1.12 1996/02/02 18:08:27 mycroft Exp $ */
/*
* Copyright (c) 1987 Carnegie-Mellon University
@ -46,7 +46,7 @@
#ifndef PMAP_H
#define PMAP_H
#include "machine/mtpr.h"
#include <machine/mtpr.h>
#define VAX_PAGE_SIZE NBPG

View File

@ -1,4 +1,4 @@
/* $NetBSD: pte.h,v 1.7 1996/01/28 12:31:24 ragge Exp $ */
/* $NetBSD: pte.h,v 1.8 1996/02/02 18:08:28 mycroft Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@ -30,7 +30,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "machine/param.h"
#include <machine/param.h>
#ifndef ASSEMBLER

View File

@ -1,4 +1,4 @@
/* $NetBSD: hp.c,v 1.1 1995/02/13 00:43:59 ragge Exp $ */
/* $NetBSD: hp.c,v 1.2 1996/02/02 18:08:30 mycroft Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
* All rights reserved.
@ -35,15 +35,15 @@
/* hp.c - drivrutiner f|r massbussdiskar 940325/ragge */
#include "param.h"
#include <sys/param.h>
#include "types.h"
#include "fcntl.h"
#include "syslog.h"
#include "disklabel.h"
#include "buf.h"
#include "vax/mba/mbareg.h"
#include "vax/mba/mbavar.h"
#include "vax/mba/hpdefs.h"
#include <sys/fcntl.h>
#include <sys/syslog.h>
#include <sys/disklabel.h>
#include <sys/buf.h>
#include <vax/mba/mbareg.h>
#include <vax/mba/mbavar.h>
#include <vax/mba/hpdefs.h>
#include "hp.h"
struct mba_device *hpinfo[NHP];

View File

@ -1,5 +1,5 @@
/* $NetBSD: mba.c,v 1.1 1995/02/13 00:44:02 ragge Exp $ */
/* $NetBSD: mba.c,v 1.2 1996/02/02 18:08:31 mycroft Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
* All rights reserved.
@ -38,8 +38,8 @@
#include "mba.h"
#include "nexus.h"
#include "vax/mba/mbavar.h"
#include "vax/mba/mbareg.h"
#include <vax/mba/mbavar.h>
#include <vax/mba/mbareg.h>
struct mba_ctrl mba_ctrl[NMBA];

View File

@ -1,4 +1,4 @@
/* $NetBSD: tmscp.c,v 1.7 1995/12/13 19:02:53 ragge Exp $ */
/* $NetBSD: tmscp.c,v 1.8 1996/02/02 18:08:33 mycroft Exp $ */
/*-
* Copyright (c) 1991 The Regents of the University of California.
@ -158,27 +158,27 @@
#include "tmscp.h"
#if NTMSCP > 0
#include "sys/param.h"
#include "sys/systm.h"
#include "sys/buf.h"
#include "sys/conf.h"
#include "sys/errno.h"
#include "sys/file.h"
#include "sys/map.h"
#include "sys/ioctl.h"
#include "sys/syslog.h"
#include "sys/mtio.h"
/* #include "sys/cmap.h" */
#include "sys/uio.h"
#include "sys/proc.h"
#include "sys/tprintf.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>
#include <sys/conf.h>
#include <sys/errno.h>
#include <sys/file.h>
#include <sys/map.h>
#include <sys/ioctl.h>
#include <sys/syslog.h>
#include <sys/mtio.h>
/* #include <sys/cmap.h> */
#include <sys/uio.h>
#include <sys/proc.h>
#include <sys/tprintf.h>
#include "vax/include/pte.h"
#include "vax/include/cpu.h"
#include "vax/include/mtpr.h"
#include "vax/include/sid.h"
#include "vax/uba/ubareg.h"
#include "vax/uba/ubavar.h"
#include <machine/pte.h>
#include <machine/cpu.h>
#include <machine/mtpr.h>
#include <machine/sid.h>
#include <vax/uba/ubareg.h>
#include <vax/uba/ubavar.h>
#define TENSEC (1000)
#define TMS_PRI LOG_INFO
@ -189,8 +189,8 @@
#define NCMD (1<<NCMDL2)
#include "tmscpreg.h"
#include "vax/vax/tmscpinf.h"
#include "vax/vax/mscpvar.h"
#include <vax/vax/tmscpinf.h>
#include <vax/vax/mscpvar.h>
int tmscp_match __P((struct device *, void *, void *));
void tmscp_attach __P((struct device *, struct device *, void *));

View File

@ -1,4 +1,4 @@
/* $NetBSD: ts.c,v 1.1 1996/01/06 16:43:46 ragge Exp $ */
/* $NetBSD: ts.c,v 1.2 1996/02/02 18:08:36 mycroft Exp $ */
/*-
* Copyright (c) 1991 The Regents of the University of California.
@ -134,28 +134,28 @@ int tstrace = 1;
#if NTS > 0
#include "sys/param.h"
#include "sys/systm.h"
#include "sys/kernel.h"
#include "sys/buf.h"
#include "sys/conf.h"
#include "sys/errno.h"
#include "sys/file.h"
#include "sys/map.h"
#include "sys/syslog.h"
#include "sys/ioctl.h"
#include "sys/mtio.h"
#include "sys/uio.h"
#include "sys/proc.h"
#include "sys/tprintf.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/buf.h>
#include <sys/conf.h>
#include <sys/errno.h>
#include <sys/file.h>
#include <sys/map.h>
#include <sys/syslog.h>
#include <sys/ioctl.h>
#include <sys/mtio.h>
#include <sys/uio.h>
#include <sys/proc.h>
#include <sys/tprintf.h>
#include "machine/pte.h"
#include "machine/sid.h"
#include "machine/cpu.h"
#include "machine/mtpr.h"
#include <machine/pte.h>
#include <machine/sid.h>
#include <machine/cpu.h>
#include <machine/mtpr.h>
#include "vax/uba/ubareg.h"
#include "vax/uba/ubavar.h"
#include <vax/uba/ubareg.h>
#include <vax/uba/ubavar.h>
#include "tsreg.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: uba.c,v 1.12 1995/12/28 19:17:07 thorpej Exp $ */
/* $NetBSD: uba.c,v 1.13 1996/02/02 18:08:38 mycroft Exp $ */
/*
* Copyright (c) 1982, 1986 The Regents of the University of California.
@ -37,31 +37,31 @@
* @(#)autoconf.c 7.20 (Berkeley) 5/9/91
*/
#include "sys/param.h"
#include "sys/types.h"
#include "sys/time.h"
#include "sys/systm.h"
#include "sys/map.h"
#include "sys/buf.h"
#include "sys/proc.h"
#include "sys/user.h"
#include "sys/conf.h"
#include "sys/dkstat.h"
#include "sys/kernel.h"
#include "sys/malloc.h"
#include "sys/device.h"
#include <sys/param.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/systm.h>
#include <sys/map.h>
#include <sys/buf.h>
#include <sys/proc.h>
#include <sys/user.h>
#include <sys/conf.h>
#include <sys/dkstat.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/device.h>
#include "vm/vm.h"
#include "vm/vm_kern.h"
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include "machine/pte.h"
#include "machine/cpu.h"
#include "machine/mtpr.h"
#include "machine/nexus.h"
#include "machine/sid.h"
#include "machine/scb.h"
#include "machine/trap.h"
#include "machine/frame.h"
#include <machine/pte.h>
#include <machine/cpu.h>
#include <machine/mtpr.h>
#include <machine/nexus.h>
#include <machine/sid.h>
#include <machine/scb.h>
#include <machine/trap.h>
#include <machine/frame.h>
#include "ubareg.h"
#include "ubavar.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: ubavar.h,v 1.9 1996/02/01 22:33:38 mycroft Exp $ */
/* $NetBSD: ubavar.h,v 1.10 1996/02/02 18:08:40 mycroft Exp $ */
/*
* Copyright (c) 1982, 1986 Regents of the University of California.
@ -44,8 +44,8 @@
* Each unibus device has a uba_device structure.
*/
#include "sys/buf.h"
#include "sys/device.h"
#include <sys/buf.h>
#include <sys/device.h>
/*
* Per-uba structure.
*

View File

@ -1,4 +1,4 @@
/* $NetBSD: uda.c,v 1.10 1995/12/13 19:02:47 ragge Exp $ */
/* $NetBSD: uda.c,v 1.11 1996/02/02 18:08:42 mycroft Exp $ */
/*
* Copyright (c) 1988 Regents of the University of California.
* All rights reserved.
@ -85,35 +85,35 @@
#define STEP3MASK ALLSTEPS
#define STEP3GOOD UDA_STEP4
#include "sys/param.h"
#include "sys/systm.h"
#include "sys/buf.h"
#include "sys/conf.h"
#include "sys/file.h"
#include "sys/ioctl.h"
#include "sys/proc.h"
#include "sys/user.h"
#include "sys/map.h"
#include "sys/device.h"
#include "sys/dkstat.h"
#include "sys/disklabel.h"
#include "sys/syslog.h"
#include "sys/stat.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>
#include <sys/conf.h>
#include <sys/file.h>
#include <sys/ioctl.h>
#include <sys/proc.h>
#include <sys/user.h>
#include <sys/map.h>
#include <sys/device.h>
#include <sys/dkstat.h>
#include <sys/disklabel.h>
#include <sys/syslog.h>
#include <sys/stat.h>
#include "machine/pte.h"
#include "machine/sid.h"
#include "machine/cpu.h"
#include <machine/pte.h>
#include <machine/sid.h>
#include <machine/cpu.h>
#include "vax/uba/ubareg.h"
#include "vax/uba/ubavar.h"
#include <vax/uba/ubareg.h>
#include <vax/uba/ubavar.h>
#define NRSP (1 << NRSPL2)
#define NCMD (1 << NCMDL2)
#include "vax/uba/udareg.h"
#include "vax/vax/mscp.h"
#include "vax/vax/mscpvar.h"
#include "machine/mtpr.h"
#include <vax/uba/udareg.h>
#include <vax/vax/mscp.h>
#include <vax/vax/mscpvar.h>
#include <machine/mtpr.h>
extern int cold;

View File

@ -1,4 +1,4 @@
/* $NetBSD: autoconf.c,v 1.5 1995/12/13 18:45:57 ragge Exp $ */
/* $NetBSD: autoconf.c,v 1.6 1996/02/02 18:08:48 mycroft Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@ -33,19 +33,19 @@
/* All bugs are subject to removal without further notice */
#include "sys/param.h"
#include "machine/cpu.h"
#include "machine/sid.h"
#include "sys/types.h"
#include "sys/device.h"
#include "sys/reboot.h"
#include "sys/conf.h"
#include "machine/param.h"
#include "machine/vmparam.h"
#include "machine/nexus.h"
#include "machine/ka750.h"
#include "machine/../vax/gencons.h"
#include "vm/vm.h"
#include <sys/param.h>
#include <machine/cpu.h>
#include <machine/sid.h>
#include <sys/types.h>
#include <sys/device.h>
#include <sys/reboot.h>
#include <sys/conf.h>
#include <machine/param.h>
#include <machine/vmparam.h>
#include <machine/nexus.h>
#include <machine/ka750.h>
#include <machine/../vax/gencons.h"
#include <vm/vm.h>
#define BACKPLANE 0
#define BIBUSS 1

View File

@ -1,4 +1,4 @@
/* $NetBSD: clock.c,v 1.9 1995/12/13 18:45:56 ragge Exp $ */
/* $NetBSD: clock.c,v 1.10 1996/02/02 18:08:49 mycroft Exp $ */
/*
* Copyright (c) 1995 Ludd, University of Lule}, Sweden.
* All rights reserved.
@ -33,8 +33,8 @@
#include <sys/param.h>
#include <sys/kernel.h>
#include "machine/mtpr.h"
#include "machine/sid.h"
#include <machine/mtpr.h>
#include <machine/sid.h>
#define SEC_PER_DAY (60*60*24)

View File

@ -1,4 +1,4 @@
/* $NetBSD: db_disasm.c,v 1.3 1996/01/28 11:31:25 ragge Exp $ */
/* $NetBSD: db_disasm.c,v 1.4 1996/02/02 18:08:50 mycroft Exp $ */
/*
* Copyright (c) 1996 Ludd, University of Lule}, Sweden.
* All rights reserved.
@ -42,7 +42,7 @@
#include <machine/db_machdep.h>
#include <ddb/db_sym.h>
#include "vax/vax/db_disasm.h"
#include <vax/vax/db_disasm.h>
#ifdef VMS_MODE
#define DEFERRED '@'

View File

@ -1,4 +1,4 @@
/* $NetBSD: disksubr.c,v 1.7 1996/01/28 12:14:48 ragge Exp $ */
/* $NetBSD: disksubr.c,v 1.8 1996/02/02 18:08:51 mycroft Exp $ */
/*
* Copyright (c) 1982, 1986, 1988 Regents of the University of California.
@ -35,13 +35,13 @@
* @(#)ufs_disksubr.c 7.16 (Berkeley) 5/4/91
*/
#include "param.h"
#include "systm.h"
#include "buf.h"
#include "dkbad.h"
#include "disklabel.h"
#include "syslog.h"
#include "machine/macros.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>
#include <sys/dkbad.h>
#include <sys/disklabel.h>
#include <sys/syslog.h>
#include <machine/macros.h>
/* XXX encoding of disk minor numbers, should be elsewhere... */
#define dkunit(dev) (minor(dev) >> 3)

View File

@ -1,4 +1,4 @@
/* $NetBSD: gencons.c,v 1.7 1996/01/28 12:11:57 ragge Exp $ */
/* $NetBSD: gencons.c,v 1.8 1996/02/02 18:08:52 mycroft Exp $ */
/*
* Copyright (c) 1994 Gordon W. Ross
@ -35,20 +35,20 @@
/* All bugs are subject to removal without further notice */
#include "sys/param.h"
#include "sys/proc.h"
#include "sys/systm.h"
#include "sys/ioctl.h"
#include "sys/tty.h"
#include "sys/file.h"
#include "sys/conf.h"
#include "sys/device.h"
#include "sys/reboot.h"
#include <sys/param.h>
#include <sys/proc.h>
#include <sys/systm.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/file.h>
#include <sys/conf.h>
#include <sys/device.h>
#include <sys/reboot.h>
#include "dev/cons.h"
#include <dev/cons.h>
#include "machine/mtpr.h"
#include "machine/../vax/gencons.h"
#include <machine/mtpr.h>
#include <machine/../vax/gencons.h>
struct tty *gencn_tty[1];

View File

@ -1,4 +1,4 @@
/* $NetBSD: intvec.s,v 1.13 1996/01/28 12:22:55 ragge Exp $ */
/* $NetBSD: intvec.s,v 1.14 1996/02/02 18:08:54 mycroft Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@ -34,9 +34,9 @@
#include "machine/mtpr.h"
#include "machine/pte.h"
#include "machine/trap.h"
#include <machine/mtpr.h>
#include <machine/pte.h>
#include <machine/trap.h>
#define TRAPCALL(namn, typ) \
.align 2; namn ## :;.globl namn ;pushl $0; pushl $typ; jbr trap;

View File

@ -1,4 +1,4 @@
/* $NetBSD: ka650.c,v 1.1 1995/12/13 18:45:52 ragge Exp $ */
/* $NetBSD: ka650.c,v 1.2 1996/02/02 18:08:55 mycroft Exp $ */
/*
* Copyright (c) 1988 The Regents of the University of California.
* All rights reserved.
@ -41,19 +41,19 @@
* vax650-specific code.
*/
#include "sys/param.h"
#include "sys/time.h"
#include "sys/kernel.h"
#include "sys/systm.h"
#include "sys/device.h"
#include "vm/vm.h"
#include "vm/vm_kern.h"
#include <sys/param.h>
#include <sys/time.h>
#include <sys/kernel.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include "machine/ka650.h"
#include "machine/cpu.h"
#include "machine/psl.h"
#include "machine/mtpr.h"
#include "machine/nexus.h"
#include <machine/ka650.h>
#include <machine/cpu.h>
#include <machine/psl.h>
#include <machine/mtpr.h>
#include <machine/nexus.h>
struct ka650_merr *ka650merr_ptr;
struct ka650_cbd *ka650cbd_ptr;

View File

@ -1,4 +1,4 @@
/* $NetBSD: ka750.c,v 1.8 1995/12/13 18:50:34 ragge Exp $ */
/* $NetBSD: ka750.c,v 1.9 1996/02/02 18:08:56 mycroft Exp $ */
/*-
* Copyright (c) 1982, 1986, 1988 The Regents of the University of California.
@ -37,18 +37,18 @@
* @(#)autoconf.c 7.20 (Berkeley) 5/9/91
*/
#include "sys/param.h"
#include "sys/types.h"
#include "sys/device.h"
#include "vm/vm.h"
#include "vm/vm_kern.h"
#include <sys/param.h>
#include <sys/types.h>
#include <sys/device.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include "machine/ka750.h"
#include "machine/pte.h"
#include "machine/cpu.h"
#include "machine/mtpr.h"
#include "vax/uba/ubavar.h"
#include "vax/uba/ubareg.h"
#include <machine/ka750.h>
#include <machine/pte.h>
#include <machine/cpu.h>
#include <machine/mtpr.h>
#include <vax/uba/ubavar.h>
#include <vax/uba/ubareg.h>
/*
* ka750_conf() is called by cpu_attach to do the cpu_specific setup.

View File

@ -1,4 +1,4 @@
/* $NetBSD: locore.c,v 1.11 1996/01/28 12:18:06 ragge Exp $ */
/* $NetBSD: locore.c,v 1.12 1996/02/02 18:08:58 mycroft Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@ -33,18 +33,18 @@
/* All bugs are subject to removal without further notice */
#include "sys/param.h"
#include "sys/types.h"
#include "sys/reboot.h"
#include <sys/param.h>
#include <sys/types.h>
#include <sys/reboot.h>
#include "vm/vm.h"
#include <vm/vm.h>
#include "machine/cpu.h"
#include "machine/sid.h"
#include "machine/uvaxII.h"
#include "machine/param.h"
#include "machine/vmparam.h"
#include "machine/pcb.h"
#include <machine/cpu.h>
#include <machine/sid.h>
#include <machine/uvaxII.h>
#include <machine/param.h>
#include <machine/vmparam.h>
#include <machine/pcb.h>
u_int proc0paddr;
int cpunumber, *Sysmap, boothowto, cpu_type;

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.23 1996/01/28 12:22:54 ragge Exp $ */
/* $NetBSD: machdep.c,v 1.24 1996/02/02 18:08:59 mycroft Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@ -45,44 +45,44 @@
* @(#)machdep.c 7.16 (Berkeley) 6/3/91
*/
#include "sys/param.h"
#include "sys/systm.h"
#include "sys/map.h"
#include "sys/proc.h"
#include "sys/user.h"
#include "sys/time.h"
#include "sys/signal.h"
#include "sys/kernel.h"
#include "sys/reboot.h"
#include "sys/msgbuf.h"
#include "sys/buf.h"
#include "sys/mbuf.h"
#include "sys/reboot.h"
#include "sys/conf.h"
#include "sys/callout.h"
#include "sys/device.h"
#include "sys/exec.h"
#include "sys/mount.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/map.h>
#include <sys/proc.h>
#include <sys/user.h>
#include <sys/time.h>
#include <sys/signal.h>
#include <sys/kernel.h>
#include <sys/reboot.h>
#include <sys/msgbuf.h>
#include <sys/buf.h>
#include <sys/mbuf.h>
#include <sys/reboot.h>
#include <sys/conf.h>
#include <sys/callout.h>
#include <sys/device.h>
#include <sys/exec.h>
#include <sys/mount.h>
#ifdef SYSVMSG
#include "sys/msg.h"
#include <sys/msg.h>
#endif
#ifdef SYSVSEM
#include "sys/sem.h"
#include <sys/sem.h>
#endif
#ifdef SYSVSHM
#include "sys/shm.h"
#include <sys/shm.h>
#endif
#include "machine/sid.h"
#include "machine/pte.h"
#include "machine/mtpr.h"
#include "machine/cpu.h"
#include "machine/macros.h"
#include "machine/nexus.h"
#include "machine/trap.h"
#include "machine/reg.h"
#include "machine/../vax/gencons.h"
#include "vm/vm_kern.h"
#include "net/netisr.h"
#include <machine/sid.h>
#include <machine/pte.h>
#include <machine/mtpr.h>
#include <machine/cpu.h>
#include <machine/macros.h>
#include <machine/nexus.h>
#include <machine/trap.h>
#include <machine/reg.h>
#include <machine/../vax/gencons.h>
#include <vm/vm_kern.h>
#include <net/netisr.h>
#include <sys/syscallargs.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: mscp.c,v 1.6 1995/11/30 00:59:37 jtc Exp $ */
/* $NetBSD: mscp.c,v 1.7 1996/02/02 18:09:00 mycroft Exp $ */
/*
* Copyright (c) 1988 Regents of the University of California.
@ -42,15 +42,15 @@
* MSCP generic driver routines
*/
#include "sys/param.h"
#include "sys/buf.h"
#include "sys/errno.h"
#include "sys/dkstat.h"
#include "sys/ioctl.h"
#include "sys/disklabel.h"
#include "sys/syslog.h"
#include <sys/param.h>
#include <sys/buf.h>
#include <sys/errno.h>
#include <sys/dkstat.h>
#include <sys/ioctl.h>
#include <sys/disklabel.h>
#include <sys/syslog.h>
#include "../uba/ubavar.h"
#include <vax/uba/ubavar.h>
#include "mscp.h"
#include "mscpvar.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.c,v 1.19 1995/12/13 18:50:20 ragge Exp $ */
/* $NetBSD: pmap.c,v 1.20 1996/02/02 18:09:02 mycroft Exp $ */
#define DEBUG
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@ -30,26 +30,26 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "sys/types.h"
#include "sys/param.h"
#include "sys/queue.h"
#include "sys/malloc.h"
#include "sys/proc.h"
#include "sys/user.h"
#include "sys/msgbuf.h"
#include <sys/types.h>
#include <sys/param.h>
#include <sys/queue.h>
#include <sys/malloc.h>
#include <sys/proc.h>
#include <sys/user.h>
#include <sys/msgbuf.h>
#include "vm/vm.h"
#include "vm/vm_page.h"
#include "vm/vm_kern.h"
#include <vm/vm.h>
#include <vm/vm_page.h>
#include <vm/vm_kern.h>
#include "machine/pte.h"
#include "machine/pcb.h"
#include "machine/mtpr.h"
#include "machine/macros.h"
#include "machine/sid.h"
#include "machine/uvaxII.h"
#include "machine/cpu.h"
#include "machine/scb.h"
#include <machine/pte.h>
#include <machine/pcb.h>
#include <machine/mtpr.h>
#include <machine/macros.h>
#include <machine/sid.h>
#include <machine/uvaxII.h>
#include <machine/cpu.h>
#include <machine/scb.h>
pt_entry_t *pmap_virt2pte(pmap_t, u_int);

View File

@ -1,4 +1,4 @@
/* $NetBSD: rootfil.c,v 1.7 1996/01/28 12:09:34 ragge Exp $ */
/* $NetBSD: rootfil.c,v 1.8 1996/02/02 18:09:03 mycroft Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -44,17 +44,17 @@
*/
/* All bugs are subject to removal without further notice */
#include "param.h"
#include "vax/include/sid.h"
#include "buf.h"
#include "mbuf.h"
#include "vax/include/pte.h"
#include <sys/param.h>
#include <machine/sid.h>
#include <sys/buf.h>
#include <sys/mbuf.h>
#include <machine/pte.h>
#include "uda.h"
#include "reboot.h"
#include "conf.h"
#include "vax/include/macros.h"
#include "vax/include/nexus.h"
#include "vax/uba/ubavar.h"
#include <sys/reboot.h>
#include <sys/conf.h>
#include <machine/macros.h>
#include <machine/nexus.h>
#include <vax/uba/ubavar.h>
#define DOSWAP /* Change swdevt, argdev, and dumpdev too */
u_long bootdev; /* should be dev_t, but not until 32 bits */

View File

@ -1,4 +1,4 @@
/* $NetBSD: sbi.c,v 1.4 1995/12/13 18:45:53 ragge Exp $ */
/* $NetBSD: sbi.c,v 1.5 1996/02/02 18:09:04 mycroft Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
* All rights reserved.
@ -29,15 +29,15 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "sys/types.h"
#include "sys/param.h"
#include "sys/device.h"
#include "vm/vm.h"
#include "vm/vm_kern.h"
#include "vm/vm_page.h"
#include "machine/ka750.h"
#include "machine/pmap.h"
#include "machine/sid.h"
#include <sys/types.h>
#include <sys/param.h>
#include <sys/device.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <machine/ka750.h>
#include <machine/pmap.h>
#include <machine/sid.h>
struct nexus *nexus;

View File

@ -1,4 +1,4 @@
/* $NetBSD: subr.s,v 1.13 1996/01/28 12:22:52 ragge Exp $ */
/* $NetBSD: subr.s,v 1.14 1996/02/02 18:09:05 mycroft Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@ -33,13 +33,13 @@
/* All bugs are subject to removal without further notice */
#include "sys/syscall.h"
#include "sys/errno.h"
#include <sys/syscall.h>
#include <sys/errno.h>
#include "machine/mtpr.h"
#include "machine/vmparam.h"
#include "machine/pte.h"
#include "machine/nexus.h"
#include <machine/mtpr.h>
#include <machine/vmparam.h>
#include <machine/pte.h>
#include <machine/nexus.h>
.text

View File

@ -1,4 +1,4 @@
/* $NetBSD: swapgeneric.c,v 1.6 1996/01/28 12:09:37 ragge Exp $ */
/* $NetBSD: swapgeneric.c,v 1.7 1996/02/02 18:09:07 mycroft Exp $ */
/*-
* Copyright (c) 1982, 1986 The Regents of the University of California.
@ -38,18 +38,18 @@
#include "uda.h"
#include "hp.h"
#include "sys/param.h"
#include "sys/conf.h"
#include "sys/buf.h"
#include "sys/systm.h"
#include "sys/reboot.h"
#include "sys/device.h"
#include <sys/param.h>
#include <sys/conf.h>
#include <sys/buf.h>
#include <sys/systm.h>
#include <sys/reboot.h>
#include <sys/device.h>
#include "machine/pte.h"
#include "machine/mtpr.h"
#include <machine/pte.h>
#include <machine/mtpr.h>
#include "../uba/ubareg.h"
#include "../uba/ubavar.h"
#include <vax/uba/ubareg.h>
#include <vax/uba/ubavar.h>
/*
* Generic configuration; all in one

View File

@ -1,4 +1,4 @@
/* $NetBSD: trap.c,v 1.15 1996/01/28 12:24:33 ragge Exp $ */
/* $NetBSD: trap.c,v 1.16 1996/02/02 18:09:08 mycroft Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@ -34,23 +34,23 @@
#include "sys/types.h"
#include "sys/param.h"
#include "sys/proc.h"
#include "sys/user.h"
#include "sys/syscall.h"
#include "sys/systm.h"
#include "sys/signalvar.h"
#include "sys/exec.h"
#include "vm/vm.h"
#include "vm/vm_kern.h"
#include "vm/vm_page.h"
#include "vax/include/mtpr.h"
#include "vax/include/pte.h"
#include "vax/include/pcb.h"
#include "vax/include/trap.h"
#include "vax/include/pmap.h"
#include "kern/syscalls.c"
#include <sys/types.h>
#include <sys/param.h>
#include <sys/proc.h>
#include <sys/user.h>
#include <sys/syscall.h>
#include <sys/systm.h>
#include <sys/signalvar.h>
#include <sys/exec.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <machine/mtpr.h>
#include <machine/pte.h>
#include <machine/pcb.h>
#include <machine/trap.h>
#include <machine/pmap.h>
#include <kern/syscalls.c>
extern int want_resched,whichqs;

View File

@ -1,4 +1,4 @@
/* $NetBSD: uvaxII.c,v 1.5 1996/01/28 11:45:07 ragge Exp $ */
/* $NetBSD: uvaxII.c,v 1.6 1996/02/02 18:09:09 mycroft Exp $ */
/*-
* Copyright (c) 1988 The Regents of the University of California.
@ -35,18 +35,18 @@
* @(#)ka630.c 7.8 (Berkeley) 5/9/91
*/
#include "sys/param.h"
#include "sys/types.h"
#include "sys/device.h"
#include "vm/vm.h"
#include "vm/vm_kern.h"
#include <sys/param.h>
#include <sys/types.h>
#include <sys/device.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include "machine/uvaxII.h"
#include "machine/pte.h"
#include "machine/mtpr.h"
#include "machine/sid.h"
#include "machine/pmap.h"
#include "machine/nexus.h"
#include <machine/uvaxII.h>
#include <machine/pte.h>
#include <machine/mtpr.h>
#include <machine/sid.h>
#include <machine/pmap.h>
#include <machine/nexus.h>
struct uvaxIIcpu *uvaxIIcpu_ptr;

View File

@ -1,4 +1,4 @@
/* $NetBSD: vm_machdep.c,v 1.19 1996/01/28 12:22:49 ragge Exp $ */
/* $NetBSD: vm_machdep.c,v 1.20 1996/02/02 18:09:11 mycroft Exp $ */
#undef SWDEBUG
/*
@ -33,25 +33,25 @@
/* All bugs are subject to removal without further notice */
#include "sys/types.h"
#include "sys/param.h"
#include "sys/proc.h"
#include "sys/user.h"
#include "sys/exec.h"
#include "sys/vnode.h"
#include "sys/core.h"
#include "sys/mount.h"
#include "vm/vm.h"
#include "vm/vm_kern.h"
#include "vm/vm_page.h"
#include "machine/vmparam.h"
#include "machine/mtpr.h"
#include "machine/pmap.h"
#include "machine/pte.h"
#include "machine/macros.h"
#include "machine/trap.h"
#include "machine/pcb.h"
#include "machine/frame.h"
#include <sys/types.h>
#include <sys/param.h>
#include <sys/proc.h>
#include <sys/user.h>
#include <sys/exec.h>
#include <sys/vnode.h>
#include <sys/core.h>
#include <sys/mount.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <machine/vmparam.h>
#include <machine/mtpr.h>
#include <machine/pmap.h>
#include <machine/pte.h>
#include <machine/macros.h>
#include <machine/trap.h>
#include <machine/pcb.h>
#include <machine/frame.h>
#include <sys/syscallargs.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: uba.c,v 1.12 1995/12/28 19:17:07 thorpej Exp $ */
/* $NetBSD: uba.c,v 1.13 1996/02/02 18:08:38 mycroft Exp $ */
/*
* Copyright (c) 1982, 1986 The Regents of the University of California.
@ -37,31 +37,31 @@
* @(#)autoconf.c 7.20 (Berkeley) 5/9/91
*/
#include "sys/param.h"
#include "sys/types.h"
#include "sys/time.h"
#include "sys/systm.h"
#include "sys/map.h"
#include "sys/buf.h"
#include "sys/proc.h"
#include "sys/user.h"
#include "sys/conf.h"
#include "sys/dkstat.h"
#include "sys/kernel.h"
#include "sys/malloc.h"
#include "sys/device.h"
#include <sys/param.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/systm.h>
#include <sys/map.h>
#include <sys/buf.h>
#include <sys/proc.h>
#include <sys/user.h>
#include <sys/conf.h>
#include <sys/dkstat.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/device.h>
#include "vm/vm.h"
#include "vm/vm_kern.h"
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include "machine/pte.h"
#include "machine/cpu.h"
#include "machine/mtpr.h"
#include "machine/nexus.h"
#include "machine/sid.h"
#include "machine/scb.h"
#include "machine/trap.h"
#include "machine/frame.h"
#include <machine/pte.h>
#include <machine/cpu.h>
#include <machine/mtpr.h>
#include <machine/nexus.h>
#include <machine/sid.h>
#include <machine/scb.h>
#include <machine/trap.h>
#include <machine/frame.h>
#include "ubareg.h"
#include "ubavar.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: ubavar.h,v 1.9 1996/02/01 22:33:38 mycroft Exp $ */
/* $NetBSD: ubavar.h,v 1.10 1996/02/02 18:08:40 mycroft Exp $ */
/*
* Copyright (c) 1982, 1986 Regents of the University of California.
@ -44,8 +44,8 @@
* Each unibus device has a uba_device structure.
*/
#include "sys/buf.h"
#include "sys/device.h"
#include <sys/buf.h>
#include <sys/device.h>
/*
* Per-uba structure.
*