Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 221031
b: refs/heads/master
c: d0e775a
h: refs/heads/master
i:
  221029: b018fef
  221027: 75cf621
  221023: 0bf9438
v: v3
  • Loading branch information
Russell King committed Oct 28, 2010
1 parent cceef75 commit d52392e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 11 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: 47ea3c15498154f634c304e08dee284efdd7dceb
refs/heads/master: d0e775afb94d9b61ba6c63299169ef7a87b68189
27 changes: 17 additions & 10 deletions trunk/arch/arm/mm/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,22 @@ static void __init free_unused_memmap(struct meminfo *mi)
}
}

static void __init free_highpages(void)
{
#ifdef CONFIG_HIGHMEM
int i;

/* set highmem page free */
for_each_bank (i, &meminfo) {
unsigned long start = bank_pfn_start(&meminfo.bank[i]);
unsigned long end = bank_pfn_end(&meminfo.bank[i]);
if (start >= max_low_pfn + PHYS_PFN_OFFSET)
totalhigh_pages += free_area(start, end, NULL);
}
totalram_pages += totalhigh_pages;
#endif
}

/*
* mem_init() marks the free areas in the mem_map and tells us how much
* memory is free. This is done after various parts of the system have
Expand Down Expand Up @@ -465,16 +481,7 @@ void __init mem_init(void)
__phys_to_pfn(__pa(swapper_pg_dir)), NULL);
#endif

#ifdef CONFIG_HIGHMEM
/* set highmem page free */
for_each_bank (i, &meminfo) {
unsigned long start = bank_pfn_start(&meminfo.bank[i]);
unsigned long end = bank_pfn_end(&meminfo.bank[i]);
if (start >= max_low_pfn + PHYS_PFN_OFFSET)
totalhigh_pages += free_area(start, end, NULL);
}
totalram_pages += totalhigh_pages;
#endif
free_highpages();

reserved_pages = free_pages = 0;

Expand Down

0 comments on commit d52392e

Please sign in to comment.