memory_hotplug.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __LINUX_MEMORY_HOTPLUG_H
  3. #define __LINUX_MEMORY_HOTPLUG_H
  4. #include <linux/mmzone.h>
  5. #include <linux/spinlock.h>
  6. #include <linux/notifier.h>
  7. #include <linux/bug.h>
  8. struct page;
  9. struct zone;
  10. struct pglist_data;
  11. struct mem_section;
  12. struct memory_block;
  13. struct resource;
  14. struct vmem_altmap;
  15. #ifdef CONFIG_MEMORY_HOTPLUG
  16. /*
  17. * Return page for the valid pfn only if the page is online. All pfn
  18. * walkers which rely on the fully initialized page->flags and others
  19. * should use this rather than pfn_valid && pfn_to_page
  20. */
  21. #define pfn_to_online_page(pfn) \
  22. ({ \
  23. struct page *___page = NULL; \
  24. unsigned long ___pfn = pfn; \
  25. unsigned long ___nr = pfn_to_section_nr(___pfn); \
  26. \
  27. if (___nr < NR_MEM_SECTIONS && online_section_nr(___nr) && \
  28. pfn_valid_within(___pfn)) \
  29. ___page = pfn_to_page(___pfn); \
  30. ___page; \
  31. })
  32. /*
  33. * Types for free bootmem stored in page->lru.next. These have to be in
  34. * some random range in unsigned long space for debugging purposes.
  35. */
  36. enum {
  37. MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE = 12,
  38. SECTION_INFO = MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE,
  39. MIX_SECTION_INFO,
  40. NODE_INFO,
  41. MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE = NODE_INFO,
  42. };
  43. /* Types for control the zone type of onlined and offlined memory */
  44. enum {
  45. MMOP_OFFLINE = -1,
  46. MMOP_ONLINE_KEEP,
  47. MMOP_ONLINE_KERNEL,
  48. MMOP_ONLINE_MOVABLE,
  49. };
  50. /*
  51. * Zone resizing functions
  52. *
  53. * Note: any attempt to resize a zone should has pgdat_resize_lock()
  54. * zone_span_writelock() both held. This ensure the size of a zone
  55. * can't be changed while pgdat_resize_lock() held.
  56. */
  57. static inline unsigned zone_span_seqbegin(struct zone *zone)
  58. {
  59. return read_seqbegin(&zone->span_seqlock);
  60. }
  61. static inline int zone_span_seqretry(struct zone *zone, unsigned iv)
  62. {
  63. return read_seqretry(&zone->span_seqlock, iv);
  64. }
  65. static inline void zone_span_writelock(struct zone *zone)
  66. {
  67. write_seqlock(&zone->span_seqlock);
  68. }
  69. static inline void zone_span_writeunlock(struct zone *zone)
  70. {
  71. write_sequnlock(&zone->span_seqlock);
  72. }
  73. static inline void zone_seqlock_init(struct zone *zone)
  74. {
  75. seqlock_init(&zone->span_seqlock);
  76. }
  77. extern int zone_grow_free_lists(struct zone *zone, unsigned long new_nr_pages);
  78. extern int zone_grow_waitqueues(struct zone *zone, unsigned long nr_pages);
  79. extern int add_one_highpage(struct page *page, int pfn, int bad_ppro);
  80. /* VM interface that may be used by firmware interface */
  81. extern int online_pages(unsigned long, unsigned long, int);
  82. extern int test_pages_in_a_zone(unsigned long start_pfn, unsigned long end_pfn,
  83. unsigned long *valid_start, unsigned long *valid_end);
  84. extern void __offline_isolated_pages(unsigned long, unsigned long);
  85. typedef void (*online_page_callback_t)(struct page *page);
  86. extern int set_online_page_callback(online_page_callback_t callback);
  87. extern int restore_online_page_callback(online_page_callback_t callback);
  88. extern void __online_page_set_limits(struct page *page);
  89. extern void __online_page_increment_counters(struct page *page);
  90. extern void __online_page_free(struct page *page);
  91. extern int try_online_node(int nid);
  92. extern bool memhp_auto_online;
  93. /* If movable_node boot option specified */
  94. extern bool movable_node_enabled;
  95. static inline bool movable_node_is_enabled(void)
  96. {
  97. return movable_node_enabled;
  98. }
  99. extern void arch_remove_memory(int nid, u64 start, u64 size,
  100. struct vmem_altmap *altmap);
  101. extern void __remove_pages(unsigned long start_pfn, unsigned long nr_pages,
  102. struct vmem_altmap *altmap);
  103. /* reasonably generic interface to expand the physical pages */
  104. extern int __add_pages(int nid, unsigned long start_pfn, unsigned long nr_pages,
  105. struct vmem_altmap *altmap, bool want_memblock);
  106. #ifndef CONFIG_ARCH_HAS_ADD_PAGES
  107. static inline int add_pages(int nid, unsigned long start_pfn,
  108. unsigned long nr_pages, struct vmem_altmap *altmap,
  109. bool want_memblock)
  110. {
  111. return __add_pages(nid, start_pfn, nr_pages, altmap, want_memblock);
  112. }
  113. #else /* ARCH_HAS_ADD_PAGES */
  114. int add_pages(int nid, unsigned long start_pfn, unsigned long nr_pages,
  115. struct vmem_altmap *altmap, bool want_memblock);
  116. #endif /* ARCH_HAS_ADD_PAGES */
  117. #ifdef CONFIG_NUMA
  118. extern int memory_add_physaddr_to_nid(u64 start);
  119. #else
  120. static inline int memory_add_physaddr_to_nid(u64 start)
  121. {
  122. return 0;
  123. }
  124. #endif
  125. #ifdef CONFIG_HAVE_ARCH_NODEDATA_EXTENSION
  126. /*
  127. * For supporting node-hotadd, we have to allocate a new pgdat.
  128. *
  129. * If an arch has generic style NODE_DATA(),
  130. * node_data[nid] = kzalloc() works well. But it depends on the architecture.
  131. *
  132. * In general, generic_alloc_nodedata() is used.
  133. * Now, arch_free_nodedata() is just defined for error path of node_hot_add.
  134. *
  135. */
  136. extern pg_data_t *arch_alloc_nodedata(int nid);
  137. extern void arch_free_nodedata(pg_data_t *pgdat);
  138. extern void arch_refresh_nodedata(int nid, pg_data_t *pgdat);
  139. #else /* CONFIG_HAVE_ARCH_NODEDATA_EXTENSION */
  140. #define arch_alloc_nodedata(nid) generic_alloc_nodedata(nid)
  141. #define arch_free_nodedata(pgdat) generic_free_nodedata(pgdat)
  142. #ifdef CONFIG_NUMA
  143. /*
  144. * If ARCH_HAS_NODEDATA_EXTENSION=n, this func is used to allocate pgdat.
  145. * XXX: kmalloc_node() can't work well to get new node's memory at this time.
  146. * Because, pgdat for the new node is not allocated/initialized yet itself.
  147. * To use new node's memory, more consideration will be necessary.
  148. */
  149. #define generic_alloc_nodedata(nid) \
  150. ({ \
  151. kzalloc(sizeof(pg_data_t), GFP_KERNEL); \
  152. })
  153. /*
  154. * This definition is just for error path in node hotadd.
  155. * For node hotremove, we have to replace this.
  156. */
  157. #define generic_free_nodedata(pgdat) kfree(pgdat)
  158. extern pg_data_t *node_data[];
  159. static inline void arch_refresh_nodedata(int nid, pg_data_t *pgdat)
  160. {
  161. node_data[nid] = pgdat;
  162. }
  163. #else /* !CONFIG_NUMA */
  164. /* never called */
  165. static inline pg_data_t *generic_alloc_nodedata(int nid)
  166. {
  167. BUG();
  168. return NULL;
  169. }
  170. static inline void generic_free_nodedata(pg_data_t *pgdat)
  171. {
  172. }
  173. static inline void arch_refresh_nodedata(int nid, pg_data_t *pgdat)
  174. {
  175. }
  176. #endif /* CONFIG_NUMA */
  177. #endif /* CONFIG_HAVE_ARCH_NODEDATA_EXTENSION */
  178. #ifdef CONFIG_HAVE_BOOTMEM_INFO_NODE
  179. extern void __init register_page_bootmem_info_node(struct pglist_data *pgdat);
  180. #else
  181. static inline void register_page_bootmem_info_node(struct pglist_data *pgdat)
  182. {
  183. }
  184. #endif
  185. extern void put_page_bootmem(struct page *page);
  186. extern void get_page_bootmem(unsigned long ingo, struct page *page,
  187. unsigned long type);
  188. void get_online_mems(void);
  189. void put_online_mems(void);
  190. void mem_hotplug_begin(void);
  191. void mem_hotplug_done(void);
  192. extern void set_zone_contiguous(struct zone *zone);
  193. extern void clear_zone_contiguous(struct zone *zone);
  194. #else /* ! CONFIG_MEMORY_HOTPLUG */
  195. #define pfn_to_online_page(pfn) \
  196. ({ \
  197. struct page *___page = NULL; \
  198. if (pfn_valid(pfn)) \
  199. ___page = pfn_to_page(pfn); \
  200. ___page; \
  201. })
  202. static inline unsigned zone_span_seqbegin(struct zone *zone)
  203. {
  204. return 0;
  205. }
  206. static inline int zone_span_seqretry(struct zone *zone, unsigned iv)
  207. {
  208. return 0;
  209. }
  210. static inline void zone_span_writelock(struct zone *zone) {}
  211. static inline void zone_span_writeunlock(struct zone *zone) {}
  212. static inline void zone_seqlock_init(struct zone *zone) {}
  213. static inline int mhp_notimplemented(const char *func)
  214. {
  215. printk(KERN_WARNING "%s() called, with CONFIG_MEMORY_HOTPLUG disabled\n", func);
  216. dump_stack();
  217. return -ENOSYS;
  218. }
  219. static inline void register_page_bootmem_info_node(struct pglist_data *pgdat)
  220. {
  221. }
  222. static inline int try_online_node(int nid)
  223. {
  224. return 0;
  225. }
  226. static inline void get_online_mems(void) {}
  227. static inline void put_online_mems(void) {}
  228. static inline void mem_hotplug_begin(void) {}
  229. static inline void mem_hotplug_done(void) {}
  230. static inline bool movable_node_is_enabled(void)
  231. {
  232. return false;
  233. }
  234. #endif /* ! CONFIG_MEMORY_HOTPLUG */
  235. #if defined(CONFIG_MEMORY_HOTPLUG) || defined(CONFIG_DEFERRED_STRUCT_PAGE_INIT)
  236. /*
  237. * pgdat resizing functions
  238. */
  239. static inline
  240. void pgdat_resize_lock(struct pglist_data *pgdat, unsigned long *flags)
  241. {
  242. spin_lock_irqsave(&pgdat->node_size_lock, *flags);
  243. }
  244. static inline
  245. void pgdat_resize_unlock(struct pglist_data *pgdat, unsigned long *flags)
  246. {
  247. spin_unlock_irqrestore(&pgdat->node_size_lock, *flags);
  248. }
  249. static inline
  250. void pgdat_resize_init(struct pglist_data *pgdat)
  251. {
  252. spin_lock_init(&pgdat->node_size_lock);
  253. }
  254. #else /* !(CONFIG_MEMORY_HOTPLUG || CONFIG_DEFERRED_STRUCT_PAGE_INIT) */
  255. /*
  256. * Stub functions for when hotplug is off
  257. */
  258. static inline void pgdat_resize_lock(struct pglist_data *p, unsigned long *f) {}
  259. static inline void pgdat_resize_unlock(struct pglist_data *p, unsigned long *f) {}
  260. static inline void pgdat_resize_init(struct pglist_data *pgdat) {}
  261. #endif /* !(CONFIG_MEMORY_HOTPLUG || CONFIG_DEFERRED_STRUCT_PAGE_INIT) */
  262. #ifdef CONFIG_MEMORY_HOTREMOVE
  263. extern bool is_mem_section_removable(unsigned long pfn, unsigned long nr_pages);
  264. extern void try_offline_node(int nid);
  265. extern int offline_pages(unsigned long start_pfn, unsigned long nr_pages);
  266. extern void remove_memory(int nid, u64 start, u64 size);
  267. extern void __remove_memory(int nid, u64 start, u64 size);
  268. #else
  269. static inline bool is_mem_section_removable(unsigned long pfn,
  270. unsigned long nr_pages)
  271. {
  272. return false;
  273. }
  274. static inline void try_offline_node(int nid) {}
  275. static inline int offline_pages(unsigned long start_pfn, unsigned long nr_pages)
  276. {
  277. return -EINVAL;
  278. }
  279. static inline void remove_memory(int nid, u64 start, u64 size) {}
  280. static inline void __remove_memory(int nid, u64 start, u64 size) {}
  281. #endif /* CONFIG_MEMORY_HOTREMOVE */
  282. extern void __ref free_area_init_core_hotplug(int nid);
  283. extern int walk_memory_range(unsigned long start_pfn, unsigned long end_pfn,
  284. void *arg, int (*func)(struct memory_block *, void *));
  285. extern int __add_memory(int nid, u64 start, u64 size);
  286. extern int add_memory(int nid, u64 start, u64 size);
  287. extern int add_memory_resource(int nid, struct resource *resource, bool online);
  288. extern int arch_add_memory(int nid, u64 start, u64 size,
  289. struct vmem_altmap *altmap, bool want_memblock);
  290. extern void move_pfn_range_to_zone(struct zone *zone, unsigned long start_pfn,
  291. unsigned long nr_pages, struct vmem_altmap *altmap);
  292. extern void remove_pfn_range_from_zone(struct zone *zone,
  293. unsigned long start_pfn,
  294. unsigned long nr_pages);
  295. extern int offline_pages(unsigned long start_pfn, unsigned long nr_pages);
  296. extern bool is_memblock_offlined(struct memory_block *mem);
  297. extern int sparse_add_one_section(int nid, unsigned long start_pfn,
  298. struct vmem_altmap *altmap);
  299. extern void sparse_remove_one_section(struct mem_section *ms,
  300. unsigned long map_offset, struct vmem_altmap *altmap);
  301. extern struct page *sparse_decode_mem_map(unsigned long coded_mem_map,
  302. unsigned long pnum);
  303. extern bool allow_online_pfn_range(int nid, unsigned long pfn, unsigned long nr_pages,
  304. int online_type);
  305. extern struct zone *zone_for_pfn_range(int online_type, int nid, unsigned start_pfn,
  306. unsigned long nr_pages);
  307. #endif /* __LINUX_MEMORY_HOTPLUG_H */