Deleted Added
full compact
vm_pager.c (171737) vm_pager.c (189004)
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

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

59 */
60
61/*
62 * Paging space routine stubs. Emulates a matchmaker-like interface
63 * for builtin pagers.
64 */
65
66#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

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

59 */
60
61/*
62 * Paging space routine stubs. Emulates a matchmaker-like interface
63 * for builtin pagers.
64 */
65
66#include <sys/cdefs.h>
67__FBSDID("$FreeBSD: head/sys/vm/vm_pager.c 171737 2007-08-05 21:04:32Z alc $");
67__FBSDID("$FreeBSD: head/sys/vm/vm_pager.c 189004 2009-02-24 18:09:31Z rdivacky $");
68
69#include <sys/param.h>
70#include <sys/systm.h>
71#include <sys/kernel.h>
72#include <sys/vnode.h>
73#include <sys/bio.h>
74#include <sys/buf.h>
75#include <sys/ucred.h>

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

99 vm_page_t *ma;
100 int count;
101 int req;
102{
103 return VM_PAGER_FAIL;
104}
105
106static vm_object_t
68
69#include <sys/param.h>
70#include <sys/systm.h>
71#include <sys/kernel.h>
72#include <sys/vnode.h>
73#include <sys/bio.h>
74#include <sys/buf.h>
75#include <sys/ucred.h>

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

99 vm_page_t *ma;
100 int count;
101 int req;
102{
103 return VM_PAGER_FAIL;
104}
105
106static vm_object_t
107dead_pager_alloc(handle, size, prot, off)
108 void *handle;
109 vm_ooffset_t size;
110 vm_prot_t prot;
111 vm_ooffset_t off;
107dead_pager_alloc(void *handle, vm_ooffset_t size, vm_prot_t prot,
108 vm_ooffset_t off)
112{
113 return NULL;
114}
115
116static void
117dead_pager_putpages(object, m, count, flags, rtvals)
118 vm_object_t object;
119 vm_page_t *m;

--- 392 unchanged lines hidden ---
109{
110 return NULL;
111}
112
113static void
114dead_pager_putpages(object, m, count, flags, rtvals)
115 vm_object_t object;
116 vm_page_t *m;

--- 392 unchanged lines hidden ---