Turn DIAGNOSTIC into a new-style option.

This commit is contained in:
Eivind Eklund 1998-02-04 22:34:03 +00:00
parent 4f36d4ac99
commit 47cfdb166d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=33108
155 changed files with 391 additions and 132 deletions

View File

@ -25,9 +25,11 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: linux_sysvec.c,v 1.20 1997/11/06 19:29:04 phk Exp $
* $Id: linux_sysvec.c,v 1.21 1997/12/16 17:40:12 eivind Exp $
*/
#include "opt_diagnostic.h"
/* XXX we use functions that might not exist. */
#include "opt_compat.h"

View File

@ -23,9 +23,11 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id$
* $Id: busdma_machdep.c,v 1.1 1998/01/15 07:32:20 gibbs Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>

View File

@ -33,10 +33,11 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: swtch.s,v 1.65 1997/12/14 02:11:13 dyson Exp $
* $Id: swtch.s,v 1.66 1997/12/15 02:18:24 tegge Exp $
*/
#include "npx.h"
#include "opt_diagnostic.h"
#include "opt_user_ldt.h"
#include "opt_vm86.h"

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
* $Id: machdep.c,v 1.285 1998/01/30 10:26:20 dyson Exp $
* $Id: machdep.c,v 1.286 1998/02/03 21:27:46 bde Exp $
*/
#include "apm.h"
@ -43,6 +43,7 @@
#include "opt_bounce.h"
#include "opt_cpu.h"
#include "opt_ddb.h"
#include "opt_diagnostic.h"
#include "opt_maxmem.h"
#include "opt_perfmon.h"
#include "opt_smp.h"

View File

@ -39,7 +39,7 @@
* SUCH DAMAGE.
*
* from: @(#)pmap.c 7.7 (Berkeley) 5/12/91
* $Id: pmap.c,v 1.179 1998/01/31 11:55:41 dyson Exp $
* $Id: pmap.c,v 1.180 1998/02/03 22:09:01 bde Exp $
*/
/*
@ -68,6 +68,7 @@
* and to when physical maps must be made correct.
*/
#include "opt_diagnostic.h"
#include "opt_disable_pse.h"
#include <sys/param.h>

View File

@ -33,10 +33,11 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: swtch.s,v 1.65 1997/12/14 02:11:13 dyson Exp $
* $Id: swtch.s,v 1.66 1997/12/15 02:18:24 tegge Exp $
*/
#include "npx.h"
#include "opt_diagnostic.h"
#include "opt_user_ldt.h"
#include "opt_vm86.h"

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)trap.c 7.4 (Berkeley) 5/13/91
* $Id: trap.c,v 1.119 1997/12/06 04:11:01 sef Exp $
* $Id: trap.c,v 1.120 1998/01/31 05:00:15 eivind Exp $
*/
/*
@ -44,6 +44,7 @@
#include "opt_cpu.h"
#include "opt_ddb.h"
#include "opt_diagnostic.h"
#include "opt_ktrace.h"
#include "opt_trap.h"
#include "opt_vm86.h"

View File

@ -38,11 +38,12 @@
*
* from: @(#)vm_machdep.c 7.3 (Berkeley) 5/13/91
* Utah $Hdr: vm_machdep.c 1.16.1.1 89/06/23$
* $Id: vm_machdep.c,v 1.96 1998/01/22 17:29:32 dyson Exp $
* $Id: vm_machdep.c,v 1.97 1998/01/30 10:26:26 dyson Exp $
*/
#include "npx.h"
#include "opt_bounce.h"
#include "opt_diagnostic.h"
#include "opt_user_ldt.h"
#include "opt_vm86.h"

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)isa.c 7.2 (Berkeley) 5/13/91
* $Id: isa.c,v 1.108 1997/11/30 09:44:28 jmg Exp $
* $Id: isa.c,v 1.109 1998/01/31 03:29:00 eivind Exp $
*/
/*
@ -47,6 +47,8 @@
* isa_dmastart()
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>

View File

@ -1,4 +1,4 @@
# $Id: options,v 1.56 1998/02/04 04:12:27 eivind Exp $
# $Id: options,v 1.57 1998/02/04 04:41:34 eivind Exp $
# Format:
# Option name filename
@ -13,6 +13,7 @@ DDB_UNATTENDED opt_ddb.h
GDB_REMOTE_CHAT opt_ddb.h
DEVFS
DEVFS_ROOT opt_devfs.h
DIAGNOSTIC
FAILSAFE
KTRACE
MD5

View File

@ -218,6 +218,7 @@
#ifdef __FreeBSD__
#include "bktr.h"
#include "opt_diagnostic.h"
#include "pci.h"
#endif /* __FreeBSD__ */

View File

