memory_hotplug.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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/mmzone.h>
  6. #include <linux/notifier.h>
  7. struct page;
  8. struct zone;
  9. struct pglist_data;
  10. #ifdef CONFIG_MEMORY_HOTPLUG
  11. /*
  12. * pgdat resizing functions
  13. */
  14. static inline
  15. void pgdat_resize_lock(struct pglist_data *pgdat, unsigned long *flags)
  16. {
  17. spin_lock_irqsave(&pgdat->node_size_lock, *flags);
  18. }
  19. static inline
  20. void pgdat_resize_unlock(struct pglist_data *pgdat, unsigned long *flags)
  21. {
  22. spin_unlock_irqrestore(&pgdat->node_size_lock, *flags);
  23. }
  24. static inline
  25. void pgdat_resize_init(struct pglist_data *pgdat)
  26. {
  27. spin_lock_init(&pgdat->node_size_lock);
  28. }
  29. /*
  30. * Zone resizing functions
  31. */
  32. static inline unsigned zone_span_seqbegin(struct zone *zone)
  33. {
  34. return read_seqbegin(&zone->span_seqlock);
  35. }
  36. static inline int zone_span_seqretry(struct zone *zone, unsigned iv)
  37. {
  38. return read_seqretry(&zone->span_seqlock, iv);
  39. }
  40. static inline void zone_span_writelock(struct zone *zone)
  41. {
  42. write_seqlock(&zone->span_seqlock);
  43. }
  44. static inline void zone_span_writeunlock(struct zone *zone)
  45. {
  46. write_sequnlock(&zone->span_seqlock);
  47. }
  48. static inline void zone_seqlock_init(struct zone *zone)
  49. {
  50. seqlock_init(&zone->span_seqlock);
  51. }
  52. extern int zone_grow_free_lists(struct zone *zone, unsigned long new_nr_pages);
  53. extern int zone_grow_waitqueues(struct zone *zone, unsigned long nr_pages);
  54. extern int add_one_highpage(struct page *page, int pfn, int bad_ppro);
  55. /* need some defines for these for archs that don't support it */
  56. extern void online_page(struct page *page);
  57. /* VM interface that may be used by firmware interface */
  58. extern int add_memory(u64 start, u64 size);
  59. extern int remove_memory(u64 start, u64 size);
  60. extern int online_pages(unsigned long, unsigned long);
  61. /* reasonably generic interface to expand the physical pages in a zone */
  62. extern int __add_pages(struct zone *zone, unsigned long start_pfn,
  63. unsigned long nr_pages);
  64. #else /* ! CONFIG_MEMORY_HOTPLUG */
  65. /*
  66. * Stub functions for when hotplug is off
  67. */
  68. static inline void pgdat_resize_lock(struct pglist_data *p, unsigned long *f) {}
  69. static inline void pgdat_resize_unlock(struct pglist_data *p, unsigned long *f) {}
  70. static inline void pgdat_resize_init(struct pglist_data *pgdat) {}
  71. static inline unsigned zone_span_seqbegin(struct zone *zone)
  72. {
  73. return 0;
  74. }
  75. static inline int zone_span_seqretry(struct zone *zone, unsigned iv)
  76. {
  77. return 0;
  78. }
  79. static inline void zone_span_writelock(struct zone *zone) {}
  80. static inline void zone_span_writeunlock(struct zone *zone) {}
  81. static inline void zone_seqlock_init(struct zone *zone) {}
  82. static inline int mhp_notimplemented(const char *func)
  83. {
  84. printk(KERN_WARNING "%s() called, with CONFIG_MEMORY_HOTPLUG disabled\n", func);
  85. dump_stack();
  86. return -ENOSYS;
  87. }
  88. static inline int __add_pages(struct zone *zone, unsigned long start_pfn,
  89. unsigned long nr_pages)
  90. {
  91. return mhp_notimplemented(__FUNCTION__);
  92. }
  93. #endif /* ! CONFIG_MEMORY_HOTPLUG */
  94. static inline int __remove_pages(struct zone *zone, unsigned long start_pfn,
  95. unsigned long nr_pages)
  96. {
  97. printk(KERN_WARNING "%s() called, not yet supported\n", __FUNCTION__);
  98. dump_stack();
  99. return -ENOSYS;
  100. }
  101. #endif /* __LINUX_MEMORY_HOTPLUG_H */