Deleted Added
full compact
vm_page.c (292469) vm_page.c (295222)
1/*-
2 * Copyright (c) 1991 Regents of the University of California.
3 * All rights reserved.
4 * Copyright (c) 1998 Matthew Dillon. All Rights Reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * The Mach Operating System project at Carnegie-Mellon University.
8 *

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

77 *
78 */
79
80/*
81 * Resident memory management module.
82 */
83
84#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1991 Regents of the University of California.
3 * All rights reserved.
4 * Copyright (c) 1998 Matthew Dillon. All Rights Reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * The Mach Operating System project at Carnegie-Mellon University.
8 *

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

77 *
78 */
79
80/*
81 * Resident memory management module.
82 */
83
84#include <sys/cdefs.h>
85__FBSDID("$FreeBSD: head/sys/vm/vm_page.c 292469 2015-12-19 18:42:50Z alc $");
85__FBSDID("$FreeBSD: head/sys/vm/vm_page.c 295222 2016-02-03 23:30:17Z glebius $");
86
87#include "opt_vm.h"
88
89#include <sys/param.h>
90#include <sys/systm.h>
91#include <sys/lock.h>
92#include <sys/kernel.h>
93#include <sys/limits.h>
94#include <sys/linker.h>
95#include <sys/malloc.h>
96#include <sys/mman.h>
97#include <sys/msgbuf.h>
98#include <sys/mutex.h>
99#include <sys/proc.h>
100#include <sys/rwlock.h>
101#include <sys/sbuf.h>
102#include <sys/sysctl.h>
103#include <sys/vmmeter.h>
104#include <sys/vnode.h>
86
87#include "opt_vm.h"
88
89#include <sys/param.h>
90#include <sys/systm.h>
91#include <sys/lock.h>
92#include <sys/kernel.h>
93#include <sys/limits.h>
94#include <sys/linker.h>
95#include <sys/malloc.h>
96#include <sys/mman.h>
97#include <sys/msgbuf.h>
98#include <sys/mutex.h>
99#include <sys/proc.h>
100#include <sys/rwlock.h>
101#include <sys/sbuf.h>
102#include <sys/sysctl.h>
103#include <sys/vmmeter.h>
104#include <sys/vnode.h>
105#include <sys/taskqueue.h>
105
106#include <vm/vm.h>
107#include <vm/pmap.h>
108#include <vm/vm_param.h>
109#include <vm/vm_kern.h>
110#include <vm/vm_object.h>
111#include <vm/vm_page.h>
112#include <vm/vm_pageout.h>

--- 3820 unchanged lines hidden ---
106
107#include <vm/vm.h>
108#include <vm/pmap.h>
109#include <vm/vm_param.h>
110#include <vm/vm_kern.h>
111#include <vm/vm_object.h>
112#include <vm/vm_page.h>
113#include <vm/vm_pageout.h>

--- 3820 unchanged lines hidden ---