Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 24809
b: refs/heads/master
c: 94c3e87
h: refs/heads/master
i:
  24807: 392971e
v: v3
  • Loading branch information
Helge Deller authored and Kyle McMartin committed Mar 30, 2006
1 parent ce0fe50 commit 0340153
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 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: a81dd18eb974cc34634c53a6447b2799ec0c3158
refs/heads/master: 94c3e87a792c70d041954b0ef68ebd22368d0931
7 changes: 3 additions & 4 deletions trunk/arch/parisc/mm/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -1013,16 +1013,15 @@ void flush_tlb_all(void)
#ifdef CONFIG_BLK_DEV_INITRD
void free_initrd_mem(unsigned long start, unsigned long end)
{
#if 0
if (start < end)
printk(KERN_INFO "Freeing initrd memory: %ldk freed\n", (end - start) >> 10);
if (start >= end)
return;
printk(KERN_INFO "Freeing initrd memory: %ldk freed\n", (end - start) >> 10);
for (; start < end; start += PAGE_SIZE) {
ClearPageReserved(virt_to_page(start));
init_page_count(virt_to_page(start));
free_page(start);
num_physpages++;
totalram_pages++;
}
#endif
}
#endif

0 comments on commit 0340153

Please sign in to comment.