cpu-hotplug.txt 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. CPU hotplug Support in Linux(tm) Kernel
  2. Maintainers:
  3. CPU Hotplug Core:
  4. Rusty Russell <rusty@rustycorp.com.au>
  5. Srivatsa Vaddagiri <vatsa@in.ibm.com>
  6. i386:
  7. Zwane Mwaikambo <zwane@arm.linux.org.uk>
  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_map = cpu_present_map + additional_cpus
  42. (*) Option valid only for following architectures
  43. - x86_64, ia64
  44. ia64 and x86_64 use the number of disabled local apics in ACPI tables MADT
  45. to determine the number of potentially hot-pluggable cpus. The implementation
  46. should only rely on this to count the # of cpus, but *MUST* not rely on the
  47. apicid values in those tables for disabled apics. In the event BIOS doesn't
  48. mark such hot-pluggable cpus as disabled entries, one could use this
  49. parameter "additional_cpus=x" to represent those cpus in the cpu_possible_map.
  50. possible_cpus=n [s390 only] use this to set hotpluggable cpus.
  51. This option sets possible_cpus bits in
  52. cpu_possible_map. Thus keeping the numbers of bits set
  53. constant even if the machine gets rebooted.
  54. CPU maps and such
  55. -----------------
  56. [More on cpumaps and primitive to manipulate, please check
  57. include/linux/cpumask.h that has more descriptive text.]
  58. cpu_possible_map: Bitmap of possible CPUs that can ever be available in the
  59. system. This is used to allocate some boot time memory for per_cpu variables
  60. that aren't designed to grow/shrink as CPUs are made available or removed.
  61. Once set during boot time discovery phase, the map is static, i.e no bits
  62. are added or removed anytime. Trimming it accurately for your system needs
  63. upfront can save some boot time memory. See below for how we use heuristics
  64. in x86_64 case to keep this under check.
  65. cpu_online_map: Bitmap of all CPUs currently online. Its set in __cpu_up()
  66. after a cpu is available for kernel scheduling and ready to receive
  67. interrupts from devices. Its cleared when a cpu is brought down using
  68. __cpu_disable(), before which all OS services including interrupts are
  69. migrated to another target CPU.
  70. cpu_present_map: Bitmap of CPUs currently present in the system. Not all
  71. of them may be online. When physical hotplug is processed by the relevant
  72. subsystem (e.g ACPI) can change and new bit either be added or removed
  73. from the map depending on the event is hot-add/hot-remove. There are currently
  74. no locking rules as of now. Typical usage is to init topology during boot,
  75. at which time hotplug is disabled.
  76. You really dont need to manipulate any of the system cpu maps. They should
  77. be read-only for most use. When setting up per-cpu resources almost always use
  78. cpu_possible_map/for_each_possible_cpu() to iterate.
  79. Never use anything other than cpumask_t to represent bitmap of CPUs.
  80. #include <linux/cpumask.h>
  81. for_each_possible_cpu - Iterate over cpu_possible_map
  82. for_each_online_cpu - Iterate over cpu_online_map
  83. for_each_present_cpu - Iterate over cpu_present_map
  84. for_each_cpu_mask(x,mask) - Iterate over some random collection of cpu mask.
  85. #include <linux/cpu.h>
  86. get_online_cpus() and put_online_cpus():
  87. The above calls are used to inhibit cpu hotplug operations. While the
  88. cpu_hotplug.refcount is non zero, the cpu_online_map will not change.
  89. If you merely need to avoid cpus going away, you could also use
  90. preempt_disable() and preempt_enable() for those sections.
  91. Just remember the critical section cannot call any
  92. function that can sleep or schedule this process away. The preempt_disable()
  93. will work as long as stop_machine_run() is used to take a cpu down.
  94. CPU Hotplug - Frequently Asked Questions.
  95. Q: How to enable my kernel to support CPU hotplug?
  96. A: When doing make defconfig, Enable CPU hotplug support
  97. "Processor type and Features" -> Support for Hotpluggable CPUs
  98. Make sure that you have CONFIG_HOTPLUG, and CONFIG_SMP turned on as well.
  99. You would need to enable CONFIG_HOTPLUG_CPU for SMP suspend/resume support
  100. as well.
  101. Q: What architectures support CPU hotplug?
  102. A: As of 2.6.14, the following architectures support CPU hotplug.
  103. i386 (Intel), ppc, ppc64, parisc, s390, ia64 and x86_64
  104. Q: How to test if hotplug is supported on the newly built kernel?
  105. A: You should now notice an entry in sysfs.
  106. Check if sysfs is mounted, using the "mount" command. You should notice
  107. an entry as shown below in the output.
  108. ....
  109. none on /sys type sysfs (rw)
  110. ....
  111. If this is not mounted, do the following.
  112. #mkdir /sysfs
  113. #mount -t sysfs sys /sys
  114. Now you should see entries for all present cpu, the following is an example
  115. in a 8-way system.
  116. #pwd
  117. #/sys/devices/system/cpu
  118. #ls -l
  119. total 0
  120. drwxr-xr-x 10 root root 0 Sep 19 07:44 .
  121. drwxr-xr-x 13 root root 0 Sep 19 07:45 ..
  122. drwxr-xr-x 3 root root 0 Sep 19 07:44 cpu0
  123. drwxr-xr-x 3 root root 0 Sep 19 07:44 cpu1
  124. drwxr-xr-x 3 root root 0 Sep 19 07:44 cpu2
  125. drwxr-xr-x 3 root root 0 Sep 19 07:44 cpu3
  126. drwxr-xr-x 3 root root 0 Sep 19 07:44 cpu4
  127. drwxr-xr-x 3 root root 0 Sep 19 07:44 cpu5
  128. drwxr-xr-x 3 root root 0 Sep 19 07:44 cpu6
  129. drwxr-xr-x 3 root root 0 Sep 19 07:48 cpu7
  130. Under each directory you would find an "online" file which is the control
  131. file to logically online/offline a processor.
  132. Q: Does hot-add/hot-remove refer to physical add/remove of cpus?
  133. A: The usage of hot-add/remove may not be very consistently used in the code.
  134. CONFIG_HOTPLUG_CPU enables logical online/offline capability in the kernel.
  135. To support physical addition/removal, one would need some BIOS hooks and
  136. the platform should have something like an attention button in PCI hotplug.
  137. CONFIG_ACPI_HOTPLUG_CPU enables ACPI support for physical add/remove of CPUs.
  138. Q: How do i logically offline a CPU?
  139. A: Do the following.
  140. #echo 0 > /sys/devices/system/cpu/cpuX/online
  141. Once the logical offline is successful, check
  142. #cat /proc/interrupts
  143. You should now not see the CPU that you removed. Also online file will report
  144. the state as 0 when a cpu if offline and 1 when its online.
  145. #To display the current cpu state.
  146. #cat /sys/devices/system/cpu/cpuX/online
  147. Q: Why cant i remove CPU0 on some systems?
  148. A: Some architectures may have some special dependency on a certain CPU.
  149. For e.g in IA64 platforms we have ability to sent platform interrupts to the
  150. OS. a.k.a Corrected Platform Error Interrupts (CPEI). In current ACPI
  151. specifications, we didn't have a way to change the target CPU. Hence if the
  152. current ACPI version doesn't support such re-direction, we disable that CPU
  153. by making it not-removable.
  154. In such cases you will also notice that the online file is missing under cpu0.
  155. Q: How do i find out if a particular CPU is not removable?
  156. A: Depending on the implementation, some architectures may show this by the
  157. absence of the "online" file. This is done if it can be determined ahead of
  158. time that this CPU cannot be removed.
  159. In some situations, this can be a run time check, i.e if you try to remove the
  160. last CPU, this will not be permitted. You can find such failures by
  161. investigating the return value of the "echo" command.
  162. Q: What happens when a CPU is being logically offlined?
  163. A: The following happen, listed in no particular order :-)
  164. - A notification is sent to in-kernel registered modules by sending an event
  165. CPU_DOWN_PREPARE or CPU_DOWN_PREPARE_FROZEN, depending on whether or not the
  166. CPU is being offlined while tasks are frozen due to a suspend operation in
  167. progress
  168. - All processes are migrated away from this outgoing CPU to new CPUs.
  169. The new CPU is chosen from each process' current cpuset, which may be
  170. a subset of all online CPUs.
  171. - All interrupts targeted to this CPU is migrated to a new CPU
  172. - timers/bottom half/task lets are also migrated to a new CPU
  173. - Once all services are migrated, kernel calls an arch specific routine
  174. __cpu_disable() to perform arch specific cleanup.
  175. - Once this is successful, an event for successful cleanup is sent by an event
  176. CPU_DEAD (or CPU_DEAD_FROZEN if tasks are frozen due to a suspend while the
  177. CPU is being offlined).
  178. "It is expected that each service cleans up when the CPU_DOWN_PREPARE
  179. notifier is called, when CPU_DEAD is called its expected there is nothing
  180. running on behalf of this CPU that was offlined"
  181. Q: If i have some kernel code that needs to be aware of CPU arrival and
  182. departure, how to i arrange for proper notification?
  183. A: This is what you would need in your kernel code to receive notifications.
  184. #include <linux/cpu.h>
  185. static int __cpuinit foobar_cpu_callback(struct notifier_block *nfb,
  186. unsigned long action, void *hcpu)
  187. {
  188. unsigned int cpu = (unsigned long)hcpu;
  189. switch (action) {
  190. case CPU_ONLINE:
  191. case CPU_ONLINE_FROZEN:
  192. foobar_online_action(cpu);
  193. break;
  194. case CPU_DEAD:
  195. case CPU_DEAD_FROZEN:
  196. foobar_dead_action(cpu);
  197. break;
  198. }
  199. return NOTIFY_OK;
  200. }
  201. static struct notifier_block __cpuinitdata foobar_cpu_notifer =
  202. {
  203. .notifier_call = foobar_cpu_callback,
  204. };
  205. You need to call register_cpu_notifier() from your init function.
  206. Init functions could be of two types:
  207. 1. early init (init function called when only the boot processor is online).
  208. 2. late init (init function called _after_ all the CPUs are online).
  209. For the first case, you should add the following to your init function
  210. register_cpu_notifier(&foobar_cpu_notifier);
  211. For the second case, you should add the following to your init function
  212. register_hotcpu_notifier(&foobar_cpu_notifier);
  213. You can fail PREPARE notifiers if something doesn't work to prepare resources.
  214. This will stop the activity and send a following CANCELED event back.
  215. CPU_DEAD should not be failed, its just a goodness indication, but bad
  216. things will happen if a notifier in path sent a BAD notify code.
  217. Q: I don't see my action being called for all CPUs already up and running?
  218. A: Yes, CPU notifiers are called only when new CPUs are on-lined or offlined.
  219. If you need to perform some action for each cpu already in the system, then
  220. for_each_online_cpu(i) {
  221. foobar_cpu_callback(&foobar_cpu_notifier, CPU_UP_PREPARE, i);
  222. foobar_cpu_callback(&foobar_cpu_notifier, CPU_ONLINE, i);
  223. }
  224. Q: If i would like to develop cpu hotplug support for a new architecture,
  225. what do i need at a minimum?
  226. A: The following are what is required for CPU hotplug infrastructure to work
  227. correctly.
  228. - Make sure you have an entry in Kconfig to enable CONFIG_HOTPLUG_CPU
  229. - __cpu_up() - Arch interface to bring up a CPU
  230. - __cpu_disable() - Arch interface to shutdown a CPU, no more interrupts
  231. can be handled by the kernel after the routine
  232. returns. Including local APIC timers etc are
  233. shutdown.
  234. - __cpu_die() - This actually supposed to ensure death of the CPU.
  235. Actually look at some example code in other arch
  236. that implement CPU hotplug. The processor is taken
  237. down from the idle() loop for that specific
  238. architecture. __cpu_die() typically waits for some
  239. per_cpu state to be set, to ensure the processor
  240. dead routine is called to be sure positively.
  241. Q: I need to ensure that a particular cpu is not removed when there is some
  242. work specific to this cpu is in progress.
  243. A: First switch the current thread context to preferred cpu
  244. int my_func_on_cpu(int cpu)
  245. {
  246. cpumask_t saved_mask, new_mask = CPU_MASK_NONE;
  247. int curr_cpu, err = 0;
  248. saved_mask = current->cpus_allowed;
  249. cpu_set(cpu, new_mask);
  250. err = set_cpus_allowed(current, new_mask);
  251. if (err)
  252. return err;
  253. /*
  254. * If we got scheduled out just after the return from
  255. * set_cpus_allowed() before running the work, this ensures
  256. * we stay locked.
  257. */
  258. curr_cpu = get_cpu();
  259. if (curr_cpu != cpu) {
  260. err = -EAGAIN;
  261. goto ret;
  262. } else {
  263. /*
  264. * Do work : But cant sleep, since get_cpu() disables preempt
  265. */
  266. }
  267. ret:
  268. put_cpu();
  269. set_cpus_allowed(current, saved_mask);
  270. return err;
  271. }
  272. Q: How do we determine how many CPUs are available for hotplug.
  273. A: There is no clear spec defined way from ACPI that can give us that
  274. information today. Based on some input from Natalie of Unisys,
  275. that the ACPI MADT (Multiple APIC Description Tables) marks those possible
  276. CPUs in a system with disabled status.
  277. Andi implemented some simple heuristics that count the number of disabled
  278. CPUs in MADT as hotpluggable CPUS. In the case there are no disabled CPUS
  279. we assume 1/2 the number of CPUs currently present can be hotplugged.
  280. Caveat: Today's ACPI MADT can only provide 256 entries since the apicid field
  281. in MADT is only 8 bits.
  282. User Space Notification
  283. Hotplug support for devices is common in Linux today. Its being used today to
  284. support automatic configuration of network, usb and pci devices. A hotplug
  285. event can be used to invoke an agent script to perform the configuration task.
  286. You can add /etc/hotplug/cpu.agent to handle hotplug notification user space
  287. scripts.
  288. #!/bin/bash
  289. # $Id: cpu.agent
  290. # Kernel hotplug params include:
  291. #ACTION=%s [online or offline]
  292. #DEVPATH=%s
  293. #
  294. cd /etc/hotplug
  295. . ./hotplug.functions
  296. case $ACTION in
  297. online)
  298. echo `date` ":cpu.agent" add cpu >> /tmp/hotplug.txt
  299. ;;
  300. offline)
  301. echo `date` ":cpu.agent" remove cpu >>/tmp/hotplug.txt
  302. ;;
  303. *)
  304. debug_mesg CPU $ACTION event not supported
  305. exit 1
  306. ;;
  307. esac