Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 277160
b: refs/heads/master
c: a150439
h: refs/heads/master
v: v3
  • Loading branch information
H. Peter Anvin committed Jul 14, 2011
1 parent 90693f6 commit aeea5cb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 24aa07882b672fff2da2f5c955759f0bd13d32d5
refs/heads/master: a150439c4a97db379f0ed6faa46fbbb6e7bf3cb2
8 changes: 6 additions & 2 deletions trunk/mm/memblock.c
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,9 @@ long __init_memblock memblock_remove(phys_addr_t base, phys_addr_t size)
long __init_memblock memblock_free(phys_addr_t base, phys_addr_t size)
{
memblock_dbg(" memblock_free: [%#016llx-%#016llx] %pF\n",
base, base + size, (void *)_RET_IP_);
(unsigned long long)base,
(unsigned long long)base + size,
(void *)_RET_IP_);

return __memblock_remove(&memblock.reserved, base, size);
}
Expand All @@ -460,7 +462,9 @@ long __init_memblock memblock_reserve(phys_addr_t base, phys_addr_t size)
struct memblock_type *_rgn = &memblock.reserved;

memblock_dbg("memblock_reserve: [%#016llx-%#016llx] %pF\n",
base, base + size, (void *)_RET_IP_);
(unsigned long long)base,
(unsigned long long)base + size,
(void *)_RET_IP_);
BUG_ON(0 == size);

return memblock_add_region(_rgn, base, size);
Expand Down

0 comments on commit aeea5cb

Please sign in to comment.