memory_hotplug.h 6.6 KB

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