OSDN Git Service

cifs: fail i/o on soft mounts if sessionsetup errors out
[sagit-ice-cold/kernel_xiaomi_msm8998.git] / lib / genalloc.c
1 /*
2  * Basic general purpose allocator for managing special purpose
3  * memory, for example, memory that is not managed by the regular
4  * kmalloc/kfree interface.  Uses for this includes on-device special
5  * memory, uncached memory etc.
6  *
7  * It is safe to use the allocator in NMI handlers and other special
8  * unblockable contexts that could otherwise deadlock on locks.  This
9  * is implemented by using atomic operations and retries on any
10  * conflicts.  The disadvantage is that there may be livelocks in
11  * extreme cases.  For better scalability, one allocator can be used
12  * for each CPU.
13  *
14  * The lockless operation only works if there is enough memory
15  * available.  If new memory is added to the pool a lock has to be
16  * still taken.  So any user relying on locklessness has to ensure
17  * that sufficient memory is preallocated.
18  *
19  * The basic atomic operation of this allocator is cmpxchg on long.
20  * On architectures that don't have NMI-safe cmpxchg implementation,
21  * the allocator can NOT be used in NMI handler.  So code uses the
22  * allocator in NMI handler should depend on
23  * CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG.
24  *
25  * Copyright 2005 (C) Jes Sorensen <jes@trained-monkey.org>
26  *
27  * This source code is licensed under the GNU General Public License,
28  * Version 2.  See the file COPYING for more details.
29  */
30
31 #include <linux/slab.h>
32 #include <linux/export.h>
33 #include <linux/bitmap.h>
34 #include <linux/rculist.h>
35 #include <linux/interrupt.h>
36 #include <linux/genalloc.h>
37 #include <linux/of_device.h>
38 #include <linux/vmalloc.h>
39
40 static inline size_t chunk_size(const struct gen_pool_chunk *chunk)
41 {
42         return chunk->end_addr - chunk->start_addr + 1;
43 }
44
45 static int set_bits_ll(unsigned long *addr, unsigned long mask_to_set)
46 {
47         unsigned long val, nval;
48
49         nval = *addr;
50         do {
51                 val = nval;
52                 if (val & mask_to_set)
53                         return -EBUSY;
54                 cpu_relax();
55         } while ((nval = cmpxchg(addr, val, val | mask_to_set)) != val);
56
57         return 0;
58 }
59
60 static int clear_bits_ll(unsigned long *addr, unsigned long mask_to_clear)
61 {
62         unsigned long val, nval;
63
64         nval = *addr;
65         do {
66                 val = nval;
67                 if ((val & mask_to_clear) != mask_to_clear)
68                         return -EBUSY;
69                 cpu_relax();
70         } while ((nval = cmpxchg(addr, val, val & ~mask_to_clear)) != val);
71
72         return 0;
73 }
74
75 /*
76  * bitmap_set_ll - set the specified number of bits at the specified position
77  * @map: pointer to a bitmap
78  * @start: a bit position in @map
79  * @nr: number of bits to set
80  *
81  * Set @nr bits start from @start in @map lock-lessly. Several users
82  * can set/clear the same bitmap simultaneously without lock. If two
83  * users set the same bit, one user will return remain bits, otherwise
84  * return 0.
85  */
86 static int bitmap_set_ll(unsigned long *map, int start, int nr)
87 {
88         unsigned long *p = map + BIT_WORD(start);
89         const int size = start + nr;
90         int bits_to_set = BITS_PER_LONG - (start % BITS_PER_LONG);
91         unsigned long mask_to_set = BITMAP_FIRST_WORD_MASK(start);
92
93         while (nr - bits_to_set >= 0) {
94                 if (set_bits_ll(p, mask_to_set))
95                         return nr;
96                 nr -= bits_to_set;
97                 bits_to_set = BITS_PER_LONG;
98                 mask_to_set = ~0UL;
99                 p++;
100         }
101         if (nr) {
102                 mask_to_set &= BITMAP_LAST_WORD_MASK(size);
103                 if (set_bits_ll(p, mask_to_set))
104                         return nr;
105         }
106
107         return 0;
108 }
109
110 /*
111  * bitmap_clear_ll - clear the specified number of bits at the specified position
112  * @map: pointer to a bitmap
113  * @start: a bit position in @map
114  * @nr: number of bits to set
115  *
116  * Clear @nr bits start from @start in @map lock-lessly. Several users
117  * can set/clear the same bitmap simultaneously without lock. If two
118  * users clear the same bit, one user will return remain bits,
119  * otherwise return 0.
120  */
121 static int bitmap_clear_ll(unsigned long *map, int start, int nr)
122 {
123         unsigned long *p = map + BIT_WORD(start);
124         const int size = start + nr;
125         int bits_to_clear = BITS_PER_LONG - (start % BITS_PER_LONG);
126         unsigned long mask_to_clear = BITMAP_FIRST_WORD_MASK(start);
127
128         while (nr - bits_to_clear >= 0) {
129                 if (clear_bits_ll(p, mask_to_clear))
130                         return nr;
131                 nr -= bits_to_clear;
132                 bits_to_clear = BITS_PER_LONG;
133                 mask_to_clear = ~0UL;
134                 p++;
135         }
136         if (nr) {
137                 mask_to_clear &= BITMAP_LAST_WORD_MASK(size);
138                 if (clear_bits_ll(p, mask_to_clear))
139                         return nr;
140         }
141
142         return 0;
143 }
144
145 /**
146  * gen_pool_create - create a new special memory pool
147  * @min_alloc_order: log base 2 of number of bytes each bitmap bit represents
148  * @nid: node id of the node the pool structure should be allocated on, or -1
149  *
150  * Create a new special memory pool that can be used to manage special purpose
151  * memory not managed by the regular kmalloc/kfree interface.
152  */
153 struct gen_pool *gen_pool_create(int min_alloc_order, int nid)
154 {
155         struct gen_pool *pool;
156
157         pool = kmalloc_node(sizeof(struct gen_pool), GFP_KERNEL, nid);
158         if (pool != NULL) {
159                 spin_lock_init(&pool->lock);
160                 INIT_LIST_HEAD(&pool->chunks);
161                 pool->min_alloc_order = min_alloc_order;
162                 pool->algo = gen_pool_first_fit;
163                 pool->data = NULL;
164                 pool->name = NULL;
165         }
166         return pool;
167 }
168 EXPORT_SYMBOL(gen_pool_create);
169
170 /**
171  * gen_pool_add_virt - add a new chunk of special memory to the pool
172  * @pool: pool to add new memory chunk to
173  * @virt: virtual starting address of memory chunk to add to pool
174  * @phys: physical starting address of memory chunk to add to pool
175  * @size: size in bytes of the memory chunk to add to pool
176  * @nid: node id of the node the chunk structure and bitmap should be
177  *       allocated on, or -1
178  *
179  * Add a new chunk of special memory to the specified pool.
180  *
181  * Returns 0 on success or a -ve errno on failure.
182  */
183 int gen_pool_add_virt(struct gen_pool *pool, unsigned long virt, phys_addr_t phys,
184                  size_t size, int nid)
185 {
186         struct gen_pool_chunk *chunk;
187         int nbits = size >> pool->min_alloc_order;
188         int nbytes = sizeof(struct gen_pool_chunk) +
189                                 BITS_TO_LONGS(nbits) * sizeof(long);
190
191         chunk = vzalloc_node(nbytes, nid);
192         if (unlikely(chunk == NULL))
193                 return -ENOMEM;
194
195         chunk->phys_addr = phys;
196         chunk->start_addr = virt;
197         chunk->end_addr = virt + size - 1;
198         atomic_long_set(&chunk->avail, size);
199
200         spin_lock(&pool->lock);
201         list_add_rcu(&chunk->next_chunk, &pool->chunks);
202         spin_unlock(&pool->lock);
203
204         return 0;
205 }
206 EXPORT_SYMBOL(gen_pool_add_virt);
207
208 /**
209  * gen_pool_virt_to_phys - return the physical address of memory
210  * @pool: pool to allocate from
211  * @addr: starting address of memory
212  *
213  * Returns the physical address on success, or -1 on error.
214  */
215 phys_addr_t gen_pool_virt_to_phys(struct gen_pool *pool, unsigned long addr)
216 {
217         struct gen_pool_chunk *chunk;
218         phys_addr_t paddr = -1;
219
220         rcu_read_lock();
221         list_for_each_entry_rcu(chunk, &pool->chunks, next_chunk) {
222                 if (addr >= chunk->start_addr && addr <= chunk->end_addr) {
223                         paddr = chunk->phys_addr + (addr - chunk->start_addr);
224                         break;
225                 }
226         }
227         rcu_read_unlock();
228
229         return paddr;
230 }
231 EXPORT_SYMBOL(gen_pool_virt_to_phys);
232
233 /**
234  * gen_pool_destroy - destroy a special memory pool
235  * @pool: pool to destroy
236  *
237  * Destroy the specified special memory pool. Verifies that there are no
238  * outstanding allocations.
239  */
240 void gen_pool_destroy(struct gen_pool *pool)
241 {
242         struct list_head *_chunk, *_next_chunk;
243         struct gen_pool_chunk *chunk;
244         int order = pool->min_alloc_order;
245         int bit, end_bit;
246
247         list_for_each_safe(_chunk, _next_chunk, &pool->chunks) {
248                 chunk = list_entry(_chunk, struct gen_pool_chunk, next_chunk);
249                 list_del(&chunk->next_chunk);
250
251                 end_bit = chunk_size(chunk) >> order;
252                 bit = find_next_bit(chunk->bits, end_bit, 0);
253                 BUG_ON(bit < end_bit);
254
255                 vfree(chunk);
256         }
257         kfree_const(pool->name);
258         kfree(pool);
259 }
260 EXPORT_SYMBOL(gen_pool_destroy);
261
262 /**
263  * gen_pool_alloc - allocate special memory from the pool
264  * @pool: pool to allocate from
265  * @size: number of bytes to allocate from the pool
266  *
267  * Allocate the requested number of bytes from the specified pool.
268  * Uses the pool allocation function (with first-fit algorithm by default).
269  * Can not be used in NMI handler on architectures without
270  * NMI-safe cmpxchg implementation.
271  */
272 unsigned long gen_pool_alloc(struct gen_pool *pool, size_t size)
273 {
274         struct gen_pool_chunk *chunk;
275         unsigned long addr = 0;
276         int order = pool->min_alloc_order;
277         int nbits, start_bit, end_bit, remain;
278
279 #ifndef CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG
280         BUG_ON(in_nmi());
281 #endif
282
283         if (size == 0)
284                 return 0;
285
286         nbits = (size + (1UL << order) - 1) >> order;
287         rcu_read_lock();
288         list_for_each_entry_rcu(chunk, &pool->chunks, next_chunk) {
289                 if (size > atomic_long_read(&chunk->avail))
290                         continue;
291
292                 start_bit = 0;
293                 end_bit = chunk_size(chunk) >> order;
294 retry:
295                 start_bit = pool->algo(chunk->bits, end_bit, start_bit, nbits,
296                                 pool->data);
297                 if (start_bit >= end_bit)
298                         continue;
299                 remain = bitmap_set_ll(chunk->bits, start_bit, nbits);
300                 if (remain) {
301                         remain = bitmap_clear_ll(chunk->bits, start_bit,
302                                                  nbits - remain);
303                         BUG_ON(remain);
304                         goto retry;
305                 }
306
307                 addr = chunk->start_addr + ((unsigned long)start_bit << order);
308                 size = nbits << order;
309                 atomic_long_sub(size, &chunk->avail);
310                 break;
311         }
312         rcu_read_unlock();
313         return addr;
314 }
315 EXPORT_SYMBOL(gen_pool_alloc);
316
317 /**
318  * gen_pool_dma_alloc - allocate special memory from the pool for DMA usage
319  * @pool: pool to allocate from
320  * @size: number of bytes to allocate from the pool
321  * @dma: dma-view physical address return value.  Use NULL if unneeded.
322  *
323  * Allocate the requested number of bytes from the specified pool.
324  * Uses the pool allocation function (with first-fit algorithm by default).
325  * Can not be used in NMI handler on architectures without
326  * NMI-safe cmpxchg implementation.
327  */
328 void *gen_pool_dma_alloc(struct gen_pool *pool, size_t size, dma_addr_t *dma)
329 {
330         unsigned long vaddr;
331
332         if (!pool)
333                 return NULL;
334
335         vaddr = gen_pool_alloc(pool, size);
336         if (!vaddr)
337                 return NULL;
338
339         if (dma)
340                 *dma = gen_pool_virt_to_phys(pool, vaddr);
341
342         return (void *)vaddr;
343 }
344 EXPORT_SYMBOL(gen_pool_dma_alloc);
345
346 /**
347  * gen_pool_free - free allocated special memory back to the pool
348  * @pool: pool to free to
349  * @addr: starting address of memory to free back to pool
350  * @size: size in bytes of memory to free
351  *
352  * Free previously allocated special memory back to the specified
353  * pool.  Can not be used in NMI handler on architectures without
354  * NMI-safe cmpxchg implementation.
355  */
356 void gen_pool_free(struct gen_pool *pool, unsigned long addr, size_t size)
357 {
358         struct gen_pool_chunk *chunk;
359         int order = pool->min_alloc_order;
360         int start_bit, nbits, remain;
361
362 #ifndef CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG
363         BUG_ON(in_nmi());
364 #endif
365
366         nbits = (size + (1UL << order) - 1) >> order;
367         rcu_read_lock();
368         list_for_each_entry_rcu(chunk, &pool->chunks, next_chunk) {
369                 if (addr >= chunk->start_addr && addr <= chunk->end_addr) {
370                         BUG_ON(addr + size - 1 > chunk->end_addr);
371                         start_bit = (addr - chunk->start_addr) >> order;
372                         remain = bitmap_clear_ll(chunk->bits, start_bit, nbits);
373                         BUG_ON(remain);
374                         size = nbits << order;
375                         atomic_long_add(size, &chunk->avail);
376                         rcu_read_unlock();
377                         return;
378                 }
379         }
380         rcu_read_unlock();
381         BUG();
382 }
383 EXPORT_SYMBOL(gen_pool_free);
384
385 /**
386  * gen_pool_for_each_chunk - call func for every chunk of generic memory pool
387  * @pool:       the generic memory pool
388  * @func:       func to call
389  * @data:       additional data used by @func
390  *
391  * Call @func for every chunk of generic memory pool.  The @func is
392  * called with rcu_read_lock held.
393  */
394 void gen_pool_for_each_chunk(struct gen_pool *pool,
395         void (*func)(struct gen_pool *pool, struct gen_pool_chunk *chunk, void *data),
396         void *data)
397 {
398         struct gen_pool_chunk *chunk;
399
400         rcu_read_lock();
401         list_for_each_entry_rcu(chunk, &(pool)->chunks, next_chunk)
402                 func(pool, chunk, data);
403         rcu_read_unlock();
404 }
405 EXPORT_SYMBOL(gen_pool_for_each_chunk);
406
407 /**
408  * addr_in_gen_pool - checks if an address falls within the range of a pool
409  * @pool:       the generic memory pool
410  * @start:      start address
411  * @size:       size of the region
412  *
413  * Check if the range of addresses falls within the specified pool. Returns
414  * true if the entire range is contained in the pool and false otherwise.
415  */
416 bool addr_in_gen_pool(struct gen_pool *pool, unsigned long start,
417                         size_t size)
418 {
419         bool found = false;
420         unsigned long end = start + size - 1;
421         struct gen_pool_chunk *chunk;
422
423         rcu_read_lock();
424         list_for_each_entry_rcu(chunk, &(pool)->chunks, next_chunk) {
425                 if (start >= chunk->start_addr && start <= chunk->end_addr) {
426                         if (end <= chunk->end_addr) {
427                                 found = true;
428                                 break;
429                         }
430                 }
431         }
432         rcu_read_unlock();
433         return found;
434 }
435
436 /**
437  * gen_pool_avail - get available free space of the pool
438  * @pool: pool to get available free space
439  *
440  * Return available free space of the specified pool.
441  */
442 size_t gen_pool_avail(struct gen_pool *pool)
443 {
444         struct gen_pool_chunk *chunk;
445         size_t avail = 0;
446
447         rcu_read_lock();
448         list_for_each_entry_rcu(chunk, &pool->chunks, next_chunk)
449                 avail += atomic_long_read(&chunk->avail);
450         rcu_read_unlock();
451         return avail;
452 }
453 EXPORT_SYMBOL_GPL(gen_pool_avail);
454
455 /**
456  * gen_pool_size - get size in bytes of memory managed by the pool
457  * @pool: pool to get size
458  *
459  * Return size in bytes of memory managed by the pool.
460  */
461 size_t gen_pool_size(struct gen_pool *pool)
462 {
463         struct gen_pool_chunk *chunk;
464         size_t size = 0;
465
466         rcu_read_lock();
467         list_for_each_entry_rcu(chunk, &pool->chunks, next_chunk)
468                 size += chunk_size(chunk);
469         rcu_read_unlock();
470         return size;
471 }
472 EXPORT_SYMBOL_GPL(gen_pool_size);
473
474 /**
475  * gen_pool_set_algo - set the allocation algorithm
476  * @pool: pool to change allocation algorithm
477  * @algo: custom algorithm function
478  * @data: additional data used by @algo
479  *
480  * Call @algo for each memory allocation in the pool.
481  * If @algo is NULL use gen_pool_first_fit as default
482  * memory allocation function.
483  */
484 void gen_pool_set_algo(struct gen_pool *pool, genpool_algo_t algo, void *data)
485 {
486         rcu_read_lock();
487
488         pool->algo = algo;
489         if (!pool->algo)
490                 pool->algo = gen_pool_first_fit;
491
492         pool->data = data;
493
494         rcu_read_unlock();
495 }
496 EXPORT_SYMBOL(gen_pool_set_algo);
497
498 /**
499  * gen_pool_first_fit - find the first available region
500  * of memory matching the size requirement (no alignment constraint)
501  * @map: The address to base the search on
502  * @size: The bitmap size in bits
503  * @start: The bitnumber to start searching at
504  * @nr: The number of zeroed bits we're looking for
505  * @data: additional data - unused
506  */
507 unsigned long gen_pool_first_fit(unsigned long *map, unsigned long size,
508                 unsigned long start, unsigned int nr, void *data)
509 {
510         return bitmap_find_next_zero_area(map, size, start, nr, 0);
511 }
512 EXPORT_SYMBOL(gen_pool_first_fit);
513
514 /**
515  * gen_pool_first_fit_order_align - find the first available region
516  * of memory matching the size requirement. The region will be aligned
517  * to the order of the size specified.
518  * @map: The address to base the search on
519  * @size: The bitmap size in bits
520  * @start: The bitnumber to start searching at
521  * @nr: The number of zeroed bits we're looking for
522  * @data: additional data - unused
523  */
524 unsigned long gen_pool_first_fit_order_align(unsigned long *map,
525                 unsigned long size, unsigned long start,
526                 unsigned int nr, void *data)
527 {
528         unsigned long align_mask = roundup_pow_of_two(nr) - 1;
529
530         return bitmap_find_next_zero_area(map, size, start, nr, align_mask);
531 }
532 EXPORT_SYMBOL(gen_pool_first_fit_order_align);
533
534 /**
535  * gen_pool_best_fit - find the best fitting region of memory
536  * macthing the size requirement (no alignment constraint)
537  * @map: The address to base the search on
538  * @size: The bitmap size in bits
539  * @start: The bitnumber to start searching at
540  * @nr: The number of zeroed bits we're looking for
541  * @data: additional data - unused
542  *
543  * Iterate over the bitmap to find the smallest free region
544  * which we can allocate the memory.
545  */
546 unsigned long gen_pool_best_fit(unsigned long *map, unsigned long size,
547                 unsigned long start, unsigned int nr, void *data)
548 {
549         unsigned long start_bit = size;
550         unsigned long len = size + 1;
551         unsigned long index;
552
553         index = bitmap_find_next_zero_area(map, size, start, nr, 0);
554
555         while (index < size) {
556                 int next_bit = find_next_bit(map, size, index + nr);
557                 if ((next_bit - index) < len) {
558                         len = next_bit - index;
559                         start_bit = index;
560                         if (len == nr)
561                                 return start_bit;
562                 }
563                 index = bitmap_find_next_zero_area(map, size,
564                                                    next_bit + 1, nr, 0);
565         }
566
567         return start_bit;
568 }
569 EXPORT_SYMBOL(gen_pool_best_fit);
570
571 static void devm_gen_pool_release(struct device *dev, void *res)
572 {
573         gen_pool_destroy(*(struct gen_pool **)res);
574 }
575
576 static int devm_gen_pool_match(struct device *dev, void *res, void *data)
577 {
578         struct gen_pool **p = res;
579
580         /* NULL data matches only a pool without an assigned name */
581         if (!data && !(*p)->name)
582                 return 1;
583
584         if (!data || !(*p)->name)
585                 return 0;
586
587         return !strcmp((*p)->name, data);
588 }
589
590 /**
591  * gen_pool_get - Obtain the gen_pool (if any) for a device
592  * @dev: device to retrieve the gen_pool from
593  * @name: name of a gen_pool or NULL, identifies a particular gen_pool on device
594  *
595  * Returns the gen_pool for the device if one is present, or NULL.
596  */
597 struct gen_pool *gen_pool_get(struct device *dev, const char *name)
598 {
599         struct gen_pool **p;
600
601         p = devres_find(dev, devm_gen_pool_release, devm_gen_pool_match,
602                         (void *)name);
603         if (!p)
604                 return NULL;
605         return *p;
606 }
607 EXPORT_SYMBOL_GPL(gen_pool_get);
608
609 /**
610  * devm_gen_pool_create - managed gen_pool_create
611  * @dev: device that provides the gen_pool
612  * @min_alloc_order: log base 2 of number of bytes each bitmap bit represents
613  * @nid: node selector for allocated gen_pool, %NUMA_NO_NODE for all nodes
614  * @name: name of a gen_pool or NULL, identifies a particular gen_pool on device
615  *
616  * Create a new special memory pool that can be used to manage special purpose
617  * memory not managed by the regular kmalloc/kfree interface. The pool will be
618  * automatically destroyed by the device management code.
619  */
620 struct gen_pool *devm_gen_pool_create(struct device *dev, int min_alloc_order,
621                                       int nid, const char *name)
622 {
623         struct gen_pool **ptr, *pool;
624         const char *pool_name = NULL;
625
626         /* Check that genpool to be created is uniquely addressed on device */
627         if (gen_pool_get(dev, name))
628                 return ERR_PTR(-EINVAL);
629
630         if (name) {
631                 pool_name = kstrdup_const(name, GFP_KERNEL);
632                 if (!pool_name)
633                         return ERR_PTR(-ENOMEM);
634         }
635
636         ptr = devres_alloc(devm_gen_pool_release, sizeof(*ptr), GFP_KERNEL);
637         if (!ptr)
638                 goto free_pool_name;
639
640         pool = gen_pool_create(min_alloc_order, nid);
641         if (!pool)
642                 goto free_devres;
643
644         *ptr = pool;
645         pool->name = pool_name;
646         devres_add(dev, ptr);
647
648         return pool;
649
650 free_devres:
651         devres_free(ptr);
652 free_pool_name:
653         kfree_const(pool_name);
654
655         return ERR_PTR(-ENOMEM);
656 }
657 EXPORT_SYMBOL(devm_gen_pool_create);
658
659 #ifdef CONFIG_OF
660 /**
661  * of_gen_pool_get - find a pool by phandle property
662  * @np: device node
663  * @propname: property name containing phandle(s)
664  * @index: index into the phandle array
665  *
666  * Returns the pool that contains the chunk starting at the physical
667  * address of the device tree node pointed at by the phandle property,
668  * or NULL if not found.
669  */
670 struct gen_pool *of_gen_pool_get(struct device_node *np,
671         const char *propname, int index)
672 {
673         struct platform_device *pdev;
674         struct device_node *np_pool, *parent;
675         const char *name = NULL;
676         struct gen_pool *pool = NULL;
677
678         np_pool = of_parse_phandle(np, propname, index);
679         if (!np_pool)
680                 return NULL;
681
682         pdev = of_find_device_by_node(np_pool);
683         if (!pdev) {
684                 /* Check if named gen_pool is created by parent node device */
685                 parent = of_get_parent(np_pool);
686                 pdev = of_find_device_by_node(parent);
687                 of_node_put(parent);
688
689                 of_property_read_string(np_pool, "label", &name);
690                 if (!name)
691                         name = np_pool->name;
692         }
693         if (pdev)
694                 pool = gen_pool_get(&pdev->dev, name);
695         of_node_put(np_pool);
696
697         return pool;
698 }
699 EXPORT_SYMBOL_GPL(of_gen_pool_get);
700 #endif /* CONFIG_OF */