Deleted Added
full compact
vm_machdep.c (121235) vm_machdep.c (122780)
1/*-
2 * Copyright (c) 1982, 1986 The Regents of the University of California.
3 * Copyright (c) 1989, 1990 William Jolitz
4 * Copyright (c) 1994 John Dyson
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * the Systems Programming Group of the University of Utah Computer

--- 27 unchanged lines hidden (view full) ---

36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * from: @(#)vm_machdep.c 7.3 (Berkeley) 5/13/91
40 * Utah $Hdr: vm_machdep.c 1.16.1.1 89/06/23$
41 */
42
43#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1982, 1986 The Regents of the University of California.
3 * Copyright (c) 1989, 1990 William Jolitz
4 * Copyright (c) 1994 John Dyson
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * the Systems Programming Group of the University of Utah Computer

--- 27 unchanged lines hidden (view full) ---

36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * from: @(#)vm_machdep.c 7.3 (Berkeley) 5/13/91
40 * Utah $Hdr: vm_machdep.c 1.16.1.1 89/06/23$
41 */
42
43#include <sys/cdefs.h>
44__FBSDID("$FreeBSD: head/sys/i386/i386/vm_machdep.c 121235 2003-10-19 00:57:10Z davidxu $");
44__FBSDID("$FreeBSD: head/sys/i386/i386/vm_machdep.c 122780 2003-11-16 06:11:26Z alc $");
45
46#include "opt_npx.h"
47#ifdef PC98
48#include "opt_pc98.h"
49#endif
50#include "opt_reset.h"
51#include "opt_isa.h"
52#include "opt_kstack_pages.h"

--- 7 unchanged lines hidden (view full) ---

60#include <sys/buf.h>
61#include <sys/vnode.h>
62#include <sys/vmmeter.h>
63#include <sys/kernel.h>
64#include <sys/ktr.h>
65#include <sys/mbuf.h>
66#include <sys/mutex.h>
67#include <sys/smp.h>
45
46#include "opt_npx.h"
47#ifdef PC98
48#include "opt_pc98.h"
49#endif
50#include "opt_reset.h"
51#include "opt_isa.h"
52#include "opt_kstack_pages.h"

--- 7 unchanged lines hidden (view full) ---

60#include <sys/buf.h>
61#include <sys/vnode.h>
62#include <sys/vmmeter.h>
63#include <sys/kernel.h>
64#include <sys/ktr.h>
65#include <sys/mbuf.h>
66#include <sys/mutex.h>
67#include <sys/smp.h>
68#include <sys/socketvar.h>
68#include <sys/sf_buf.h>
69#include <sys/sysctl.h>
70#include <sys/unistd.h>
71
72#include <machine/cpu.h>
73#include <machine/md_var.h>
74#include <machine/pcb.h>
75#include <machine/pcb_ext.h>
76#include <machine/vm86.h>

--- 611 unchanged lines hidden ---
69#include <sys/sysctl.h>
70#include <sys/unistd.h>
71
72#include <machine/cpu.h>
73#include <machine/md_var.h>
74#include <machine/pcb.h>
75#include <machine/pcb_ext.h>
76#include <machine/vm86.h>

--- 611 unchanged lines hidden ---