145749Smckusick /* 245749Smckusick * Copyright (c) 1990 University of Utah. 363378Sbostic * Copyright (c) 1991, 1993 463378Sbostic * The Regents of the University of California. All rights reserved. 545749Smckusick * 645749Smckusick * This code is derived from software contributed to Berkeley by 745749Smckusick * the Systems Programming Group of the University of Utah Computer 845749Smckusick * Science Department. 945749Smckusick * 1045749Smckusick * %sccs.include.redist.c% 1145749Smckusick * 12*65130Smckusick * @(#)device_pager.h 8.3 (Berkeley) 12/13/93 1345749Smckusick */ 1445749Smckusick 1545749Smckusick #ifndef _DEVICE_PAGER_ 1645749Smckusick #define _DEVICE_PAGER_ 1 1745749Smckusick 1845749Smckusick /* 1945749Smckusick * Device pager private data. 2045749Smckusick */ 2145749Smckusick struct devpager { 22*65130Smckusick struct pglist devp_pglist; /* list of pages allocated */ 2345749Smckusick vm_object_t devp_object; /* object representing this device */ 2445749Smckusick }; 2545749Smckusick typedef struct devpager *dev_pager_t; 2645749Smckusick 2745749Smckusick #endif /* _DEVICE_PAGER_ */ 28