160727d8bSWarner Losh /*- 251369649SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause 351369649SPedro F. Giffuni * 4df8bae1dSRodney W. Grimes * Copyright (c) 1990 University of Utah. 5df8bae1dSRodney W. Grimes * Copyright (c) 1991, 1993 6df8bae1dSRodney W. Grimes * The Regents of the University of California. All rights reserved. 7df8bae1dSRodney W. Grimes * 8df8bae1dSRodney W. Grimes * This code is derived from software contributed to Berkeley by 9df8bae1dSRodney W. Grimes * the Systems Programming Group of the University of Utah Computer 10df8bae1dSRodney W. Grimes * Science Department. 11df8bae1dSRodney W. Grimes * 12df8bae1dSRodney W. Grimes * Redistribution and use in source and binary forms, with or without 13df8bae1dSRodney W. Grimes * modification, are permitted provided that the following conditions 14df8bae1dSRodney W. Grimes * are met: 15df8bae1dSRodney W. Grimes * 1. Redistributions of source code must retain the above copyright 16df8bae1dSRodney W. Grimes * notice, this list of conditions and the following disclaimer. 17df8bae1dSRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright 18df8bae1dSRodney W. Grimes * notice, this list of conditions and the following disclaimer in the 19df8bae1dSRodney W. Grimes * documentation and/or other materials provided with the distribution. 20fbbd9655SWarner Losh * 3. Neither the name of the University nor the names of its contributors 21df8bae1dSRodney W. Grimes * may be used to endorse or promote products derived from this software 22df8bae1dSRodney W. Grimes * without specific prior written permission. 23df8bae1dSRodney W. Grimes * 24df8bae1dSRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 25df8bae1dSRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26df8bae1dSRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 27df8bae1dSRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 28df8bae1dSRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 29df8bae1dSRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 30df8bae1dSRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 31df8bae1dSRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 32df8bae1dSRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 33df8bae1dSRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 34df8bae1dSRodney W. Grimes * SUCH DAMAGE. 35df8bae1dSRodney W. Grimes * 36df8bae1dSRodney W. Grimes * @(#)vm_pager.h 8.4 (Berkeley) 1/12/94 37c3aac50fSPeter Wemm * $FreeBSD$ 38df8bae1dSRodney W. Grimes */ 39df8bae1dSRodney W. Grimes 40df8bae1dSRodney W. Grimes /* 41df8bae1dSRodney W. Grimes * Pager routine interface definition. 42df8bae1dSRodney W. Grimes */ 43df8bae1dSRodney W. Grimes 44df8bae1dSRodney W. Grimes #ifndef _VM_PAGER_ 45df8bae1dSRodney W. Grimes #define _VM_PAGER_ 46df8bae1dSRodney W. Grimes 47f4cdb9d7SKonstantin Belousov #include <sys/systm.h> 48e7a58978SBruce Evans 49e3975643SJake Burkholder TAILQ_HEAD(pagerlst, vm_object); 50192112b7SKonstantin Belousov struct vnode; 51df8bae1dSRodney W. Grimes 52d20b2f76SPoul-Henning Kamp typedef void pgo_init_t(void); 533364c323SKonstantin Belousov typedef vm_object_t pgo_alloc_t(void *, vm_ooffset_t, vm_prot_t, vm_ooffset_t, 543364c323SKonstantin Belousov struct ucred *); 55d20b2f76SPoul-Henning Kamp typedef void pgo_dealloc_t(vm_object_t); 56b0cd2017SGleb Smirnoff typedef int pgo_getpages_t(vm_object_t, vm_page_t *, int, int *, int *); 5790effb23SGleb Smirnoff typedef void pgo_getpages_iodone_t(void *, vm_page_t *, int, int); 58b0cd2017SGleb Smirnoff typedef int pgo_getpages_async_t(vm_object_t, vm_page_t *, int, int *, int *, 5990effb23SGleb Smirnoff pgo_getpages_iodone_t, void *); 60d20b2f76SPoul-Henning Kamp typedef void pgo_putpages_t(vm_object_t, vm_page_t *, int, int, int *); 61d20b2f76SPoul-Henning Kamp typedef boolean_t pgo_haspage_t(vm_object_t, vm_pindex_t, int *, int *); 62c42b43a0SKonstantin Belousov typedef int pgo_populate_t(vm_object_t, vm_pindex_t, int, vm_prot_t, 63c42b43a0SKonstantin Belousov vm_pindex_t *, vm_pindex_t *); 64d20b2f76SPoul-Henning Kamp typedef void pgo_pageunswapped_t(vm_page_t); 65fe7bcbafSKyle Evans typedef void pgo_writecount_t(vm_object_t, vm_offset_t, vm_offset_t); 66180bcaa4SKonstantin Belousov typedef void pgo_set_writeable_dirty_t(vm_object_t); 67c23c555bSKonstantin Belousov typedef bool pgo_mightbedirty_t(vm_object_t); 68192112b7SKonstantin Belousov typedef void pgo_getvp_t(vm_object_t object, struct vnode **vpp, 69192112b7SKonstantin Belousov bool *vp_heldp); 701390a5cbSKonstantin Belousov typedef void pgo_freespace_t(vm_object_t object, vm_pindex_t start, 711390a5cbSKonstantin Belousov vm_size_t size); 72*d537d1f1SKonstantin Belousov typedef void pgo_page_inserted_t(vm_object_t object, vm_page_t m); 73*d537d1f1SKonstantin Belousov typedef void pgo_page_removed_t(vm_object_t object, vm_page_t m); 74d20b2f76SPoul-Henning Kamp 75df8bae1dSRodney W. Grimes struct pagerops { 7600a3fe96SKonstantin Belousov int pgo_kvme_type; 77d20b2f76SPoul-Henning Kamp pgo_init_t *pgo_init; /* Initialize pager. */ 78d20b2f76SPoul-Henning Kamp pgo_alloc_t *pgo_alloc; /* Allocate pager. */ 79d20b2f76SPoul-Henning Kamp pgo_dealloc_t *pgo_dealloc; /* Disassociate. */ 80d20b2f76SPoul-Henning Kamp pgo_getpages_t *pgo_getpages; /* Get (read) page. */ 8190effb23SGleb Smirnoff pgo_getpages_async_t *pgo_getpages_async; /* Get page asyncly. */ 82d20b2f76SPoul-Henning Kamp pgo_putpages_t *pgo_putpages; /* Put (write) page. */ 83e1a44545SGleb Smirnoff pgo_haspage_t *pgo_haspage; /* Query page. */ 84c42b43a0SKonstantin Belousov pgo_populate_t *pgo_populate; /* Bulk spec pagein. */ 85d20b2f76SPoul-Henning Kamp pgo_pageunswapped_t *pgo_pageunswapped; 86fe7bcbafSKyle Evans pgo_writecount_t *pgo_update_writecount; 87fe7bcbafSKyle Evans pgo_writecount_t *pgo_release_writecount; 88180bcaa4SKonstantin Belousov pgo_set_writeable_dirty_t *pgo_set_writeable_dirty; 89c23c555bSKonstantin Belousov pgo_mightbedirty_t *pgo_mightbedirty; 90192112b7SKonstantin Belousov pgo_getvp_t *pgo_getvp; 911390a5cbSKonstantin Belousov pgo_freespace_t *pgo_freespace; 92*d537d1f1SKonstantin Belousov pgo_page_inserted_t *pgo_page_inserted; 93*d537d1f1SKonstantin Belousov pgo_page_removed_t *pgo_page_removed; 94df8bae1dSRodney W. Grimes }; 95df8bae1dSRodney W. Grimes 96d474440aSKonstantin Belousov extern const struct pagerops defaultpagerops; 97d474440aSKonstantin Belousov extern const struct pagerops swappagerops; 98d474440aSKonstantin Belousov extern const struct pagerops vnodepagerops; 99d474440aSKonstantin Belousov extern const struct pagerops devicepagerops; 100d474440aSKonstantin Belousov extern const struct pagerops physpagerops; 101d474440aSKonstantin Belousov extern const struct pagerops sgpagerops; 102d474440aSKonstantin Belousov extern const struct pagerops mgtdevicepagerops; 103d474440aSKonstantin Belousov extern const struct pagerops swaptmpfspagerops; 104745f3305SPoul-Henning Kamp 105df8bae1dSRodney W. Grimes /* 106df8bae1dSRodney W. Grimes * get/put return values 107df8bae1dSRodney W. Grimes * OK operation was successful 108df8bae1dSRodney W. Grimes * BAD specified data was out of the accepted range 109df8bae1dSRodney W. Grimes * FAIL specified data was in range, but doesn't exist 110df8bae1dSRodney W. Grimes * PEND operations was initiated but not completed 111df8bae1dSRodney W. Grimes * ERROR error while accessing data that is in range and exists 112df8bae1dSRodney W. Grimes * AGAIN temporary resource shortage prevented operation from happening 113df8bae1dSRodney W. Grimes */ 114df8bae1dSRodney W. Grimes #define VM_PAGER_OK 0 115df8bae1dSRodney W. Grimes #define VM_PAGER_BAD 1 116df8bae1dSRodney W. Grimes #define VM_PAGER_FAIL 2 117df8bae1dSRodney W. Grimes #define VM_PAGER_PEND 3 118df8bae1dSRodney W. Grimes #define VM_PAGER_ERROR 4 119df8bae1dSRodney W. Grimes #define VM_PAGER_AGAIN 5 120df8bae1dSRodney W. Grimes 12143b7990eSMatthew Dillon #define VM_PAGER_PUT_SYNC 0x0001 12243b7990eSMatthew Dillon #define VM_PAGER_PUT_INVAL 0x0002 12399e6e193SMark Johnston #define VM_PAGER_PUT_NOREUSE 0x0004 12443b7990eSMatthew Dillon #define VM_PAGER_CLUSTER_OK 0x0008 1258f9110f6SJohn Dyson 126c4473420SPeter Wemm #ifdef _KERNEL 127a1c995b6SPoul-Henning Kamp 128d474440aSKonstantin Belousov extern const struct pagerops *pagertab[] __read_mostly; 1295f518366SJeff Roberson extern struct mtx_padalign pbuf_mtx; 13028f8db14SBruce Evans 131cd853791SKonstantin Belousov /* 132cd853791SKonstantin Belousov * Number of pages that pbuf buffer can store in b_pages. 133cd853791SKonstantin Belousov * It is +1 to allow for unaligned data buffer of maxphys size. 134cd853791SKonstantin Belousov */ 135cd853791SKonstantin Belousov #define PBUF_PAGES (atop(maxphys) + 1) 136cd853791SKonstantin Belousov 1373364c323SKonstantin Belousov vm_object_t vm_pager_allocate(objtype_t, void *, vm_ooffset_t, vm_prot_t, 1383364c323SKonstantin Belousov vm_ooffset_t, struct ucred *); 13911caded3SAlfred Perlstein void vm_pager_bufferinit(void); 14011caded3SAlfred Perlstein void vm_pager_deallocate(vm_object_t); 141b0cd2017SGleb Smirnoff int vm_pager_get_pages(vm_object_t, vm_page_t *, int, int *, int *); 142b0cd2017SGleb Smirnoff int vm_pager_get_pages_async(vm_object_t, vm_page_t *, int, int *, int *, 143093ebe1dSGleb Smirnoff pgo_getpages_iodone_t, void *); 14411caded3SAlfred Perlstein void vm_pager_init(void); 14511caded3SAlfred Perlstein vm_object_t vm_pager_object_lookup(struct pagerlst *, void *); 1461c7c3c6aSMatthew Dillon 147e4542174SMatthew Dillon static __inline void 148ee4211bcSKonstantin Belousov vm_pager_put_pages(vm_object_t object, vm_page_t *m, int count, int flags, 149ee4211bcSKonstantin Belousov int *rtvals) 150ee4211bcSKonstantin Belousov { 15189f6b863SAttilio Rao VM_OBJECT_ASSERT_WLOCKED(object); 152e4542174SMatthew Dillon (*pagertab[object->type]->pgo_putpages) 153e4542174SMatthew Dillon (object, m, count, flags, rtvals); 1541c7c3c6aSMatthew Dillon } 1551c7c3c6aSMatthew Dillon 15625db2c54SMatthew Dillon /* 15725db2c54SMatthew Dillon * vm_pager_haspage 15825db2c54SMatthew Dillon * 15925db2c54SMatthew Dillon * Check to see if an object's pager has the requested page. The 16025db2c54SMatthew Dillon * object's pager will also set before and after to give the caller 16125db2c54SMatthew Dillon * some idea of the number of pages before and after the requested 16225db2c54SMatthew Dillon * page can be I/O'd efficiently. 16325db2c54SMatthew Dillon * 164cf51adc0SAlan Cox * The object must be locked. 16525db2c54SMatthew Dillon */ 1661c7c3c6aSMatthew Dillon static __inline boolean_t 167ee4211bcSKonstantin Belousov vm_pager_has_page(vm_object_t object, vm_pindex_t offset, int *before, 168ee4211bcSKonstantin Belousov int *after) 169ee4211bcSKonstantin Belousov { 17023955314SAlfred Perlstein boolean_t ret; 17123955314SAlfred Perlstein 1724153054aSJeff Roberson VM_OBJECT_ASSERT_LOCKED(object); 17323955314SAlfred Perlstein ret = (*pagertab[object->type]->pgo_haspage) 17423955314SAlfred Perlstein (object, offset, before, after); 17523955314SAlfred Perlstein return (ret); 1761c7c3c6aSMatthew Dillon } 1771c7c3c6aSMatthew Dillon 178c42b43a0SKonstantin Belousov static __inline int 179c42b43a0SKonstantin Belousov vm_pager_populate(vm_object_t object, vm_pindex_t pidx, int fault_type, 180c42b43a0SKonstantin Belousov vm_prot_t max_prot, vm_pindex_t *first, vm_pindex_t *last) 181c42b43a0SKonstantin Belousov { 182c42b43a0SKonstantin Belousov 183c42b43a0SKonstantin Belousov MPASS((object->flags & OBJ_POPULATE) != 0); 184c42b43a0SKonstantin Belousov MPASS(pidx < object->size); 185c99d0c58SMark Johnston MPASS(blockcount_read(&object->paging_in_progress) > 0); 186c42b43a0SKonstantin Belousov return ((*pagertab[object->type]->pgo_populate)(object, pidx, 187c42b43a0SKonstantin Belousov fault_type, max_prot, first, last)); 188c42b43a0SKonstantin Belousov } 189c42b43a0SKonstantin Belousov 1901c7c3c6aSMatthew Dillon /* 1911c7c3c6aSMatthew Dillon * vm_pager_page_unswapped 1921c7c3c6aSMatthew Dillon * 193cf51adc0SAlan Cox * Destroy swap associated with the page. 1941c7c3c6aSMatthew Dillon * 195f976cfd9SPoul-Henning Kamp * XXX: A much better name would be "vm_pager_page_dirtied()" 196f976cfd9SPoul-Henning Kamp * XXX: It is not obvious if this could be profitably used by any 197f976cfd9SPoul-Henning Kamp * XXX: pagers besides the swap_pager or if it should even be a 198f976cfd9SPoul-Henning Kamp * XXX: generic pager_op in the first place. 1991c7c3c6aSMatthew Dillon */ 2001c7c3c6aSMatthew Dillon static __inline void 2011c7c3c6aSMatthew Dillon vm_pager_page_unswapped(vm_page_t m) 2021c7c3c6aSMatthew Dillon { 203ee4211bcSKonstantin Belousov pgo_pageunswapped_t *method; 2042e3b314dSAlan Cox 205ee4211bcSKonstantin Belousov method = pagertab[m->object->type]->pgo_pageunswapped; 206ee4211bcSKonstantin Belousov if (method != NULL) 207ee4211bcSKonstantin Belousov method(m); 2081c7c3c6aSMatthew Dillon } 2091c7c3c6aSMatthew Dillon 210fe7bcbafSKyle Evans static __inline void 211fe7bcbafSKyle Evans vm_pager_update_writecount(vm_object_t object, vm_offset_t start, 212fe7bcbafSKyle Evans vm_offset_t end) 213fe7bcbafSKyle Evans { 214ee4211bcSKonstantin Belousov pgo_writecount_t *method; 215fe7bcbafSKyle Evans 216ee4211bcSKonstantin Belousov method = pagertab[object->type]->pgo_update_writecount; 217ee4211bcSKonstantin Belousov if (method != NULL) 218ee4211bcSKonstantin Belousov method(object, start, end); 219fe7bcbafSKyle Evans } 220fe7bcbafSKyle Evans 221fe7bcbafSKyle Evans static __inline void 222fe7bcbafSKyle Evans vm_pager_release_writecount(vm_object_t object, vm_offset_t start, 223fe7bcbafSKyle Evans vm_offset_t end) 224fe7bcbafSKyle Evans { 225ee4211bcSKonstantin Belousov pgo_writecount_t *method; 226fe7bcbafSKyle Evans 227ee4211bcSKonstantin Belousov method = pagertab[object->type]->pgo_release_writecount; 228ee4211bcSKonstantin Belousov if (method != NULL) 229ee4211bcSKonstantin Belousov method(object, start, end); 230fe7bcbafSKyle Evans } 231fe7bcbafSKyle Evans 232192112b7SKonstantin Belousov static __inline void 233192112b7SKonstantin Belousov vm_pager_getvp(vm_object_t object, struct vnode **vpp, bool *vp_heldp) 234192112b7SKonstantin Belousov { 235192112b7SKonstantin Belousov pgo_getvp_t *method; 236192112b7SKonstantin Belousov 237192112b7SKonstantin Belousov *vpp = NULL; 238a7c198a2SKonstantin Belousov if (vp_heldp != NULL) 239192112b7SKonstantin Belousov *vp_heldp = false; 240192112b7SKonstantin Belousov method = pagertab[object->type]->pgo_getvp; 241a7c198a2SKonstantin Belousov if (method != NULL) 242192112b7SKonstantin Belousov method(object, vpp, vp_heldp); 243192112b7SKonstantin Belousov } 244192112b7SKonstantin Belousov 2451390a5cbSKonstantin Belousov static __inline void 2461390a5cbSKonstantin Belousov vm_pager_freespace(vm_object_t object, vm_pindex_t start, 2471390a5cbSKonstantin Belousov vm_size_t size) 2481390a5cbSKonstantin Belousov { 2491390a5cbSKonstantin Belousov pgo_freespace_t *method; 2501390a5cbSKonstantin Belousov 2511390a5cbSKonstantin Belousov method = pagertab[object->type]->pgo_freespace; 2521390a5cbSKonstantin Belousov if (method != NULL) 2531390a5cbSKonstantin Belousov method(object, start, size); 2541390a5cbSKonstantin Belousov } 2551390a5cbSKonstantin Belousov 256*d537d1f1SKonstantin Belousov static __inline void 257*d537d1f1SKonstantin Belousov vm_pager_page_inserted(vm_object_t object, vm_page_t m) 258*d537d1f1SKonstantin Belousov { 259*d537d1f1SKonstantin Belousov pgo_page_inserted_t *method; 260*d537d1f1SKonstantin Belousov 261*d537d1f1SKonstantin Belousov method = pagertab[object->type]->pgo_page_inserted; 262*d537d1f1SKonstantin Belousov if (method != NULL) 263*d537d1f1SKonstantin Belousov method(object, m); 264*d537d1f1SKonstantin Belousov } 265*d537d1f1SKonstantin Belousov 266*d537d1f1SKonstantin Belousov static __inline void 267*d537d1f1SKonstantin Belousov vm_pager_page_removed(vm_object_t object, vm_page_t m) 268*d537d1f1SKonstantin Belousov { 269*d537d1f1SKonstantin Belousov pgo_page_removed_t *method; 270*d537d1f1SKonstantin Belousov 271*d537d1f1SKonstantin Belousov method = pagertab[object->type]->pgo_page_removed; 272*d537d1f1SKonstantin Belousov if (method != NULL) 273*d537d1f1SKonstantin Belousov method(object, m); 274*d537d1f1SKonstantin Belousov } 275*d537d1f1SKonstantin Belousov 276b730fd30SKonstantin Belousov int vm_pager_alloc_dyn_type(struct pagerops *ops, int base_type); 277b730fd30SKonstantin Belousov void vm_pager_free_dyn_type(objtype_t type); 278b730fd30SKonstantin Belousov 279286790a7SKonstantin Belousov struct cdev_pager_ops { 280286790a7SKonstantin Belousov int (*cdev_pg_fault)(vm_object_t vm_obj, vm_ooffset_t offset, 281286790a7SKonstantin Belousov int prot, vm_page_t *mres); 282c42b43a0SKonstantin Belousov int (*cdev_pg_populate)(vm_object_t vm_obj, vm_pindex_t pidx, 283c42b43a0SKonstantin Belousov int fault_type, vm_prot_t max_prot, vm_pindex_t *first, 284c42b43a0SKonstantin Belousov vm_pindex_t *last); 285286790a7SKonstantin Belousov int (*cdev_pg_ctor)(void *handle, vm_ooffset_t size, vm_prot_t prot, 286286790a7SKonstantin Belousov vm_ooffset_t foff, struct ucred *cred, u_short *color); 287286790a7SKonstantin Belousov void (*cdev_pg_dtor)(void *handle); 288286790a7SKonstantin Belousov }; 289286790a7SKonstantin Belousov 290286790a7SKonstantin Belousov vm_object_t cdev_pager_allocate(void *handle, enum obj_type tp, 291d474440aSKonstantin Belousov const struct cdev_pager_ops *ops, vm_ooffset_t size, vm_prot_t prot, 292286790a7SKonstantin Belousov vm_ooffset_t foff, struct ucred *cred); 293286790a7SKonstantin Belousov vm_object_t cdev_pager_lookup(void *handle); 294286790a7SKonstantin Belousov void cdev_pager_free_page(vm_object_t object, vm_page_t m); 295286790a7SKonstantin Belousov 296a720b31cSKonstantin Belousov struct phys_pager_ops { 297a720b31cSKonstantin Belousov int (*phys_pg_getpages)(vm_object_t vm_obj, vm_page_t *m, int count, 298a720b31cSKonstantin Belousov int *rbehind, int *rahead); 299a720b31cSKonstantin Belousov int (*phys_pg_populate)(vm_object_t vm_obj, vm_pindex_t pidx, 300a720b31cSKonstantin Belousov int fault_type, vm_prot_t max_prot, vm_pindex_t *first, 301a720b31cSKonstantin Belousov vm_pindex_t *last); 302a720b31cSKonstantin Belousov boolean_t (*phys_pg_haspage)(vm_object_t obj, vm_pindex_t pindex, 303a720b31cSKonstantin Belousov int *before, int *after); 304a720b31cSKonstantin Belousov void (*phys_pg_ctor)(vm_object_t vm_obj, vm_prot_t prot, 305a720b31cSKonstantin Belousov vm_ooffset_t foff, struct ucred *cred); 306a720b31cSKonstantin Belousov void (*phys_pg_dtor)(vm_object_t vm_obj); 307a720b31cSKonstantin Belousov }; 308d474440aSKonstantin Belousov extern const struct phys_pager_ops default_phys_pg_ops; 309d474440aSKonstantin Belousov vm_object_t phys_pager_allocate(void *handle, const struct phys_pager_ops *ops, 310a720b31cSKonstantin Belousov void *data, vm_ooffset_t size, vm_prot_t prot, vm_ooffset_t foff, 311a720b31cSKonstantin Belousov struct ucred *cred); 312a720b31cSKonstantin Belousov 313a1287949SEivind Eklund #endif /* _KERNEL */ 314df8bae1dSRodney W. Grimes #endif /* _VM_PAGER_ */ 315