@ -1,5 +1,5 @@
/* $NetBSD: if_de.c,v 1.56 1997/10/20 14:32:46 matt Exp $ */
/* $Id: if_de.c,v 1.76 1997/12/15 20:31:25 eivind Exp $ */
/* $Id: if_de.c,v 1.77 1998/01/08 23:42:24 eivind Exp $ */
/*-
* Copyright (c) 1994-1997 Matt Thomas (matt@3am-software.com)
@ -39,6 +39,7 @@
*/
#define TULIP_HDR_DATA
#include "opt_diagnostic.h"
#include "opt_inet.h"
#include "opt_ipx.h"

View File

@ -24,7 +24,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: if_ed.c,v 1.129 1997/11/20 15:48:27 nate Exp $
* $Id: if_ed.c,v 1.130 1998/01/08 23:40:45 eivind Exp $
*/
/*
@ -39,6 +39,7 @@
#include "ed.h"
#include "bpfilter.h"
#include "opt_diagnostic.h"
#include "opt_inet.h"
#include <sys/param.h>

View File

@ -38,7 +38,7 @@
*/
/*
* $Id: if_ep.c,v 1.69 1997/12/15 20:30:43 eivind Exp $
* $Id: if_ep.c,v 1.70 1998/01/08 23:40:50 eivind Exp $
*
* Promiscuous mode added and interrupt logic slightly changed
* to reduce the number of adapter failures. Transceiver select
@ -60,6 +60,7 @@
#if NEP > 0
#include "bpfilter.h"
#include "opt_diagnostic.h"
#include "opt_inet.h"
#include "opt_ipx.h"

View File

@ -65,6 +65,7 @@
#if NLNC > 0
#include "bpfilter.h"
#include "opt_diagnostic.h"
#include "opt_inet.h"
/* Some defines that should really be in generic locations */

View File

@ -19,6 +19,7 @@
#include "opt_compat.h"
#include "opt_devfs.h"
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>

View File

