Beispiel #1
0
void __cpuinit smp_store_cpu_info(int id)
{
	struct cpuinfo_x86 *c = &cpu_data(id);

	*c = boot_cpu_data;
	c->cpu_index = id;
	if (id != 0)
		identify_secondary_cpu(c);
}
/*
 * The bootstrap kernel entry code has set these up. Save them for
 * a given CPU
 */
void __cpuinit smp_store_cpu_info(int id)
{
    struct cpuinfo_x86 *c = &cpu_data(id);

    *c = boot_cpu_data;
    c->cpu_index = id;
    /*
     * During boot time, CPU0 has this setup already. Save the info when
     * bringing up AP or offlined CPU0.
     */
    identify_secondary_cpu(c);
}