Deleted Added
full compact
sys_machdep.c (66277) sys_machdep.c (67365)
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * from: @(#)sys_machdep.c 5.5 (Berkeley) 1/19/91
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * from: @(#)sys_machdep.c 5.5 (Berkeley) 1/19/91
34 * $FreeBSD: head/sys/amd64/amd64/sys_machdep.c 66277 2000-09-22 23:40:10Z ps $
34 * $FreeBSD: head/sys/amd64/amd64/sys_machdep.c 67365 2000-10-20 07:58:15Z jhb $
35 *
36 */
37
38#include "opt_user_ldt.h"
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/sysproto.h>
35 *
36 */
37
38#include "opt_user_ldt.h"
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/sysproto.h>
43#include <sys/ipl.h>
43#include <sys/malloc.h>
44#include <sys/proc.h>
45
46#include <vm/vm.h>
47#include <sys/lock.h>
48#include <vm/pmap.h>
49#include <vm/vm_map.h>
50#include <vm/vm_extern.h>
51
52#include <sys/user.h>
53
54#include <machine/cpu.h>
44#include <sys/malloc.h>
45#include <sys/proc.h>
46
47#include <vm/vm.h>
48#include <sys/lock.h>
49#include <vm/pmap.h>
50#include <vm/vm_map.h>
51#include <vm/vm_extern.h>
52
53#include <sys/user.h>
54
55#include <machine/cpu.h>
55#include <machine/ipl.h>
56#include <machine/pcb_ext.h> /* pcb.h included by sys/user.h */
57#include <machine/sysarch.h>
58#ifdef SMP
59#include <machine/smp.h>
60#endif
61
62#include <vm/vm_kern.h> /* for kernel_map */
63

--- 439 unchanged lines hidden ---
56#include <machine/pcb_ext.h> /* pcb.h included by sys/user.h */
57#include <machine/sysarch.h>
58#ifdef SMP
59#include <machine/smp.h>
60#endif
61
62#include <vm/vm_kern.h> /* for kernel_map */
63

--- 439 unchanged lines hidden ---