PERFORCE change 107583 for review

John Birrell jb at FreeBSD.org
Mon Oct 9 14:21:11 PDT 2006


http://perforce.freebsd.org/chv.cgi?CH=107583

Change 107583 by jb at jb_freebsd7 on 2006/10/09 21:20:06

	Make KSE support a kernel option.

Affected files ...

.. //depot/projects/dtrace/src/sys/arm/at91/kb920x_machdep.c#11 edit

Differences ...

==== //depot/projects/dtrace/src/sys/arm/at91/kb920x_machdep.c#11 (text) ====

@@ -454,7 +454,11 @@
 	undefined_handler_address = (u_int)undefinedinstruction_bounce;
 	undefined_init();
 				
+#ifdef KSE
+	proc_linkup(&proc0, &ksegrp0, &thread0);
+#else
 	proc_linkup(&proc0, &thread0);
+#endif
 	thread0.td_kstack = kernelstack.pv_va;
 	thread0.td_pcb = (struct pcb *)
 		(thread0.td_kstack + KSTACK_PAGES * PAGE_SIZE) - 1;


More information about the p4-projects mailing list