Displaying 2 results from an estimated 2 matches for "round_page".
2003 Apr 09
1
Panics on 4.7 system
...panic("vnode_pager_alloc: no vnode reference");
140
141 if (object == NULL) {
142 /*
143 * And an object of the appropriate size
144 */
145 object = vm_object_allocate(OBJT_VNODE,
OFF_TO_IDX(round_page(size)));
(kgdb)
Cheers,
--
+- Christopher Smith, Systems Administrator
------------------------------+
| Server & Security Group, Information Technology Services
|
| The University of Queensland, Brisbane, Australia, 4072
|
+- Ph +61 7 3365 4046 | ema...
2003 Aug 22
3
PAE removal patch for testing
...86/i386/db_interface.c /usr/src/sys/i386/i386/db_interface.c
--- /usr/src/sys.old/i386/i386/db_interface.c Thu Aug 21 18:35:33 2003
+++ /usr/src/sys/i386/i386/db_interface.c Fri Aug 22 02:15:24 2003
@@ -251,7 +251,7 @@
if (addr > trunc_page((vm_offset_t)btext) - size &&
addr < round_page((vm_offset_t)etext)) {
- ptep0 = vtopte(addr);
+ ptep0 = pmap_pte(kernel_pmap, addr);
oldmap0 = *ptep0;
*ptep0 |= PG_RW;
@@ -259,14 +259,14 @@
if ((*ptep0 & PG_PS) == 0) {
addr1 = trunc_page(addr + size - 1);
if (trunc_page(addr) != addr1) {
- pt...