memory_hotplug.h 7.0 KB

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