Deleted Added
full compact
vm_machdep.c (166063) vm_machdep.c (169900)
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/arm/arm/vm_machdep.c 166063 2007-01-17 00:53:05Z cognet $");
44__FBSDID("$FreeBSD: head/sys/arm/arm/vm_machdep.c 169900 2007-05-23 13:21:57Z cognet $");
45
46#include <sys/param.h>
47#include <sys/systm.h>
48#include <sys/kernel.h>
49#include <sys/malloc.h>
50#include <sys/mbuf.h>
51#include <sys/proc.h>
52#include <sys/socketvar.h>
53#include <sys/sf_buf.h>
54#include <sys/unistd.h>
55#include <machine/cpu.h>
56#include <machine/pcb.h>
57#include <machine/sysarch.h>
45
46#include <sys/param.h>
47#include <sys/systm.h>
48#include <sys/kernel.h>
49#include <sys/malloc.h>
50#include <sys/mbuf.h>
51#include <sys/proc.h>
52#include <sys/socketvar.h>
53#include <sys/sf_buf.h>
54#include <sys/unistd.h>
55#include <machine/cpu.h>
56#include <machine/pcb.h>
57#include <machine/sysarch.h>
58#include <vm/vm.h>
59#include <vm/pmap.h>
60#include <sys/lock.h>
61#include <sys/mutex.h>
62
63#include <vm/vm.h>
58#include <sys/lock.h>
59#include <sys/mutex.h>
60
61#include <vm/vm.h>
62#include <vm/pmap.h>
64#include <vm/vm_extern.h>
65#include <vm/vm_kern.h>
66#include <vm/vm_page.h>
67#include <vm/vm_map.h>
68#include <vm/vm_param.h>
69#include <vm/vm_pageout.h>
70#include <vm/uma.h>
71#include <vm/uma_int.h>

--- 562 unchanged lines hidden ---
63#include <vm/vm_extern.h>
64#include <vm/vm_kern.h>
65#include <vm/vm_page.h>
66#include <vm/vm_map.h>
67#include <vm/vm_param.h>
68#include <vm/vm_pageout.h>
69#include <vm/uma.h>
70#include <vm/uma_int.h>

--- 562 unchanged lines hidden ---