Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 155352
b: refs/heads/master
c: ec3a354
h: refs/heads/master
v: v3
  • Loading branch information
Catalin Marinas committed Jul 8, 2009
1 parent 59b1249 commit d87eb9a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 53238a60dd4a679f6fe5613a7ed46899587205cf
refs/heads/master: ec3a354bd46cbdaa7933ba57a142ee2d2dbde0e5
6 changes: 6 additions & 0 deletions trunk/mm/bootmem.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include <linux/pfn.h>
#include <linux/bootmem.h>
#include <linux/module.h>
#include <linux/kmemleak.h>

#include <asm/bug.h>
#include <asm/io.h>
Expand Down Expand Up @@ -335,6 +336,8 @@ void __init free_bootmem_node(pg_data_t *pgdat, unsigned long physaddr,
{
unsigned long start, end;

kmemleak_free_part(__va(physaddr), size);

start = PFN_UP(physaddr);
end = PFN_DOWN(physaddr + size);

Expand All @@ -354,6 +357,8 @@ void __init free_bootmem(unsigned long addr, unsigned long size)
{
unsigned long start, end;

kmemleak_free_part(__va(addr), size);

start = PFN_UP(addr);
end = PFN_DOWN(addr + size);

Expand Down Expand Up @@ -516,6 +521,7 @@ static void * __init alloc_bootmem_core(struct bootmem_data *bdata,
region = phys_to_virt(PFN_PHYS(bdata->node_min_pfn) +
start_off);
memset(region, 0, size);
kmemleak_alloc(region, size, 1, 0);
return region;
}

Expand Down

0 comments on commit d87eb9a

Please sign in to comment.