cgroup, cpuset: remove cgroup_subsys->post_clone()
[linux-2.6/libata-dev.git] / include / linux / memory_hotplug.h
blob95573ec4ee6ce5cd0c2d343d8aab6021106f9c0c
1 #ifndef __LINUX_MEMORY_HOTPLUG_H
2 #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>
9 struct page;
10 struct zone;
11 struct pglist_data;
12 struct mem_section;
13 struct memory_block;
15 #ifdef CONFIG_MEMORY_HOTPLUG
18 * Types for free bootmem stored in page->lru.next. These have to be in
19 * some random range in unsigned long space for debugging purposes.
21 enum {
22 MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE = 12,
23 SECTION_INFO = MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE,
24 MIX_SECTION_INFO,
25 NODE_INFO,
26 MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE = NODE_INFO,
30 * pgdat resizing functions
32 static inline
33 void pgdat_resize_lock(struct pglist_data *pgdat, unsigned long *flags)
35 spin_lock_irqsave(&pgdat->node_size_lock, *flags);
37 static inline
38 void pgdat_resize_unlock(struct pglist_data *pgdat, unsigned long *flags)
40 spin_unlock_irqrestore(&pgdat->node_size_lock, *flags);
42 static inline
43 void pgdat_resize_init(struct pglist_data *pgdat)
45 spin_lock_init(&pgdat->node_size_lock);
48 * Zone resizing functions
50 static inline unsigned zone_span_seqbegin(struct zone *zone)
52 return read_seqbegin(&zone->span_seqlock);
54 static inline int zone_span_seqretry(struct zone *zone, unsigned iv)
56 return read_seqretry(&zone->span_seqlock, iv);
58 static inline void zone_span_writelock(struct zone *zone)
60 write_seqlock(&zone->span_seqlock);
62 static inline void zone_span_writeunlock(struct zone *zone)
64 write_sequnlock(&zone->span_seqlock);
66 static inline void zone_seqlock_init(struct zone *zone)
68 seqlock_init(&zone->span_seqlock);
70 extern int zone_grow_free_lists(struct zone *zone, unsigned long new_nr_pages);
71 extern int zone_grow_waitqueues(struct zone *zone, unsigned long nr_pages);
72 extern int add_one_highpage(struct page *page, int pfn, int bad_ppro);
73 /* VM interface that may be used by firmware interface */
74 extern int online_pages(unsigned long, unsigned long);
75 extern void __offline_isolated_pages(unsigned long, unsigned long);
77 typedef void (*online_page_callback_t)(struct page *page);
79 extern int set_online_page_callback(online_page_callback_t callback);
80 extern int restore_online_page_callback(online_page_callback_t callback);
82 extern void __online_page_set_limits(struct page *page);
83 extern void __online_page_increment_counters(struct page *page);
84 extern void __online_page_free(struct page *page);
86 #ifdef CONFIG_MEMORY_HOTREMOVE
87 extern bool is_pageblock_removable_nolock(struct page *page);
88 #endif /* CONFIG_MEMORY_HOTREMOVE */
90 /* reasonably generic interface to expand the physical pages in a zone */
91 extern int __add_pages(int nid, struct zone *zone, unsigned long start_pfn,
92 unsigned long nr_pages);
93 extern int __remove_pages(struct zone *zone, unsigned long start_pfn,
94 unsigned long nr_pages);
96 #ifdef CONFIG_NUMA
97 extern int memory_add_physaddr_to_nid(u64 start);
98 #else
99 static inline int memory_add_physaddr_to_nid(u64 start)
101 return 0;
103 #endif
105 #ifdef CONFIG_HAVE_ARCH_NODEDATA_EXTENSION
107 * For supporting node-hotadd, we have to allocate a new pgdat.
109 * If an arch has generic style NODE_DATA(),
110 * node_data[nid] = kzalloc() works well. But it depends on the architecture.
112 * In general, generic_alloc_nodedata() is used.
113 * Now, arch_free_nodedata() is just defined for error path of node_hot_add.
116 extern pg_data_t *arch_alloc_nodedata(int nid);
117 extern void arch_free_nodedata(pg_data_t *pgdat);
118 extern void arch_refresh_nodedata(int nid, pg_data_t *pgdat);
120 #else /* CONFIG_HAVE_ARCH_NODEDATA_EXTENSION */
122 #define arch_alloc_nodedata(nid) generic_alloc_nodedata(nid)
123 #define arch_free_nodedata(pgdat) generic_free_nodedata(pgdat)
125 #ifdef CONFIG_NUMA
127 * If ARCH_HAS_NODEDATA_EXTENSION=n, this func is used to allocate pgdat.
128 * XXX: kmalloc_node() can't work well to get new node's memory at this time.
129 * Because, pgdat for the new node is not allocated/initialized yet itself.
130 * To use new node's memory, more consideration will be necessary.
132 #define generic_alloc_nodedata(nid) \
133 ({ \
134 kzalloc(sizeof(pg_data_t), GFP_KERNEL); \
137 * This definition is just for error path in node hotadd.
138 * For node hotremove, we have to replace this.
140 #define generic_free_nodedata(pgdat) kfree(pgdat)
142 extern pg_data_t *node_data[];
143 static inline void arch_refresh_nodedata(int nid, pg_data_t *pgdat)
145 node_data[nid] = pgdat;
148 #else /* !CONFIG_NUMA */
150 /* never called */
151 static inline pg_data_t *generic_alloc_nodedata(int nid)
153 BUG();
154 return NULL;
156 static inline void generic_free_nodedata(pg_data_t *pgdat)
159 static inline void arch_refresh_nodedata(int nid, pg_data_t *pgdat)
162 #endif /* CONFIG_NUMA */
163 #endif /* CONFIG_HAVE_ARCH_NODEDATA_EXTENSION */
165 #ifdef CONFIG_SPARSEMEM_VMEMMAP
166 static inline void register_page_bootmem_info_node(struct pglist_data *pgdat)
169 static inline void put_page_bootmem(struct page *page)
172 #else
173 extern void register_page_bootmem_info_node(struct pglist_data *pgdat);
174 extern void put_page_bootmem(struct page *page);
175 #endif
178 * Lock for memory hotplug guarantees 1) all callbacks for memory hotplug
179 * notifier will be called under this. 2) offline/online/add/remove memory
180 * will not run simultaneously.
183 void lock_memory_hotplug(void);
184 void unlock_memory_hotplug(void);
186 #else /* ! CONFIG_MEMORY_HOTPLUG */
188 * Stub functions for when hotplug is off
190 static inline void pgdat_resize_lock(struct pglist_data *p, unsigned long *f) {}
191 static inline void pgdat_resize_unlock(struct pglist_data *p, unsigned long *f) {}
192 static inline void pgdat_resize_init(struct pglist_data *pgdat) {}
194 static inline unsigned zone_span_seqbegin(struct zone *zone)
196 return 0;
198 static inline int zone_span_seqretry(struct zone *zone, unsigned iv)
200 return 0;
202 static inline void zone_span_writelock(struct zone *zone) {}
203 static inline void zone_span_writeunlock(struct zone *zone) {}
204 static inline void zone_seqlock_init(struct zone *zone) {}
206 static inline int mhp_notimplemented(const char *func)
208 printk(KERN_WARNING "%s() called, with CONFIG_MEMORY_HOTPLUG disabled\n", func);
209 dump_stack();
210 return -ENOSYS;
213 static inline void register_page_bootmem_info_node(struct pglist_data *pgdat)
217 static inline void lock_memory_hotplug(void) {}
218 static inline void unlock_memory_hotplug(void) {}
220 #endif /* ! CONFIG_MEMORY_HOTPLUG */
222 #ifdef CONFIG_MEMORY_HOTREMOVE
224 extern int is_mem_section_removable(unsigned long pfn, unsigned long nr_pages);
226 #else
227 static inline int is_mem_section_removable(unsigned long pfn,
228 unsigned long nr_pages)
230 return 0;
232 #endif /* CONFIG_MEMORY_HOTREMOVE */
234 extern int mem_online_node(int nid);
235 extern int add_memory(int nid, u64 start, u64 size);
236 extern int arch_add_memory(int nid, u64 start, u64 size);
237 extern int offline_pages(unsigned long start_pfn, unsigned long nr_pages);
238 extern int offline_memory_block(struct memory_block *mem);
239 extern int remove_memory(u64 start, u64 size);
240 extern int sparse_add_one_section(struct zone *zone, unsigned long start_pfn,
241 int nr_pages);
242 extern void sparse_remove_one_section(struct zone *zone, struct mem_section *ms);
243 extern struct page *sparse_decode_mem_map(unsigned long coded_mem_map,
244 unsigned long pnum);
246 #endif /* __LINUX_MEMORY_HOTPLUG_H */