Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1284475
| From | Alexander Kuleshov <kuleshovmail@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] mm/memblock: use memblock_insert_region() for the empty array |
| Date | 2015-12-05 08:30 +0100 |
| Message-ID | <qCfs5-5QT-1@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
We have the special case for an empty array in the memblock_add_range()
function. In the same time we have almost the same functional in the
memblock_insert_region() function. Let's use the memblock_insert_region()
instead of direct initialization.
Signed-off-by: Alexander Kuleshov <kuleshovmail@gmail.com>
---
mm/memblock.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/mm/memblock.c b/mm/memblock.c
index d300f13..e8a897d 100644
--- a/mm/memblock.c
+++ b/mm/memblock.c
@@ -496,12 +496,16 @@ static void __init_memblock memblock_insert_region(struct memblock_type *type,
struct memblock_region *rgn = &type->regions[idx];
BUG_ON(type->cnt >= type->max);
- memmove(rgn + 1, rgn, (type->cnt - idx) * sizeof(*rgn));
+ /* special case for empty array */
+ if (idx)
+ {
+ memmove(rgn + 1, rgn, (type->cnt - idx) * sizeof(*rgn));
+ type->cnt++;
+ }
rgn->base = base;
rgn->size = size;
rgn->flags = flags;
memblock_set_region_node(rgn, nid);
- type->cnt++;
type->total_size += size;
}
@@ -536,11 +540,7 @@ int __init_memblock memblock_add_range(struct memblock_type *type,
/* special case for empty array */
if (type->regions[0].size == 0) {
WARN_ON(type->cnt != 1 || type->total_size);
- type->regions[0].base = base;
- type->regions[0].size = size;
- type->regions[0].flags = flags;
- memblock_set_region_node(&type->regions[0], nid);
- type->total_size = size;
+ memblock_insert_region(type, 0, base, size, nid, flags);
return 0;
}
repeat:
--
2.5.0
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] mm/memblock: use memblock_insert_region() for the empty array Alexander Kuleshov <kuleshovmail@gmail.com> - 2015-12-05 08:30 +0100 Re: [PATCH] mm/memblock: use memblock_insert_region() for the empty array Dan Williams <dan.j.williams@intel.com> - 2015-12-09 19:50 +0100 Re: [PATCH] mm/memblock: use memblock_insert_region() for the empty array Tyler Baker <tyler.baker@linaro.org> - 2015-12-09 20:00 +0100
csiph-web