Skip to content

Commit a297413

Browse files
rppttorvalds
authored andcommitted
mm: memblock: update comments and kernel-doc
* Remove comments mentioning bootmem * Extend "DOC: memblock overview" * Add kernel-doc comments for several more functions [akpm@linux-foundation.org: fix copy-n-paste error] Link: http://lkml.kernel.org/r/1549626347-25461-1-git-send-email-rppt@linux.ibm.com Signed-off-by: Mike Rapoport <rppt@linux.ibm.com> Reviewed-by: Andrew Morton <akpm@linux-foundation.org> Cc: Jonathan Corbet <corbet@lwn.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent c9a688a commit a297413

File tree

1 file changed

+43
-17
lines changed

1 file changed

+43
-17
lines changed

mm/memblock.c

Lines changed: 43 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,19 @@
7676
* :c:func:`memblock_set_node`. The :c:func:`memblock_add_node`
7777
* performs such an assignment directly.
7878
*
79-
* Once memblock is setup the memory can be allocated using either
80-
* memblock or bootmem APIs.
79+
* Once memblock is setup the memory can be allocated using one of the
80+
* API variants:
81+
*
82+
* * :c:func:`memblock_phys_alloc*` - these functions return the
83+
* **physical** address of the allocated memory
84+
* * :c:func:`memblock_alloc*` - these functions return the **virtual**
85+
* address of the allocated memory.
86+
*
87+
* Note, that both API variants use implict assumptions about allowed
88+
* memory ranges and the fallback methods. Consult the documentation
89+
* of :c:func:`memblock_alloc_internal` and
90+
* :c:func:`memblock_alloc_range_nid` functions for more elaboarte
91+
* description.
8192
*
8293
* As the system boot progresses, the architecture specific
8394
* :c:func:`mem_init` function frees all the memory to the buddy page
@@ -435,17 +446,7 @@ static int __init_memblock memblock_double_array(struct memblock_type *type,
435446
else
436447
in_slab = &memblock_reserved_in_slab;
437448

438-
/* Try to find some space for it.
439-
*
440-
* WARNING: We assume that either slab_is_available() and we use it or
441-
* we use MEMBLOCK for allocations. That means that this is unsafe to
442-
* use when bootmem is currently active (unless bootmem itself is
443-
* implemented on top of MEMBLOCK which isn't the case yet)
444-
*
445-
* This should however not be an issue for now, as we currently only
446-
* call into MEMBLOCK while it's still active, or much later when slab
447-
* is active for memory hotplug operations
448-
*/
449+
/* Try to find some space for it */
449450
if (use_slab) {
450451
new_array = kmalloc(new_size, GFP_KERNEL);
451452
addr = new_array ? __pa(new_array) : 0;
@@ -989,7 +990,7 @@ static bool should_skip_region(struct memblock_region *m, int nid, int flags)
989990
}
990991

991992
/**
992-
* __next__mem_range - next function for for_each_free_mem_range() etc.
993+
* __next_mem_range - next function for for_each_free_mem_range() etc.
993994
* @idx: pointer to u64 loop variable
994995
* @nid: node selector, %NUMA_NO_NODE for all nodes
995996
* @flags: pick from blocks based on memory attributes
@@ -1335,6 +1336,18 @@ static phys_addr_t __init memblock_alloc_range_nid(phys_addr_t size,
13351336
return found;
13361337
}
13371338

1339+
/**
1340+
* memblock_phys_alloc_range - allocate a memory block inside specified range
1341+
* @size: size of memory block to be allocated in bytes
1342+
* @align: alignment of the region and block's size
1343+
* @start: the lower bound of the memory region to allocate (physical address)
1344+
* @end: the upper bound of the memory region to allocate (physical address)
1345+
*
1346+
* Allocate @size bytes in the between @start and @end.
1347+
*
1348+
* Return: physical address of the allocated memory block on success,
1349+
* %0 on failure.
1350+
*/
13381351
phys_addr_t __init memblock_phys_alloc_range(phys_addr_t size,
13391352
phys_addr_t align,
13401353
phys_addr_t start,
@@ -1343,6 +1356,19 @@ phys_addr_t __init memblock_phys_alloc_range(phys_addr_t size,
13431356
return memblock_alloc_range_nid(size, align, start, end, NUMA_NO_NODE);
13441357
}
13451358

1359+
/**
1360+
* memblock_phys_alloc_try_nid - allocate a memory block from specified MUMA node
1361+
* @size: size of memory block to be allocated in bytes
1362+
* @align: alignment of the region and block's size
1363+
* @nid: nid of the free area to find, %NUMA_NO_NODE for any node
1364+
*
1365+
* Allocates memory block from the specified NUMA node. If the node
1366+
* has no available memory, attempts to allocated from any node in the
1367+
* system.
1368+
*
1369+
* Return: physical address of the allocated memory block on success,
1370+
* %0 on failure.
1371+
*/
13461372
phys_addr_t __init memblock_phys_alloc_try_nid(phys_addr_t size, phys_addr_t align, int nid)
13471373
{
13481374
return memblock_alloc_range_nid(size, align, 0,
@@ -1469,13 +1495,13 @@ void * __init memblock_alloc_try_nid(
14691495
}
14701496

14711497
/**
1472-
* __memblock_free_late - free bootmem block pages directly to buddy allocator
1498+
* __memblock_free_late - free pages directly to buddy allocator
14731499
* @base: phys starting address of the boot memory block
14741500
* @size: size of the boot memory block in bytes
14751501
*
1476-
* This is only useful when the bootmem allocator has already been torn
1502+
* This is only useful when the memblock allocator has already been torn
14771503
* down, but we are still initializing the system. Pages are released directly
1478-
* to the buddy allocator, no bootmem metadata is updated because it is gone.
1504+
* to the buddy allocator.
14791505
*/
14801506
void __init __memblock_free_late(phys_addr_t base, phys_addr_t size)
14811507
{

0 commit comments

Comments
 (0)