phys_pager.c (a9fa2c05fcc4b5cfa4734f5c18a3bce8755e6e6b) phys_pager.c (fb919e4d5a2c1baca52ac70d1064f140fffdda71)
1/*
2 * Copyright (c) 2000 Peter Wemm
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

25 * $FreeBSD$
26 */
27
28#include <sys/param.h>
29#include <sys/systm.h>
30#include <sys/linker_set.h>
31#include <sys/conf.h>
32#include <sys/kernel.h>
1/*
2 * Copyright (c) 2000 Peter Wemm
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

25 * $FreeBSD$
26 */
27
28#include <sys/param.h>
29#include <sys/systm.h>
30#include <sys/linker_set.h>
31#include <sys/conf.h>
32#include <sys/kernel.h>
33#include <sys/lock.h>
34#include <sys/mutex.h>
33#include <sys/mman.h>
34#include <sys/sysctl.h>
35#include <sys/sx.h>
36
37#include <vm/vm.h>
38#include <vm/vm_object.h>
39#include <vm/vm_page.h>
40#include <vm/vm_pager.h>

--- 151 unchanged lines hidden ---
35#include <sys/mman.h>
36#include <sys/sysctl.h>
37#include <sys/sx.h>
38
39#include <vm/vm.h>
40#include <vm/vm_object.h>
41#include <vm/vm_page.h>
42#include <vm/vm_pager.h>

--- 151 unchanged lines hidden ---