cpu-hotplug.txt 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  1. CPU hotplug Support in Linux(tm) Kernel
  2. Maintainers:
  3. CPU Hotplug Core:
  4. Rusty Russell <rusty@rustcorp.com.au>
  5. Srivatsa Vaddagiri <vatsa@in.ibm.com>
  6. i386:
  7. Zwane Mwaikambo <zwanem@gmail.com>
  8. ppc64:
  9. Nathan Lynch <nathanl@austin.ibm.com>
  10. Joel Schopp <jschopp@austin.ibm.com>
  11. ia64/x86_64:
  12. Ashok Raj <ashok.raj@intel.com>
  13. s390:
  14. Heiko Carstens <heiko.carstens@de.ibm.com>
  15. Authors: Ashok Raj <ashok.raj@intel.com>
  16. Lots of feedback: Nathan Lynch <nathanl@austin.ibm.com>,
  17. Joel Schopp <jschopp@austin.ibm.com>
  18. Introduction
  19. Modern advances in system architectures have introduced advanced error
  20. reporting and correction capabilities in processors. CPU architectures permit
  21. partitioning support, where compute resources of a single CPU could be made
  22. available to virtual machine environments. There are couple OEMS that
  23. support NUMA hardware which are hot pluggable as well, where physical
  24. node insertion and removal require support for CPU hotplug.
  25. Such advances require CPUs available to a kernel to be removed either for
  26. provisioning reasons, or for RAS purposes to keep an offending CPU off
  27. system execution path. Hence the need for CPU hotplug support in the
  28. Linux kernel.
  29. A more novel use of CPU-hotplug support is its use today in suspend
  30. resume support for SMP. Dual-core and HT support makes even
  31. a laptop run SMP kernels which didn't support these methods. SMP support
  32. for suspend/resume is a work in progress.
  33. General Stuff about CPU Hotplug
  34. --------------------------------
  35. Command Line Switches
  36. ---------------------
  37. maxcpus=n Restrict boot time cpus to n. Say if you have 4 cpus, using
  38. maxcpus=2 will only boot 2. You can choose to bring the
  39. other cpus later online, read FAQ's for more info.
  40. additional_cpus=n (*) Use this to limit hotpluggable cpus. This option sets
  41. cpu_possible_mask = cpu_present_mask + additional_cpus
  42. cede_offline={"off","on"} Use this option to disable/enable putting offlined
  43. processors to an extended H_CEDE state on
  44. supported pseries platforms.
  45. If nothing is specified,
  46. cede_offline is set to "on".
  47. (*) Option valid only for following architectures
  48. - ia64
  49. ia64 uses the number of disabled local apics in ACPI tables MADT to
  50. determine the number of potentially hot-pluggable cpus. The implementation
  51. should only rely on this to count the # of cpus, but *MUST* not rely
  52. on the apicid values in those tables for disabled apics. In the event
  53. BIOS doesn't mark such hot-pluggable cpus as disabled entries, one could
  54. use this parameter "additional_cpus=x" to represent those cpus in the
  55. cpu_possible_mask.
  56. possible_cpus=n [s390,x86_64] use this to set hotpluggable cpus.
  57. This option sets possible_cpus bits in
  58. cpu_possible_mask. Thus keeping the numbers of bits set
  59. constant even if the machine gets rebooted.
  60. CPU maps and such
  61. -----------------
  62. [More on cpumaps and primitive to manipulate, please check
  63. include/linux/cpumask.h that has more descriptive text.]
  64. cpu_possible_mask: Bitmap of possible CPUs that can ever be available in the
  65. system. This is used to allocate some boot time memory for per_cpu variables
  66. that aren't designed to grow/shrink as CPUs are made available or removed.
  67. Once set during boot time discovery phase, the map is static, i.e no bits
  68. are added or removed anytime. Trimming it accurately for your system needs
  69. upfront can save some boot time memory. See below for how we use heuristics
  70. in x86_64 case to keep this under check.
  71. cpu_online_mask: Bitmap of all CPUs currently online. Its set in __cpu_up()
  72. after a cpu is available for kernel scheduling and ready to receive
  73. interrupts from devices. Its cleared when a cpu is brought down using
  74. __cpu_disable(), before which all OS services including interrupts are
  75. migrated to another target CPU.
  76. cpu_present_mask: Bitmap of CPUs currently present in the system. Not all
  77. of them may be online. When physical hotplug is processed by the relevant
  78. subsystem (e.g ACPI) can change and new bit either be added or removed
  79. from the map depending on the event is hot-add/hot-remove. There are currently
  80. no locking rules as of now. Typical usage is to init topology during boot,
  81. at which time hotplug is disabled.
  82. You really dont need to manipulate any of the system cpu maps. They should
  83. be read-only for most use. When setting up per-cpu resources almost always use
  84. cpu_possible_mask/for_each_possible_cpu() to iterate.
  85. Never use anything other than cpumask_t to represent bitmap of CPUs.
  86. #include <linux/cpumask.h>
  87. for_each_possible_cpu - Iterate over cpu_possible_mask
  88. for_each_online_cpu - Iterate over cpu_online_mask
  89. for_each_present_cpu - Iterate over cpu_present_mask
  90. for_each_cpu(x,mask) - Iterate over some random collection of cpu mask.
  91. #include <linux/cpu.h>
  92. get_online_cpus() and put_online_cpus():
  93. The above calls are used to inhibit cpu hotplug operations. While the
  94. cpu_hotplug.refcount is non zero, the cpu_online_mask will not change.
  95. If you merely need to avoid cpus going away, you could also use
  96. preempt_disable() and preempt_enable() for those sections.
  97. Just remember the critical section cannot call any
  98. function that can sleep or schedule this process away. The preempt_disable()
  99. will work as long as stop_machine_run() is used to take a cpu down.
  100. CPU Hotplug - Frequently Asked Questions.
  101. Q: How to enable my kernel to support CPU hotplug?
  102. A: When doing make defconfig, Enable CPU hotplug support
  103. "Processor type and Features" -> Support for Hotpluggable CPUs
  104. Make sure that you have CONFIG_SMP turned on as well.
  105. You would need to enable CONFIG_HOTPLUG_CPU for SMP suspend/resume support
  106. as well.
  107. Q: What architectures support CPU hotplug?
  108. A: As of 2.6.14, the following architectures support CPU hotplug.
  109. i386 (Intel), ppc, ppc64, parisc, s390, ia64 and x86_64
  110. Q: How to test if hotplug is supported on the newly built kernel?
  111. A: You should now notice an entry in sysfs.
  112. Check if sysfs is mounted, using the "mount" command. You should notice
  113. an entry as shown below in the output.
  114. ....
  115. none on /sys type sysfs (rw)
  116. ....
  117. If this is not mounted, do the following.
  118. #mkdir /sysfs
  119. #mount -t sysfs sys /sys
  120. Now you should see entries for all present cpu, the following is an example
  121. in a 8-way system.
  122. #pwd
  123. #/sys/devices/system/cpu
  124. #ls -l
  125. total 0
  126. drwxr-xr-x 10 root root 0 Sep 19 07:44 .
  127. drwxr-xr-x 13 root root 0 Sep 19 07:45 ..
  128. drwxr-xr-x 3 root root 0 Sep 19 07:44 cpu0
  129. drwxr-xr-x 3 root root 0 Sep 19 07:44 cpu1
  130. drwxr-xr-x 3 root root 0 Sep 19 07:44 cpu2
  131. drwxr-xr-x 3 root root 0 Sep 19 07:44 cpu3
  132. drwxr-xr-x 3 root root 0 Sep 19 07:44 cpu4
  133. drwxr-xr-x 3 root root 0 Sep 19 07:44 cpu5
  134. drwxr-xr-x 3 root root 0 Sep 19 07:44 cpu6
  135. drwxr-xr-x 3 root root 0 Sep 19 07:48 cpu7
  136. Under each directory you would find an "online" file which is the control
  137. file to logically online/offline a processor.
  138. Q: Does hot-add/hot-remove refer to physical add/remove of cpus?
  139. A: The usage of hot-add/remove may not be very consistently used in the code.
  140. CONFIG_HOTPLUG_CPU enables logical online/offline capability in the kernel.
  141. To support physical addition/removal, one would need some BIOS hooks and
  142. the platform should have something like an attention button in PCI hotplug.
  143. CONFIG_ACPI_HOTPLUG_CPU enables ACPI support for physical add/remove of CPUs.
  144. Q: How do i logically offline a CPU?
  145. A: Do the following.
  146. #echo 0 > /sys/devices/system/cpu/cpuX/online
  147. Once the logical offline is successful, check
  148. #cat /proc/interrupts
  149. You should now not see the CPU that you removed. Also online file will report
  150. the state as 0 when a cpu if offline and 1 when its online.
  151. #To display the current cpu state.
  152. #cat /sys/devices/system/cpu/cpuX/online
  153. Q: Why can't i remove CPU0 on some systems?
  154. A: Some architectures may have some special dependency on a certain CPU.
  155. For e.g in IA64 platforms we have ability to sent platform interrupts to the
  156. OS. a.k.a Corrected Platform Error Interrupts (CPEI). In current ACPI
  157. specifications, we didn't have a way to change the target CPU. Hence if the
  158. current ACPI version doesn't support such re-direction, we disable that CPU
  159. by making it not-removable.
  160. In such cases you will also notice that the online file is missing under cpu0.
  161. Q: Is CPU0 removable on X86?
  162. A: Yes. If kernel is compiled with CONFIG_BOOTPARAM_HOTPLUG_CPU0=y, CPU0 is
  163. removable by default. Otherwise, CPU0 is also removable by kernel option
  164. cpu0_hotplug.
  165. But some features depend on CPU0. Two known dependencies are:
  166. 1. Resume from hibernate/suspend depends on CPU0. Hibernate/suspend will fail if
  167. CPU0 is offline and you need to online CPU0 before hibernate/suspend can
  168. continue.
  169. 2. PIC interrupts also depend on CPU0. CPU0 can't be removed if a PIC interrupt
  170. is detected.
  171. It's said poweroff/reboot may depend on CPU0 on some machines although I haven't
  172. seen any poweroff/reboot failure so far after CPU0 is offline on a few tested
  173. machines.
  174. Please let me know if you know or see any other dependencies of CPU0.
  175. If the dependencies are under your control, you can turn on CPU0 hotplug feature
  176. either by CONFIG_BOOTPARAM_HOTPLUG_CPU0 or by kernel parameter cpu0_hotplug.
  177. --Fenghua Yu <fenghua.yu@intel.com>
  178. Q: How do i find out if a particular CPU is not removable?
  179. A: Depending on the implementation, some architectures may show this by the
  180. absence of the "online" file. This is done if it can be determined ahead of
  181. time that this CPU cannot be removed.
  182. In some situations, this can be a run time check, i.e if you try to remove the
  183. last CPU, this will not be permitted. You can find such failures by
  184. investigating the return value of the "echo" command.
  185. Q: What happens when a CPU is being logically offlined?
  186. A: The following happen, listed in no particular order :-)
  187. - A notification is sent to in-kernel registered modules by sending an event
  188. CPU_DOWN_PREPARE or CPU_DOWN_PREPARE_FROZEN, depending on whether or not the
  189. CPU is being offlined while tasks are frozen due to a suspend operation in
  190. progress
  191. - All processes are migrated away from this outgoing CPU to new CPUs.
  192. The new CPU is chosen from each process' current cpuset, which may be
  193. a subset of all online CPUs.
  194. - All interrupts targeted to this CPU is migrated to a new CPU
  195. - timers/bottom half/task lets are also migrated to a new CPU
  196. - Once all services are migrated, kernel calls an arch specific routine
  197. __cpu_disable() to perform arch specific cleanup.
  198. - Once this is successful, an event for successful cleanup is sent by an event
  199. CPU_DEAD (or CPU_DEAD_FROZEN if tasks are frozen due to a suspend while the
  200. CPU is being offlined).
  201. "It is expected that each service cleans up when the CPU_DOWN_PREPARE
  202. notifier is called, when CPU_DEAD is called its expected there is nothing
  203. running on behalf of this CPU that was offlined"
  204. Q: If i have some kernel code that needs to be aware of CPU arrival and
  205. departure, how to i arrange for proper notification?
  206. A: This is what you would need in your kernel code to receive notifications.
  207. #include <linux/cpu.h>
  208. static int foobar_cpu_callback(struct notifier_block *nfb,
  209. unsigned long action, void *hcpu)
  210. {
  211. unsigned int cpu = (unsigned long)hcpu;
  212. switch (action) {
  213. case CPU_ONLINE:
  214. case CPU_ONLINE_FROZEN:
  215. foobar_online_action(cpu);
  216. break;
  217. case CPU_DEAD:
  218. case CPU_DEAD_FROZEN:
  219. foobar_dead_action(cpu);
  220. break;
  221. }
  222. return NOTIFY_OK;
  223. }
  224. static struct notifier_block foobar_cpu_notifier =
  225. {
  226. .notifier_call = foobar_cpu_callback,
  227. };
  228. You need to call register_cpu_notifier() from your init function.
  229. Init functions could be of two types:
  230. 1. early init (init function called when only the boot processor is online).
  231. 2. late init (init function called _after_ all the CPUs are online).
  232. For the first case, you should add the following to your init function
  233. register_cpu_notifier(&foobar_cpu_notifier);
  234. For the second case, you should add the following to your init function
  235. register_hotcpu_notifier(&foobar_cpu_notifier);
  236. You can fail PREPARE notifiers if something doesn't work to prepare resources.
  237. This will stop the activity and send a following CANCELED event back.
  238. CPU_DEAD should not be failed, its just a goodness indication, but bad
  239. things will happen if a notifier in path sent a BAD notify code.
  240. Q: I don't see my action being called for all CPUs already up and running?
  241. A: Yes, CPU notifiers are called only when new CPUs are on-lined or offlined.
  242. If you need to perform some action for each cpu already in the system, then
  243. do this:
  244. for_each_online_cpu(i) {
  245. foobar_cpu_callback(&foobar_cpu_notifier, CPU_UP_PREPARE, i);
  246. foobar_cpu_callback(&foobar_cpu_notifier, CPU_ONLINE, i);
  247. }
  248. However, if you want to register a hotplug callback, as well as perform
  249. some initialization for CPUs that are already online, then do this:
  250. Version 1: (Correct)
  251. ---------
  252. cpu_notifier_register_begin();
  253. for_each_online_cpu(i) {
  254. foobar_cpu_callback(&foobar_cpu_notifier,
  255. CPU_UP_PREPARE, i);
  256. foobar_cpu_callback(&foobar_cpu_notifier,
  257. CPU_ONLINE, i);
  258. }
  259. /* Note the use of the double underscored version of the API */
  260. __register_cpu_notifier(&foobar_cpu_notifier);
  261. cpu_notifier_register_done();
  262. Note that the following code is *NOT* the right way to achieve this,
  263. because it is prone to an ABBA deadlock between the cpu_add_remove_lock
  264. and the cpu_hotplug.lock.
  265. Version 2: (Wrong!)
  266. ---------
  267. get_online_cpus();
  268. for_each_online_cpu(i) {
  269. foobar_cpu_callback(&foobar_cpu_notifier,
  270. CPU_UP_PREPARE, i);
  271. foobar_cpu_callback(&foobar_cpu_notifier,
  272. CPU_ONLINE, i);
  273. }
  274. register_cpu_notifier(&foobar_cpu_notifier);
  275. put_online_cpus();
  276. So always use the first version shown above when you want to register
  277. callbacks as well as initialize the already online CPUs.
  278. Q: If i would like to develop cpu hotplug support for a new architecture,
  279. what do i need at a minimum?
  280. A: The following are what is required for CPU hotplug infrastructure to work
  281. correctly.
  282. - Make sure you have an entry in Kconfig to enable CONFIG_HOTPLUG_CPU
  283. - __cpu_up() - Arch interface to bring up a CPU
  284. - __cpu_disable() - Arch interface to shutdown a CPU, no more interrupts
  285. can be handled by the kernel after the routine
  286. returns. Including local APIC timers etc are
  287. shutdown.
  288. - __cpu_die() - This actually supposed to ensure death of the CPU.
  289. Actually look at some example code in other arch
  290. that implement CPU hotplug. The processor is taken
  291. down from the idle() loop for that specific
  292. architecture. __cpu_die() typically waits for some
  293. per_cpu state to be set, to ensure the processor
  294. dead routine is called to be sure positively.
  295. Q: I need to ensure that a particular cpu is not removed when there is some
  296. work specific to this cpu is in progress.
  297. A: There are two ways. If your code can be run in interrupt context, use
  298. smp_call_function_single(), otherwise use work_on_cpu(). Note that
  299. work_on_cpu() is slow, and can fail due to out of memory:
  300. int my_func_on_cpu(int cpu)
  301. {
  302. int err;
  303. get_online_cpus();
  304. if (!cpu_online(cpu))
  305. err = -EINVAL;
  306. else
  307. #if NEEDS_BLOCKING
  308. err = work_on_cpu(cpu, __my_func_on_cpu, NULL);
  309. #else
  310. smp_call_function_single(cpu, __my_func_on_cpu, &err,
  311. true);
  312. #endif
  313. put_online_cpus();
  314. return err;
  315. }
  316. Q: How do we determine how many CPUs are available for hotplug.
  317. A: There is no clear spec defined way from ACPI that can give us that
  318. information today. Based on some input from Natalie of Unisys,
  319. that the ACPI MADT (Multiple APIC Description Tables) marks those possible
  320. CPUs in a system with disabled status.
  321. Andi implemented some simple heuristics that count the number of disabled
  322. CPUs in MADT as hotpluggable CPUS. In the case there are no disabled CPUS
  323. we assume 1/2 the number of CPUs currently present can be hotplugged.
  324. Caveat: ACPI MADT can only provide 256 entries in systems with only ACPI 2.0c
  325. or earlier ACPI version supported, because the apicid field in MADT is only
  326. 8 bits. From ACPI 3.0, this limitation was removed since the apicid field
  327. was extended to 32 bits with x2APIC introduced.
  328. User Space Notification
  329. Hotplug support for devices is common in Linux today. Its being used today to
  330. support automatic configuration of network, usb and pci devices. A hotplug
  331. event can be used to invoke an agent script to perform the configuration task.
  332. You can add /etc/hotplug/cpu.agent to handle hotplug notification user space
  333. scripts.
  334. #!/bin/bash
  335. # $Id: cpu.agent
  336. # Kernel hotplug params include:
  337. #ACTION=%s [online or offline]
  338. #DEVPATH=%s
  339. #
  340. cd /etc/hotplug
  341. . ./hotplug.functions
  342. case $ACTION in
  343. online)
  344. echo `date` ":cpu.agent" add cpu >> /tmp/hotplug.txt
  345. ;;
  346. offline)
  347. echo `date` ":cpu.agent" remove cpu >>/tmp/hotplug.txt
  348. ;;
  349. *)
  350. debug_mesg CPU $ACTION event not supported
  351. exit 1
  352. ;;
  353. esac