vm_object.h (a10870ecea813042db7c41e906e1a5c5693f8a34) | vm_object.h (f0c07fe3d0007a4499f81583a99598cd0a74d45b) |
---|---|
1/*- 2 * SPDX-License-Identifier: (BSD-3-Clause AND MIT-CMU) 3 * 4 * Copyright (c) 1991, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * This code is derived from software contributed to Berkeley by 8 * The Mach Operating System project at Carnegie-Mellon University. --- 123 unchanged lines hidden (view full) --- 132 /* 133 * Device pager 134 * 135 * devp_pglist - list of allocated pages 136 */ 137 struct { 138 TAILQ_HEAD(, vm_page) devp_pglist; 139 const struct cdev_pager_ops *ops; | 1/*- 2 * SPDX-License-Identifier: (BSD-3-Clause AND MIT-CMU) 3 * 4 * Copyright (c) 1991, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * This code is derived from software contributed to Berkeley by 8 * The Mach Operating System project at Carnegie-Mellon University. --- 123 unchanged lines hidden (view full) --- 132 /* 133 * Device pager 134 * 135 * devp_pglist - list of allocated pages 136 */ 137 struct { 138 TAILQ_HEAD(, vm_page) devp_pglist; 139 const struct cdev_pager_ops *ops; |
140 struct cdev *dev; | 140 void *handle; |
141 } devp; 142 143 /* 144 * SG pager 145 * 146 * sgp_pglist - list of allocated pages 147 */ 148 struct { --- 246 unchanged lines hidden --- | 141 } devp; 142 143 /* 144 * SG pager 145 * 146 * sgp_pglist - list of allocated pages 147 */ 148 struct { --- 246 unchanged lines hidden --- |