Displaying 1 result from an estimated 1 matches for "upobj".
Did you mean:
pobj
2003 Aug 22
3
PAE removal patch for testing
...p(object, pindex)
+ vm_object_t object;
+ vm_pindex_t pindex;
{
vm_page_t m;
retry:
@@ -828,12 +845,14 @@
* This routine directly affects the fork perf for a process.
*/
void
-pmap_new_proc(struct proc *p)
+pmap_new_proc(p)
+ struct proc *p;
{
- int i;
+ int i, updateneeded;
vm_object_t upobj;
- vm_page_t m, ma[UPAGES];
- vm_offset_t up;
+ vm_page_t m;
+ struct user *up;
+ unsigned *ptek, oldpte;
/*
* allocate object for the upages
@@ -844,19 +863,22 @@
}
/* get a kernel virtual address for the UPAGES for this proc */
- if ((up = (vm_offset_t) p->p_addr) == 0) {
- up =...