memory_hotplug.h 6.2 KB

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