cpu-hotplug.txt 13 KB

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