Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Oct 2006 21:21:03 GMT
From:      John Birrell <jb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 107583 for review
Message-ID:  <200610092121.k99LL3sB099812@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=107583

Change 107583 by jb@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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200610092121.k99LL3sB099812>