swap_pager.h revision 139825
1139825Simp/*-
21541Srgrimes * Copyright (c) 1990 University of Utah.
31549Srgrimes * Copyright (c) 1991 The Regents of the University of California.
41549Srgrimes * All rights reserved.
51541Srgrimes *
61541Srgrimes * This code is derived from software contributed to Berkeley by
71541Srgrimes * the Systems Programming Group of the University of Utah Computer
81541Srgrimes * Science Department.
91541Srgrimes *
101541Srgrimes * Redistribution and use in source and binary forms, with or without
111541Srgrimes * modification, are permitted provided that the following conditions
121541Srgrimes * are met:
131541Srgrimes * 1. Redistributions of source code must retain the above copyright
141541Srgrimes *    notice, this list of conditions and the following disclaimer.
151541Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
161541Srgrimes *    notice, this list of conditions and the following disclaimer in the
171541Srgrimes *    documentation and/or other materials provided with the distribution.
181541Srgrimes * 4. Neither the name of the University nor the names of its contributors
191541Srgrimes *    may be used to endorse or promote products derived from this software
201541Srgrimes *    without specific prior written permission.
211541Srgrimes *
221541Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
231541Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
241541Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
251541Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
261541Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
271541Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
281541Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
291541Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
301541Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
311541Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
321541Srgrimes * SUCH DAMAGE.
331541Srgrimes *
341549Srgrimes *	from: @(#)swap_pager.h	7.1 (Berkeley) 12/5/90
3550477Speter * $FreeBSD: head/sys/vm/swap_pager.h 139825 2005-01-07 02:29:27Z imp $
361541Srgrimes */
371541Srgrimes
38108599Sphk#ifndef	_VM_SWAP_PAGER_H_
39108599Sphk#define	_VM_SWAP_PAGER_H_ 1
401541Srgrimes
41108602Sphk#ifdef _KERNEL
42108602Sphk
4311317Sdgextern int swap_pager_full;
44118390Sphkextern int swap_pager_avail;
4510080Sbde
46118390Sphkstruct swdevt;
4792727Salfredvoid swap_pager_copy(vm_object_t, vm_object_t, vm_pindex_t, int);
4892727Salfredvoid swap_pager_freespace(vm_object_t, vm_pindex_t, vm_size_t);
4992727Salfredvoid swap_pager_swap_init(void);
50118390Sphkint swap_pager_isswapped(vm_object_t, struct swdevt *);
5192727Salfredint swap_pager_reserve(vm_object_t, vm_pindex_t, vm_size_t);
52117723Sphkvoid swap_pager_status(int *total, int *used);
5342957Sdillon
5492029Seivind#endif				/* _KERNEL */
55108599Sphk#endif				/* _VM_SWAP_PAGER_H_ */
56