Rev. 228360 moved the call to cpu_set_upcall() to happen before

td_proc gets initialized in td (=newtd). Use td0 instead.

MFC after:	3 days
This commit is contained in:
marcel 2012-02-08 04:05:38 +00:00
parent e200cb94e2
commit b1e43d7145

View File

@ -192,7 +192,7 @@ cpu_set_upcall(struct thread *td, struct thread *td0)
bcopy(td0->td_pcb, pcb, sizeof(*pcb));
pcb->pcb_special.bspstore = td->td_kstack;
pcb->pcb_special.pfs = 0;
pcb->pcb_current_pmap = vmspace_pmap(td->td_proc->p_vmspace);
pcb->pcb_current_pmap = vmspace_pmap(td0->td_proc->p_vmspace);
pcb->pcb_special.sp = (uintptr_t)tf - 16;
pcb->pcb_special.rp = FDESC_FUNC(fork_trampoline);
cpu_set_fork_handler(td, (void (*)(void*))fork_return, td);