memory_hotplug.h 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. #ifndef __LINUX_MEMORY_HOTPLUG_H
  2. #define __LINUX_MEMORY_HOTPLUG_H
  3. #include <linux/mmzone.h>
  4. #include <linux/spinlock.h>
  5. #include <linux/notifier.h>
  6. #include <linux/bug.h>
  7. struct page;
  8. struct zone;
  9. struct pglist_data;
  10. struct mem_section;
  11. struct memory_block;
  12. #ifdef CONFIG_MEMORY_HOTPLUG
  13. /*
  14. * Types for free bootmem stored in page->lru.next. These have to be in
  15. * some random range in unsigned long space for debugging purposes.
  16. */
  17. enum {
  18. MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE = 12,
  19. SECTION_INFO = MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE,
  20. MIX_SECTION_INFO,
  21. NODE_INFO,
  22. MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE = NODE_INFO,
  23. };
  24. /* Types for control the zone type of onlined memory */
  25. enum {
  26. ONLINE_KEEP,
  27. ONLINE_KERNEL,
  28. ONLINE_MOVABLE,
  29. };
  30. /*
  31. * pgdat resizing functions
  32. */
  33. static inline
  34. void pgdat_resize_lock(struct pglist_data *pgdat, unsigned long *flags)
  35. {
  36. spin_lock_irqsave(&pgdat->node_size_lock, *flags);
  37. }
  38. static inline
  39. void pgdat_resize_unlock(struct pglist_data *pgdat, unsigned long *flags)
  40. {
  41. spin_unlock_irqrestore(&pgdat->node_size_lock, *flags);
  42. }
  43. static inline
  44. void pgdat_resize_init(struct pglist_data *pgdat)
  45. {
  46. spin_lock_init(&pgdat->node_size_lock);
  47. }
  48. /*
  49. * Zone resizing functions
  50. *
  51. * Note: any attempt to resize a zone should has pgdat_resize_lock()
  52. * zone_span_writelock() both held. This ensure the size of a zone
  53. * can't be changed while pgdat_resize_lock() held.
  54. */
  55. static inline unsigned zone_span_seqbegin(struct zone *zone)
  56. {
  57. return read_seqbegin(&zone->span_seqlock);
  58. }
  59. static inline int zone_span_seqretry(struct zone *zone, unsigned iv)
  60. {
  61. return read_seqretry(&zone->span_seqlock, iv);
  62. }
  63. static inline void zone_span_writelock(struct zone *zone)
  64. {
  65. write_seqlock(&zone->span_seqlock);
  66. }
  67. static inline void zone_span_writeunlock(struct zone *zone)
  68. {
  69. write_sequnlock(&zone->span_seqlock);
  70. }
  71. static inline void zone_seqlock_init(struct zone *zone)
  72. {
  73. seqlock_init(&zone->span_seqlock);
  74. }
  75. extern int zone_grow_free_lists(struct zone *zone, unsigned long new_nr_pages);
  76. extern int zone_grow_waitqueues(struct zone *zone, unsigned long nr_pages);
  77. extern int add_one_highpage(struct page *page, int pfn, int bad_ppro);
  78. /* VM interface that may be used by firmware interface */
  79. extern int online_pages(unsigned long, unsigned long, int);
  80. extern void __offline_isolated_pages(unsigned long, unsigned long);
  81. typedef void (*online_page_callback_t)(struct page *page);
  82. extern int set_online_page_callback(online_page_callback_t callback);
  83. extern int restore_online_page_callback(online_page_callback_t callback);
  84. extern void __online_page_set_limits(struct page *page);
  85. extern void __online_page_increment_counters(struct page *page);
  86. extern void __online_page_free(struct page *page);
  87. extern int try_online_node(int nid);
  88. #ifdef CONFIG_MEMORY_HOTREMOVE
  89. extern bool is_pageblock_removable_nolock(struct page *page);
  90. extern int arch_remove_memory(u64 start, u64 size);
  91. extern int __remove_pages(struct zone *zone, unsigned long start_pfn,
  92. unsigned long nr_pages);
  93. #endif /* CONFIG_MEMORY_HOTREMOVE */
  94. /* reasonably generic interface to expand the physical pages in a zone */
  95. extern int __add_pages(int nid, struct zone *zone, unsigned long start_pfn,
  96. unsigned long nr_pages);
  97. #ifdef CONFIG_NUMA
  98. extern int memory_add_physaddr_to_nid(u64 start);
  99. #else
  100. static inline int memory_add_physaddr_to_nid(u64 start)
  101. {
  102. return 0;
  103. }
  104. #endif
  105. #ifdef CONFIG_HAVE_ARCH_NODEDATA_EXTENSION
  106. /*
  107. * For supporting node-hotadd, we have to allocate a new pgdat.
  108. *
  109. * If an arch has generic style NODE_DATA(),
  110. * node_data[nid] = kzalloc() works well. But it depends on the architecture.
  111. *
  112. * In general, generic_alloc_nodedata() is used.
  113. * Now, arch_free_nodedata() is just defined for error path of node_hot_add.
  114. *
  115. */
  116. extern pg_data_t *arch_alloc_nodedata(int nid);
  117. extern void arch_free_nodedata(pg_data_t *pgdat);
  118. extern void arch_refresh_nodedata(int nid, pg_data_t *pgdat);
  119. #else /* CONFIG_HAVE_ARCH_NODEDATA_EXTENSION */
  120. #define arch_alloc_nodedata(nid) generic_alloc_nodedata(nid)
  121. #define arch_free_nodedata(pgdat) generic_free_nodedata(pgdat)
  122. #ifdef CONFIG_NUMA
  123. /*
  124. * If ARCH_HAS_NODEDATA_EXTENSION=n, this func is used to allocate pgdat.
  125. * XXX: kmalloc_node() can't work well to get new node's memory at this time.
  126. * Because, pgdat for the new node is not allocated/initialized yet itself.
  127. * To use new node's memory, more consideration will be necessary.
  128. */
  129. #define generic_alloc_nodedata(nid) \
  130. ({ \
  131. kzalloc(sizeof(pg_data_t), GFP_KERNEL); \
  132. })
  133. /*
  134. * This definition is just for error path in node hotadd.
  135. * For node hotremove, we have to replace this.
  136. */
  137. #define generic_free_nodedata(pgdat) kfree(pgdat)
  138. extern pg_data_t *node_data[];
  139. static inline void arch_refresh_nodedata(int nid, pg_data_t *pgdat)
  140. {
  141. node_data[nid] = pgdat;
  142. }
  143. #else /* !CONFIG_NUMA */
  144. /* never called */
  145. static inline pg_data_t *generic_alloc_nodedata(int nid)
  146. {
  147. BUG();
  148. return NULL;
  149. }
  150. static inline void generic_free_nodedata(pg_data_t *pgdat)
  151. {
  152. }
  153. static inline void arch_refresh_nodedata(int nid, pg_data_t *pgdat)
  154. {
  155. }
  156. #endif /* CONFIG_NUMA */
  157. #endif /* CONFIG_HAVE_ARCH_NODEDATA_EXTENSION */
  158. #ifdef CONFIG_HAVE_BOOTMEM_INFO_NODE
  159. extern void register_page_bootmem_info_node(struct pglist_data *pgdat);
  160. #else
  161. static inline void register_page_bootmem_info_node(struct pglist_data *pgdat)
  162. {
  163. }
  164. #endif
  165. extern void put_page_bootmem(struct page *page);
  166. extern void get_page_bootmem(unsigned long ingo, struct page *page,
  167. unsigned long type);
  168. /*
  169. * Lock for memory hotplug guarantees 1) all callbacks for memory hotplug
  170. * notifier will be called under this. 2) offline/online/add/remove memory
  171. * will not run simultaneously.
  172. */
  173. void lock_memory_hotplug(void);
  174. void unlock_memory_hotplug(void);
  175. #else /* ! CONFIG_MEMORY_HOTPLUG */
  176. /*
  177. * Stub functions for when hotplug is off
  178. */
  179. static inline void pgdat_resize_lock(struct pglist_data *p, unsigned long *f) {}
  180. static inline void pgdat_resize_unlock(struct pglist_data *p, unsigned long *f) {}
  181. static inline void pgdat_resize_init(struct pglist_data *pgdat) {}
  182. static inline unsigned zone_span_seqbegin(struct zone *zone)
  183. {
  184. return 0;
  185. }
  186. static inline int zone_span_seqretry(struct zone *zone, unsigned iv)
  187. {
  188. return 0;
  189. }
  190. static inline void zone_span_writelock(struct zone *zone) {}
  191. static inline void zone_span_writeunlock(struct zone *zone) {}
  192. static inline void zone_seqlock_init(struct zone *zone) {}
  193. static inline int mhp_notimplemented(const char *func)
  194. {
  195. printk(KERN_WARNING "%s() called, with CONFIG_MEMORY_HOTPLUG disabled\n", func);
  196. dump_stack();
  197. return -ENOSYS;
  198. }
  199. static inline void register_page_bootmem_info_node(struct pglist_data *pgdat)
  200. {
  201. }
  202. static inline int try_online_node(int nid)
  203. {
  204. return 0;
  205. }
  206. static inline void lock_memory_hotplug(void) {}
  207. static inline void unlock_memory_hotplug(void) {}
  208. #endif /* ! CONFIG_MEMORY_HOTPLUG */
  209. #ifdef CONFIG_MEMORY_HOTREMOVE
  210. extern int is_mem_section_removable(unsigned long pfn, unsigned long nr_pages);
  211. extern void try_offline_node(int nid);
  212. extern int offline_pages(unsigned long start_pfn, unsigned long nr_pages);
  213. extern void remove_memory(int nid, u64 start, u64 size);
  214. #else
  215. static inline int is_mem_section_removable(unsigned long pfn,
  216. unsigned long nr_pages)
  217. {
  218. return 0;
  219. }
  220. static inline void try_offline_node(int nid) {}
  221. static inline int offline_pages(unsigned long start_pfn, unsigned long nr_pages)
  222. {
  223. return -EINVAL;
  224. }
  225. static inline void remove_memory(int nid, u64 start, u64 size) {}
  226. #endif /* CONFIG_MEMORY_HOTREMOVE */
  227. extern int walk_memory_range(unsigned long start_pfn, unsigned long end_pfn,
  228. void *arg, int (*func)(struct memory_block *, void *));
  229. extern int add_memory(int nid, u64 start, u64 size);
  230. extern int arch_add_memory(int nid, u64 start, u64 size);
  231. extern int offline_pages(unsigned long start_pfn, unsigned long nr_pages);
  232. extern bool is_memblock_offlined(struct memory_block *mem);
  233. extern void remove_memory(int nid, u64 start, u64 size);
  234. extern int sparse_add_one_section(struct zone *zone, unsigned long start_pfn,
  235. int nr_pages);
  236. extern void sparse_remove_one_section(struct zone *zone, struct mem_section *ms);
  237. extern struct page *sparse_decode_mem_map(unsigned long coded_mem_map,
  238. unsigned long pnum);
  239. #endif /* __LINUX_MEMORY_HOTPLUG_H */