Deleted Added
full compact
vm_init.c (248032) vm_init.c (248084)
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * The Mach Operating System project at Carnegie-Mellon University.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

58 * rights to redistribute these changes.
59 */
60
61/*
62 * Initialize the Virtual Memory subsystem.
63 */
64
65#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * The Mach Operating System project at Carnegie-Mellon University.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

58 * rights to redistribute these changes.
59 */
60
61/*
62 * Initialize the Virtual Memory subsystem.
63 */
64
65#include <sys/cdefs.h>
66__FBSDID("$FreeBSD: head/sys/vm/vm_init.c 248032 2013-03-08 10:37:17Z andre $");
66__FBSDID("$FreeBSD: head/sys/vm/vm_init.c 248084 2013-03-09 02:32:23Z attilio $");
67
68#include <sys/param.h>
69#include <sys/kernel.h>
70#include <sys/lock.h>
67
68#include <sys/param.h>
69#include <sys/kernel.h>
70#include <sys/lock.h>
71#include <sys/mutex.h>
72#include <sys/proc.h>
71#include <sys/proc.h>
72#include <sys/rwlock.h>
73#include <sys/sysctl.h>
74#include <sys/systm.h>
75#include <sys/selinfo.h>
76#include <sys/pipe.h>
77#include <sys/bio.h>
78#include <sys/buf.h>
79
80#include <vm/vm.h>

--- 124 unchanged lines hidden ---
73#include <sys/sysctl.h>
74#include <sys/systm.h>
75#include <sys/selinfo.h>
76#include <sys/pipe.h>
77#include <sys/bio.h>
78#include <sys/buf.h>
79
80#include <vm/vm.h>

--- 124 unchanged lines hidden ---