https://github.com/torvalds/linux
Revision 0d4cbb5e7f60b2f1a4d8b7f6ea4cc264262c7a01 authored by Linus Torvalds on 11 September 2007, 02:49:55 UTC, committed by Linus Torvalds on 11 September 2007, 02:50:29 UTC
1 parent 0eb0969
Raw File
Tip revision: 0d4cbb5e7f60b2f1a4d8b7f6ea4cc264262c7a01 authored by Linus Torvalds on 11 September 2007, 02:49:55 UTC
Linux 2.6.23-rc6
Tip revision: 0d4cbb5
cpu.h
#ifndef _ASM_IA64_CPU_H_
#define _ASM_IA64_CPU_H_

#include <linux/device.h>
#include <linux/cpu.h>
#include <linux/topology.h>
#include <linux/percpu.h>

struct ia64_cpu {
	struct cpu cpu;
};

DECLARE_PER_CPU(struct ia64_cpu, cpu_devices);

DECLARE_PER_CPU(int, cpu_state);

extern int arch_register_cpu(int num);
#ifdef CONFIG_HOTPLUG_CPU
extern void arch_unregister_cpu(int);
#endif

#endif /* _ASM_IA64_CPU_H_ */
back to top