public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Hotplug CPU Boot Changes: BEWARE
@ 2002-06-07 10:40 Rusty Russell
  2002-06-07 14:51 ` Eric W. Biederman
  0 siblings, 1 reply; 6+ messages in thread
From: Rusty Russell @ 2002-06-07 10:40 UTC (permalink / raw)
  To: linux-kernel
  Cc: ralf, rhw, mingo, paulus, anton, schwidefsky, bh, davem, ak,
	torvalds

Hi all (esp port maintainers),

	In writing the hotplug CPU stuff, Linus asked me to alter the
boot sequence to "plug in" CPUs.  I am shortly going to be sending
these patches to him now I have got my x86 box to boot with the
changes.

The changes are as follows:
1) Non-linear CPU support.  No more number/logical map, or
   smp_num_cpus.  This is easy to change over to.

2) The boot sequence used to be:
	smp_boot_cpus()
	smp_commence()
	start idle thread, do initfuncs...

   Now it is:
	start idle thread
	smp_prepare_cpus(int max_cpus)
		=> Probes for cpus, sets up cpu_possible() macro to work.
	do initfuncs
	For each cpu for which cpu_possible(cpu) is true:
		cpu_up(int cpunum)
	smp_cpus_done(max_cpus);

There are two ways to transition: one is to do the minimal hacks so
that the new boot code works (as per my x86 patch).  The other is to
take into account that the next stage (optional by arch) is to
actually bring cpus up and down on the fly, and hence actually write
code that will work after boot as well (as per my ppc patch).

For the patches, see:
	http://www.kernel.org/pub/linux/kernel/people/rusty

Rusty.	
--
  Anyone who quotes me in their sig is an idiot. -- Rusty Russell.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2002-06-10 13:58 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-06-07 10:40 Hotplug CPU Boot Changes: BEWARE Rusty Russell
2002-06-07 14:51 ` Eric W. Biederman
2002-06-02 16:22   ` Pavel Machek
2002-06-08  1:55   ` Keith Owens
2002-06-10  7:05   ` Rusty Russell
2002-06-10 13:43     ` Eric W. Biederman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox