Module Name: src Committed By: martin Date: Fri Nov 6 15:30:59 UTC 2015
Modified Files: src/sys/arch/sparc64/sparc64: locore.s vm_machdep.c Log Message: Basically revert r1.246 of locore.s and r1.73 of vm_machdep.c: Remove special case handling for userland lwps from cpu_lwp_fork, instead do it in lwp_trampoline when we first return to userland. which was a stupid idea - since we did now set all fork child's %tstate (and thus %pstate when back in userland) to the current kernel's userland default. This meant we lost the address mask bit for 32bit processes and all memory model details for 64bit ones. Move it back to cpu_lwp_fork and fix the condition to only do it once when forking init. To generate a diff of this commit: cvs rdiff -u -r1.385 -r1.386 src/sys/arch/sparc64/sparc64/locore.s cvs rdiff -u -r1.100 -r1.101 src/sys/arch/sparc64/sparc64/vm_machdep.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.