memory_hotplug.h 5.5 KB

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