@ -36,9 +36,11 @@
* SUCH DAMAGE.
*
* @(#)cd9660_node.c 8.2 (Berkeley) 1/23/94
* $Id: cd9660_node.c,v 1.21 1997/10/16 10:47:36 phk Exp $
* $Id: cd9660_node.c,v 1.22 1997/11/18 14:40:30 phk Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mount.h>

View File

@ -31,9 +31,11 @@
* SUCH DAMAGE.
*
* @(#)fifo_vnops.c 8.10 (Berkeley) 5/27/95
* $Id: fifo_vnops.c,v 1.40 1997/12/13 13:49:59 bde Exp $
* $Id: fifo_vnops.c,v 1.41 1997/12/19 18:58:14 bde Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/unistd.h>

View File

@ -1,4 +1,4 @@
/* $Id: msdosfs_denode.c,v 1.27 1997/10/11 18:31:30 phk Exp $ */
/* $Id: msdosfs_denode.c,v 1.28 1997/10/12 20:24:59 phk Exp $ */
/* $NetBSD: msdosfs_denode.c,v 1.9 1994/08/21 18:44:00 ws Exp $ */
/*-
@ -48,6 +48,8 @@
* October 1992
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mount.h>

View File

@ -1,4 +1,4 @@
/* $Id: msdosfs_fat.c,v 1.12 1997/02/22 09:40:47 peter Exp $ */
/* $Id: msdosfs_fat.c,v 1.13 1997/09/02 20:06:16 bde Exp $ */
/* $NetBSD: msdosfs_fat.c,v 1.12 1994/08/21 18:44:04 ws Exp $ */
/*-
@ -48,6 +48,11 @@
* October 1992
*/
/*
* Option include files
*/
#include "opt_diagnostic.h"
/*
* kernel include files.
*/

View File

@ -1,4 +1,4 @@
/* $Id: msdosfs_vnops.c,v 1.52 1997/10/27 13:33:43 bde Exp $ */
/* $Id: msdosfs_vnops.c,v 1.53 1997/12/27 02:56:31 bde Exp $ */
/* $NetBSD: msdosfs_vnops.c,v 1.20 1994/08/21 18:44:13 ws Exp $ */
/*-
@ -48,6 +48,8 @@
* October 1992
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/namei.h>

View File

@ -35,10 +35,11 @@
*
* @(#)null_subr.c 8.7 (Berkeley) 5/14/95
*
* $Id: null_subr.c,v 1.13 1997/08/28 00:44:43 kato Exp $
* $Id: null_subr.c,v 1.14 1998/01/31 07:23:12 eivind Exp $
*/
#include "opt_debug_nullfs.h"
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>

View File

@ -36,7 +36,7 @@
* @(#)null_vfsops.c 8.2 (Berkeley) 1/21/94
*
* @(#)lofs_vfsops.c 1.2 (Berkeley) 6/18/92
* $Id: null_vfsops.c,v 1.21 1998/01/01 08:28:05 bde Exp $
* $Id: null_vfsops.c,v 1.22 1998/01/31 07:23:12 eivind Exp $
*/
/*
@ -44,6 +44,7 @@
* (See null_vnops.c for a description of what this does.)
*/
#include "opt_diagnostic.h"
#include "opt_debug_nullfs.h"
#include <sys/param.h>

View File

@ -36,9 +36,11 @@
*
* @(#)procfs_status.c 8.3 (Berkeley) 2/17/94
*
* $Id: procfs_map.c,v 1.13 1997/11/14 22:57:46 tegge Exp $
* $Id: procfs_map.c,v 1.14 1998/01/06 05:19:54 dyson Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>

View File

@ -37,7 +37,7 @@
*
* @(#)procfs_mem.c 8.5 (Berkeley) 6/15/94
*
* $Id: procfs_mem.c,v 1.27 1997/08/12 04:34:28 sef Exp $
* $Id: procfs_mem.c,v 1.28 1998/01/22 17:30:01 dyson Exp $
*/
/*
@ -45,6 +45,8 @@
* of sef's pread/pwrite functions
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>

View File

@ -36,13 +36,15 @@
*
* @(#)procfs_vnops.c 8.18 (Berkeley) 5/21/95
*
* $Id: procfs_vnops.c,v 1.51 1998/01/06 01:37:12 sef Exp $
* $Id: procfs_vnops.c,v 1.52 1998/01/06 05:19:58 dyson Exp $
*/
/*
* procfs vnode interface
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/time.h>

View File

@ -31,9 +31,11 @@
* SUCH DAMAGE.
*
* @(#)spec_vnops.c 8.14 (Berkeley) 5/21/95
* $Id: spec_vnops.c,v 1.52 1997/12/29 00:23:16 dyson Exp $
* $Id: spec_vnops.c,v 1.53 1998/01/06 05:21:23 dyson Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/proc.h>
#include <sys/systm.h>

View File

@ -35,9 +35,11 @@
* SUCH DAMAGE.
*
* @(#)union_subr.c 8.20 (Berkeley) 5/20/95
* $Id: union_subr.c,v 1.24 1998/01/20 10:02:52 kato Exp $
* $Id: union_subr.c,v 1.25 1998/01/25 09:44:33 kato Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/vnode.h>

View File

@ -35,13 +35,15 @@
* SUCH DAMAGE.
*
* @(#)union_vfsops.c 8.20 (Berkeley) 5/20/95
* $Id: union_vfsops.c,v 1.22 1997/11/18 15:07:35 phk Exp $
* $Id: union_vfsops.c,v 1.23 1998/01/18 07:56:41 kato Exp $
*/
/*
* Union Layer
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>

View File

@ -35,9 +35,11 @@
* SUCH DAMAGE.
*
* @(#)union_vnops.c 8.32 (Berkeley) 6/23/95
* $Id: union_vnops.c,v 1.49 1998/01/20 10:02:54 kato Exp $
* $Id: union_vnops.c,v 1.50 1998/01/22 02:14:59 kato Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>

View File

@ -39,6 +39,7 @@
* @(#)ext2_alloc.c 8.8 (Berkeley) 2/21/94
*/
#include "opt_diagnostic.h"
#include "opt_quota.h"
#include <sys/param.h>

View File

@ -39,6 +39,8 @@
* @(#)ffs_balloc.c 8.4 (Berkeley) 9/23/93
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>

View File

@ -36,9 +36,11 @@
* SUCH DAMAGE.
*
* @(#)ufs_bmap.c 8.7 (Berkeley) 3/21/95
* $Id: ufs_bmap.c,v 1.17 1997/11/24 16:33:03 bde Exp $
* $Id: ufs_bmap.c,v 1.18 1998/01/24 02:01:41 dyson Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>

View File

@ -31,9 +31,11 @@
* SUCH DAMAGE.
*
* @(#)ufs_ihash.c 8.7 (Berkeley) 5/17/95
* $Id: ufs_ihash.c,v 1.12 1997/10/15 07:32:45 bde Exp $
* $Id: ufs_ihash.c,v 1.13 1997/12/05 19:55:51 bde Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/lock.h>

View File

@ -39,6 +39,7 @@
* @(#)ext2_inode.c 8.5 (Berkeley) 12/30/93
*/
#include "opt_diagnostic.h"
#include "opt_quota.h"
#include <sys/param.h>

View File

@ -44,6 +44,8 @@
* @(#)ufs_lookup.c 8.6 (Berkeley) 4/1/94
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/namei.h>

View File

@ -39,6 +39,8 @@
* @(#)ext2_subr.c 8.2 (Berkeley) 9/21/93
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <gnu/ext2fs/ext2_fs_sb.h>
#include <gnu/ext2fs/fs.h>

View File

@ -45,6 +45,7 @@
* @(#)ext2_vnops.c 8.7 (Berkeley) 2/3/94
*/
#include "opt_diagnostic.h"
#include "opt_quota.h"
#include "opt_suiddir.h"

View File

@ -39,6 +39,7 @@
* @(#)ext2_alloc.c 8.8 (Berkeley) 2/21/94
*/
#include "opt_diagnostic.h"
#include "opt_quota.h"
#include <sys/param.h>

View File

@ -39,6 +39,8 @@
* @(#)ffs_balloc.c 8.4 (Berkeley) 9/23/93
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>

View File

@ -36,9 +36,11 @@
* SUCH DAMAGE.
*
* @(#)ufs_bmap.c 8.7 (Berkeley) 3/21/95
* $Id: ufs_bmap.c,v 1.17 1997/11/24 16:33:03 bde Exp $
* $Id: ufs_bmap.c,v 1.18 1998/01/24 02:01:41 dyson Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>

View File

@ -39,6 +39,7 @@
* @(#)ext2_inode.c 8.5 (Berkeley) 12/30/93
*/
#include "opt_diagnostic.h"
#include "opt_quota.h"
#include <sys/param.h>

View File

@ -44,6 +44,8 @@
* @(#)ufs_lookup.c 8.6 (Berkeley) 4/1/94
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/namei.h>

View File

@ -39,6 +39,8 @@
* @(#)ext2_subr.c 8.2 (Berkeley) 9/21/93
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <gnu/ext2fs/ext2_fs_sb.h>
#include <gnu/ext2fs/fs.h>

View File

@ -45,6 +45,7 @@
* @(#)ext2_vnops.c 8.7 (Berkeley) 2/3/94
*/
#include "opt_diagnostic.h"
#include "opt_quota.h"
#include "opt_suiddir.h"

View File

@ -23,9 +23,11 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id$
* $Id: busdma_machdep.c,v 1.1 1998/01/15 07:32:20 gibbs Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
* $Id: machdep.c,v 1.285 1998/01/30 10:26:20 dyson Exp $
* $Id: machdep.c,v 1.286 1998/02/03 21:27:46 bde Exp $
*/
#include "apm.h"
@ -43,6 +43,7 @@
#include "opt_bounce.h"
#include "opt_cpu.h"
#include "opt_ddb.h"
#include "opt_diagnostic.h"
#include "opt_maxmem.h"
#include "opt_perfmon.h"
#include "opt_smp.h"

View File

@ -39,7 +39,7 @@
* SUCH DAMAGE.
*
* from: @(#)pmap.c 7.7 (Berkeley) 5/12/91
* $Id: pmap.c,v 1.179 1998/01/31 11:55:41 dyson Exp $
* $Id: pmap.c,v 1.180 1998/02/03 22:09:01 bde Exp $
*/
/*
@ -68,6 +68,7 @@
* and to when physical maps must be made correct.
*/
#include "opt_diagnostic.h"
#include "opt_disable_pse.h"
#include <sys/param.h>

View File

@ -33,10 +33,11 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: swtch.s,v 1.65 1997/12/14 02:11:13 dyson Exp $
* $Id: swtch.s,v 1.66 1997/12/15 02:18:24 tegge Exp $
*/
#include "npx.h"
#include "opt_diagnostic.h"
#include "opt_user_ldt.h"
#include "opt_vm86.h"

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)trap.c 7.4 (Berkeley) 5/13/91
* $Id: trap.c,v 1.119 1997/12/06 04:11:01 sef Exp $
* $Id: trap.c,v 1.120 1998/01/31 05:00:15 eivind Exp $
*/
/*
@ -44,6 +44,7 @@
#include "opt_cpu.h"
#include "opt_ddb.h"
#include "opt_diagnostic.h"
#include "opt_ktrace.h"
#include "opt_trap.h"
#include "opt_vm86.h"

View File

@ -23,9 +23,10 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: vm86.c,v 1.5 1997/11/20 18:43:46 bde Exp $
* $Id: vm86.c,v 1.6 1998/02/03 21:27:47 bde Exp $
*/
#include "opt_diagnostic.h"
#include "opt_vm86.h"
#include <sys/param.h>

View File

@ -38,11 +38,12 @@
*
* from: @(#)vm_machdep.c 7.3 (Berkeley) 5/13/91
* Utah $Hdr: vm_machdep.c 1.16.1.1 89/06/23$
* $Id: vm_machdep.c,v 1.96 1998/01/22 17:29:32 dyson Exp $
* $Id: vm_machdep.c,v 1.97 1998/01/30 10:26:26 dyson Exp $
*/
#include "npx.h"
#include "opt_bounce.h"
#include "opt_diagnostic.h"
#include "opt_user_ldt.h"
#include "opt_vm86.h"

View File

@ -29,6 +29,8 @@
* ibcs2_sysi86.c,v 1.1 1994/10/14 08:53:11 sos Exp
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/sysctl.h>

View File

@ -12,7 +12,7 @@
* on the understanding that TFS is not responsible for the correct
* functioning of this software in any circumstances.
*
* $Id: aha1542.c,v 1.71 1997/09/21 21:40:49 gibbs Exp $
* $Id: aha1542.c,v 1.72 1997/11/18 10:56:41 bde Exp $
*/
/*
@ -20,6 +20,7 @@
*/
#include "aha.h"
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/buf.h>

View File

@ -24,7 +24,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: if_ed.c,v 1.129 1997/11/20 15:48:27 nate Exp $
* $Id: if_ed.c,v 1.130 1998/01/08 23:40:45 eivind Exp $
*/
/*
@ -39,6 +39,7 @@
#include "ed.h"
#include "bpfilter.h"
#include "opt_diagnostic.h"
#include "opt_inet.h"
#include <sys/param.h>

View File

@ -38,7 +38,7 @@
*/
/*
* $Id: if_ep.c,v 1.69 1997/12/15 20:30:43 eivind Exp $
* $Id: if_ep.c,v 1.70 1998/01/08 23:40:50 eivind Exp $
*
* Promiscuous mode added and interrupt logic slightly changed
* to reduce the number of adapter failures. Transceiver select
@ -60,6 +60,7 @@
#if NEP > 0
#include "bpfilter.h"
#include "opt_diagnostic.h"
#include "opt_inet.h"
#include "opt_ipx.h"

View File

@ -65,6 +65,7 @@
#if NLNC > 0
#include "bpfilter.h"
#include "opt_diagnostic.h"
#include "opt_inet.h"
/* Some defines that should really be in generic locations */

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)isa.c 7.2 (Berkeley) 5/13/91
* $Id: isa.c,v 1.108 1997/11/30 09:44:28 jmg Exp $
* $Id: isa.c,v 1.109 1998/01/31 03:29:00 eivind Exp $
*/
/*
@ -47,6 +47,8 @@
* isa_dmastart()
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>

View File

@ -64,6 +64,8 @@
#include "vt.h"
#if NVT > 0
#include "opt_diagnostic.h"
#include <i386/isa/pcvt/pcvt_hdr.h> /* global include */
static void vid_cursor ( struct cursorshape *data );

View File

@ -25,9 +25,11 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: linux_sysvec.c,v 1.20 1997/11/06 19:29:04 phk Exp $
* $Id: linux_sysvec.c,v 1.21 1997/12/16 17:40:12 eivind Exp $
*/
#include "opt_diagnostic.h"
/* XXX we use functions that might not exist. */
#include "opt_compat.h"

View File

@ -36,9 +36,11 @@
* SUCH DAMAGE.
*
* @(#)cd9660_node.c 8.2 (Berkeley) 1/23/94
* $Id: cd9660_node.c,v 1.21 1997/10/16 10:47:36 phk Exp $
* $Id: cd9660_node.c,v 1.22 1997/11/18 14:40:30 phk Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mount.h>

View File

@ -39,10 +39,11 @@
* SUCH DAMAGE.
*
* @(#)init_main.c 8.9 (Berkeley) 1/21/94
* $Id: init_main.c,v 1.80 1998/01/22 17:29:44 dyson Exp $
* $Id: init_main.c,v 1.81 1998/01/30 11:32:52 phk Exp $
*/
#include "opt_devfs.h"
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/file.h>

View File

@ -36,9 +36,11 @@
* SUCH DAMAGE.
*
* @(#)kern_clock.c 8.5 (Berkeley) 1/21/94
* $Id: kern_clock.c,v 1.52 1998/01/11 19:07:58 phk Exp $
* $Id: kern_clock.c,v 1.53 1998/01/14 20:48:15 phk Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/dkstat.h>

View File

@ -36,10 +36,11 @@
* SUCH DAMAGE.
*
* @(#)kern_descrip.c 8.6 (Berkeley) 4/19/94
* $Id: kern_descrip.c,v 1.47 1997/12/16 17:40:14 eivind Exp $
* $Id: kern_descrip.c,v 1.48 1998/01/24 02:54:34 eivind Exp $
*/
#include "opt_compat.h"
#include "opt_diagnostic.h"
#include "opt_devfs.h"
#include <sys/param.h>

View File

@ -23,9 +23,11 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: kern_exec.c,v 1.73 1998/01/06 05:15:34 dyson Exp $
* $Id: kern_exec.c,v 1.74 1998/01/11 21:35:38 dyson Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/sysproto.h>

View File

@ -38,9 +38,11 @@
* SUCH DAMAGE.
*
* @(#)kern_lock.c 8.18 (Berkeley) 5/21/95
* $Id: kern_lock.c,v 1.13 1997/10/28 15:58:19 bde Exp $
* $Id: kern_lock.c,v 1.14 1997/11/07 08:52:55 phk Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/proc.h>
#include <sys/lock.h>

View File

@ -31,9 +31,11 @@
* SUCH DAMAGE.
*
* @(#)kern_malloc.c 8.3 (Berkeley) 1/4/94
* $Id: kern_malloc.c,v 1.38 1997/12/05 05:36:36 dyson Exp $
* $Id: kern_malloc.c,v 1.39 1998/01/22 17:29:47 dyson Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>

View File

@ -31,9 +31,11 @@
* SUCH DAMAGE.
*
* @(#)kern_proc.c 8.7 (Berkeley) 2/14/95
* $Id: kern_proc.c,v 1.31 1998/01/22 17:29:48 dyson Exp $
* $Id: kern_proc.c,v 1.32 1998/02/02 05:14:03 dyson Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>

View File

@ -36,10 +36,11 @@
* SUCH DAMAGE.
*
* @(#)kern_sig.c 8.7 (Berkeley) 4/18/94
* $Id: kern_sig.c,v 1.36 1997/12/06 04:11:10 sef Exp $
* $Id: kern_sig.c,v 1.37 1997/12/16 17:40:17 eivind Exp $
*/
#include "opt_compat.h"
#include "opt_diagnostic.h"
#include "opt_ktrace.h"
#define SIGPROP /* include signal properties table */

View File

@ -36,9 +36,11 @@
* SUCH DAMAGE.
*
* @(#)kern_subr.c 8.3 (Berkeley) 1/21/94
* $Id: kern_subr.c,v 1.15 1998/01/06 05:15:41 dyson Exp $
* $Id: kern_subr.c,v 1.16 1998/01/22 17:29:49 dyson Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>

View File

@ -36,9 +36,10 @@
* SUCH DAMAGE.
*
* @(#)kern_synch.c 8.9 (Berkeley) 5/19/95
* $Id: kern_synch.c,v 1.43 1997/12/29 00:22:26 dyson Exp $
* $Id: kern_synch.c,v 1.44 1997/12/29 08:54:52 bde Exp $
*/
#include "opt_diagnostic.h"
#include "opt_ktrace.h"
#include <sys/param.h>

View File

@ -36,9 +36,11 @@
* SUCH DAMAGE.
*
* @(#)kern_clock.c 8.5 (Berkeley) 1/21/94
* $Id: kern_clock.c,v 1.52 1998/01/11 19:07:58 phk Exp $
* $Id: kern_clock.c,v 1.53 1998/01/14 20:48:15 phk Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/dkstat.h>

View File

@ -54,9 +54,11 @@
* functioning of this software, nor does the author assume any responsibility
* for damages incurred with its use.
*
* $Id: subr_rlist.c,v 1.22 1997/09/02 20:05:51 bde Exp $
* $Id: subr_rlist.c,v 1.23 1997/09/16 11:43:31 bde Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/rlist.h>

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)trap.c 7.4 (Berkeley) 5/13/91
* $Id: trap.c,v 1.119 1997/12/06 04:11:01 sef Exp $
* $Id: trap.c,v 1.120 1998/01/31 05:00:15 eivind Exp $
*/
/*
@ -44,6 +44,7 @@
#include "opt_cpu.h"
#include "opt_ddb.h"
#include "opt_diagnostic.h"
#include "opt_ktrace.h"
#include "opt_trap.h"
#include "opt_vm86.h"

View File

@ -16,7 +16,7 @@
* 4. Modifications may be freely made to this file if the above conditions
* are met.
*
* $Id: sys_pipe.c,v 1.35 1997/11/06 19:29:21 phk Exp $
* $Id: sys_pipe.c,v 1.36 1997/11/07 08:53:00 phk Exp $
*/
/*
@ -49,6 +49,8 @@
* amount of kernel virtual memory.
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>

View File

@ -28,9 +28,11 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: sys_process.c,v 1.33 1997/12/06 04:11:10 sef Exp $
* $Id: sys_process.c,v 1.34 1998/01/22 17:29:49 dyson Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/sysproto.h>

View File

@ -19,6 +19,7 @@
#include "opt_compat.h"
#include "opt_devfs.h"
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>

View File

@ -31,9 +31,11 @@
* SUCH DAMAGE.
*
* @(#)uipc_socket.c 8.3 (Berkeley) 4/15/94
* $Id: uipc_socket.c,v 1.33 1997/10/12 20:24:12 phk Exp $
* $Id: uipc_socket.c,v 1.34 1997/11/09 05:07:40 jkh Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>

View File

@ -31,9 +31,11 @@
* SUCH DAMAGE.
*
* From: @(#)uipc_usrreq.c 8.3 (Berkeley) 1/4/94
* $Id: uipc_usrreq.c,v 1.29 1997/11/07 08:53:02 phk Exp $
* $Id: uipc_usrreq.c,v 1.30 1997/11/23 10:43:49 bde Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>

View File

@ -13,13 +13,15 @@
* bad that happens because of using this software isn't the responsibility
* of the author. This software is distributed AS-IS.
*
* $Id: vfs_aio.c,v 1.19 1997/12/08 02:18:25 dyson Exp $
* $Id: vfs_aio.c,v 1.20 1997/12/10 04:14:23 dyson Exp $
*/
/*
* This file contains support for the POSIX.4 AIO/LIO facility.
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/sysproto.h>

View File

@ -11,7 +11,7 @@
* 2. Absolutely no warranty of function or purpose is made by the author
* John S. Dyson.
*
* $Id: vfs_bio.c,v 1.146 1998/01/25 06:24:01 dyson Exp $
* $Id: vfs_bio.c,v 1.147 1998/01/31 11:55:59 dyson Exp $
*/
/*
@ -26,6 +26,7 @@
*/
#include "opt_bounce.h"
#include "opt_diagnostic.h"
#define VMIO
#include <sys/param.h>

View File

@ -33,10 +33,11 @@
* SUCH DAMAGE.
*
* @(#)vfs_cluster.c 8.7 (Berkeley) 2/13/94
* $Id: vfs_cluster.c,v 1.52 1998/01/31 07:23:11 eivind Exp $
* $Id: vfs_cluster.c,v 1.53 1998/01/31 11:56:01 dyson Exp $
*/
#include "opt_debug_cluster.h"
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95
* $Id: vfs_subr.c,v 1.126 1998/01/24 02:01:22 dyson Exp $
* $Id: vfs_subr.c,v 1.127 1998/01/31 01:17:58 tegge Exp $
*/
/*
@ -44,6 +44,7 @@
*/
#include "opt_ddb.h"
#include "opt_devfs.h"
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>

View File

@ -36,12 +36,15 @@
* SUCH DAMAGE.
*
* @(#)vfs_syscalls.c 8.13 (Berkeley) 4/15/94
* $Id: vfs_syscalls.c,v 1.88 1997/12/29 00:22:50 dyson Exp $
* $Id: vfs_syscalls.c,v 1.89 1998/01/06 05:16:26 dyson Exp $
*/
/* For 4.3 integer FS ID compatibility */
#include "opt_compat.h"
/* For diagnostic support */
#include "opt_diagnostic.h"
/*
* XXX - The following is required because of some magic done
* in getdirentries() below which is only done if the translucent

View File

@ -36,9 +36,10 @@
* SUCH DAMAGE.
*
* @(#)vfs_lookup.c 8.4 (Berkeley) 2/16/94
* $Id: vfs_lookup.c,v 1.22 1997/12/29 00:22:38 dyson Exp $
* $Id: vfs_lookup.c,v 1.23 1998/01/06 05:16:09 dyson Exp $
*/
#include "opt_diagnostic.h"
#include "opt_ktrace.h"
#include <sys/param.h>

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95
* $Id: vfs_subr.c,v 1.126 1998/01/24 02:01:22 dyson Exp $
* $Id: vfs_subr.c,v 1.127 1998/01/31 01:17:58 tegge Exp $
*/
/*
@ -44,6 +44,7 @@
*/
#include "opt_ddb.h"
#include "opt_devfs.h"
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>

View File

@ -36,12 +36,15 @@
* SUCH DAMAGE.
*
* @(#)vfs_syscalls.c 8.13 (Berkeley) 4/15/94
* $Id: vfs_syscalls.c,v 1.88 1997/12/29 00:22:50 dyson Exp $
* $Id: vfs_syscalls.c,v 1.89 1998/01/06 05:16:26 dyson Exp $
*/
/* For 4.3 integer FS ID compatibility */
#include "opt_compat.h"
/* For diagnostic support */
#include "opt_diagnostic.h"
/*
* XXX - The following is required because of some magic done
* in getdirentries() below which is only done if the translucent

View File

@ -36,9 +36,11 @@
* SUCH DAMAGE.
*
* @(#)vfs_vnops.c 8.2 (Berkeley) 1/21/94
* $Id: vfs_vnops.c,v 1.46 1998/01/06 05:16:32 dyson Exp $
* $Id: vfs_vnops.c,v 1.47 1998/01/12 01:46:33 dyson Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>

View File

@ -31,9 +31,11 @@
* SUCH DAMAGE.
*
* @(#)fifo_vnops.c 8.10 (Berkeley) 5/27/95
* $Id: fifo_vnops.c,v 1.40 1997/12/13 13:49:59 bde Exp $
* $Id: fifo_vnops.c,v 1.41 1997/12/19 18:58:14 bde Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/unistd.h>

View File

@ -35,10 +35,11 @@
*
* @(#)null_subr.c 8.7 (Berkeley) 5/14/95
*
* $Id: null_subr.c,v 1.13 1997/08/28 00:44:43 kato Exp $
* $Id: null_subr.c,v 1.14 1998/01/31 07:23:12 eivind Exp $
*/
#include "opt_debug_nullfs.h"
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>

View File

@ -36,7 +36,7 @@
* @(#)null_vfsops.c 8.2 (Berkeley) 1/21/94
*
* @(#)lofs_vfsops.c 1.2 (Berkeley) 6/18/92
* $Id: null_vfsops.c,v 1.21 1998/01/01 08:28:05 bde Exp $
* $Id: null_vfsops.c,v 1.22 1998/01/31 07:23:12 eivind Exp $
*/
/*
@ -44,6 +44,7 @@
* (See null_vnops.c for a description of what this does.)
*/
#include "opt_diagnostic.h"
#include "opt_debug_nullfs.h"
#include <sys/param.h>

View File

@ -36,9 +36,11 @@
*
* @(#)procfs_status.c 8.3 (Berkeley) 2/17/94
*
* $Id: procfs_map.c,v 1.13 1997/11/14 22:57:46 tegge Exp $
* $Id: procfs_map.c,v 1.14 1998/01/06 05:19:54 dyson Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>

View File

@ -37,7 +37,7 @@
*
* @(#)procfs_mem.c 8.5 (Berkeley) 6/15/94
*
* $Id: procfs_mem.c,v 1.27 1997/08/12 04:34:28 sef Exp $
* $Id: procfs_mem.c,v 1.28 1998/01/22 17:30:01 dyson Exp $
*/
/*
@ -45,6 +45,8 @@
* of sef's pread/pwrite functions
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>

View File

@ -36,13 +36,15 @@
*
* @(#)procfs_vnops.c 8.18 (Berkeley) 5/21/95
*
* $Id: procfs_vnops.c,v 1.51 1998/01/06 01:37:12 sef Exp $
* $Id: procfs_vnops.c,v 1.52 1998/01/06 05:19:58 dyson Exp $
*/
/*
* procfs vnode interface
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/time.h>

View File

@ -31,9 +31,11 @@
* SUCH DAMAGE.
*
* @(#)spec_vnops.c 8.14 (Berkeley) 5/21/95
* $Id: spec_vnops.c,v 1.52 1997/12/29 00:23:16 dyson Exp $
* $Id: spec_vnops.c,v 1.53 1998/01/06 05:21:23 dyson Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/proc.h>
#include <sys/systm.h>

View File

@ -35,9 +35,11 @@
* SUCH DAMAGE.
*
* @(#)union_subr.c 8.20 (Berkeley) 5/20/95
* $Id: union_subr.c,v 1.24 1998/01/20 10:02:52 kato Exp $
* $Id: union_subr.c,v 1.25 1998/01/25 09:44:33 kato Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/vnode.h>

View File

@ -35,13 +35,15 @@
* SUCH DAMAGE.
*
* @(#)union_vfsops.c 8.20 (Berkeley) 5/20/95
* $Id: union_vfsops.c,v 1.22 1997/11/18 15:07:35 phk Exp $
* $Id: union_vfsops.c,v 1.23 1998/01/18 07:56:41 kato Exp $
*/
/*
* Union Layer
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>

View File

@ -35,9 +35,11 @@
* SUCH DAMAGE.
*
* @(#)union_vnops.c 8.32 (Berkeley) 6/23/95
* $Id: union_vnops.c,v 1.49 1998/01/20 10:02:54 kato Exp $
* $Id: union_vnops.c,v 1.50 1998/01/22 02:14:59 kato Exp $
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>

View File

@ -1,4 +1,4 @@
/* $Id: msdosfs_denode.c,v 1.27 1997/10/11 18:31:30 phk Exp $ */
/* $Id: msdosfs_denode.c,v 1.28 1997/10/12 20:24:59 phk Exp $ */
/* $NetBSD: msdosfs_denode.c,v 1.9 1994/08/21 18:44:00 ws Exp $ */
/*-
@ -48,6 +48,8 @@
* October 1992
*/
#include "opt_diagnostic.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mount.h>

View File

@ -1,4 +1,4 @@
/* $Id: msdosfs_fat.c,v 1.12 1997/02/22 09:40:47 peter Exp $ */
/* $Id: msdosfs_fat.c,v 1.13 1997/09/02 20:06:16 bde Exp $ */
/* $NetBSD: msdosfs_fat.c,v 1.12 1994/08/21 18:44:04 ws Exp $ */
/*-
@ -48,6 +48,11 @@
* October 1992
*/
/*
* Option include files
*/
#include "opt_diagnostic.h"
/*
* kernel include files.
*/

Some files were not shown because too many files have changed in this diff Show More