PERFORCE change 129932 for review

Peter Wemm peter at FreeBSD.org
Sat Dec 1 16:28:06 PST 2007


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

Change 129932 by peter at peter_daintree on 2007/12/02 00:27:55

	The rumour of proc_linkup0()'s demise have been greatly exaggerated.

Affected files ...

.. //depot/projects/bike_sched/sys/amd64/amd64/machdep.c#5 edit
.. //depot/projects/bike_sched/sys/i386/i386/machdep.c#5 edit
.. //depot/projects/bike_sched/sys/ia64/ia64/machdep.c#5 edit
.. //depot/projects/bike_sched/sys/pc98/pc98/machdep.c#6 edit
.. //depot/projects/bike_sched/sys/powerpc/powerpc/machdep.c#4 edit
.. //depot/projects/bike_sched/sys/sparc64/sparc64/machdep.c#4 edit

Differences ...

==== //depot/projects/bike_sched/sys/amd64/amd64/machdep.c#5 (text+ko) ====

@@ -1136,7 +1136,7 @@
  	 * This may be done better later if it gets more high level
  	 * components in it. If so just link td->td_proc here.
 	 */
-	proc_linkup(&proc0, &thread0);
+	proc_linkup0(&proc0, &thread0);
 
 	preload_metadata = (caddr_t)(uintptr_t)(modulep + KERNBASE);
 	preload_bootstrap_relocate(KERNBASE);

==== //depot/projects/bike_sched/sys/i386/i386/machdep.c#5 (text+ko) ====

@@ -2085,7 +2085,7 @@
  	 * This may be done better later if it gets more high level
  	 * components in it. If so just link td->td_proc here.
 	 */
-	proc_linkup(&proc0, &thread0);
+	proc_linkup0(&proc0, &thread0);
 
 	metadata_missing = 0;
 	if (bootinfo.bi_modulep) {

==== //depot/projects/bike_sched/sys/ia64/ia64/machdep.c#5 (text+ko) ====

@@ -789,7 +789,7 @@
 	msgbufp = (struct msgbuf *)pmap_steal_memory(MSGBUF_SIZE);
 	msgbufinit(msgbufp, MSGBUF_SIZE);
 
-	proc_linkup(&proc0, &thread0);
+	proc_linkup0(&proc0, &thread0);
 	/*
 	 * Init mapping for kernel stack for proc 0
 	 */

==== //depot/projects/bike_sched/sys/pc98/pc98/machdep.c#6 (text+ko) ====

@@ -1914,7 +1914,7 @@
  	 * This may be done better later if it gets more high level
  	 * components in it. If so just link td->td_proc here.
 	 */
-	proc_linkup(&proc0, &thread0);
+	proc_linkup0(&proc0, &thread0);
 
 	/*
 	 * Initialize DMAC

==== //depot/projects/bike_sched/sys/powerpc/powerpc/machdep.c#4 (text+ko) ====

@@ -292,7 +292,7 @@
 	/*
 	 * Start initializing proc0 and thread0.
 	 */
-	proc_linkup(&proc0, &thread0);
+	proc_linkup0(&proc0, &thread0);
 	thread0.td_frame = &frame0;
 
 	/*

==== //depot/projects/bike_sched/sys/sparc64/sparc64/machdep.c#4 (text+ko) ====

@@ -399,7 +399,7 @@
 	/*
 	 * Initialize proc0 stuff (p_contested needs to be done early).
 	 */
-	proc_linkup(&proc0, &thread0);
+	proc_linkup0(&proc0, &thread0);
 	proc0.p_md.md_sigtramp = NULL;
 	proc0.p_md.md_utrap = NULL;
 	thread0.td_kstack = kstack0;


More information about the p4-projects mailing list