patch-2.0.21-2.1.0 linux/arch/alpha/mm/init.c
Next file: linux/arch/i386/Makefile
Previous file: linux/arch/alpha/kernel/ptrace.c
Back to the patch index
Back to the overall index
- Lines: 37
- Date:
Wed Sep 25 12:14:59 1996
- Orig file:
lx2.0/v2.0.21/linux/arch/alpha/mm/init.c
- Orig date:
Wed Aug 21 09:18:07 1996
diff -u --recursive --new-file lx2.0/v2.0.21/linux/arch/alpha/mm/init.c linux/arch/alpha/mm/init.c
@@ -59,7 +59,7 @@
printk("\nMem-info:\n");
show_free_areas();
printk("Free swap: %6dkB\n",nr_swap_pages<<(PAGE_SHIFT-10));
- i = MAP_NR(high_memory);
+ i = max_mapnr;
while (i-- > 0) {
total++;
if (PageReserved(mem_map+i))
@@ -145,7 +145,8 @@
unsigned long tmp;
end_mem &= PAGE_MASK;
- high_memory = end_mem;
+ max_mapnr = MAP_NR(end_mem);
+ high_memory = (void *) end_mem;
start_mem = PAGE_ALIGN(start_mem);
/*
@@ -157,7 +158,7 @@
tmp += PAGE_SIZE;
}
- for (tmp = PAGE_OFFSET ; tmp < high_memory ; tmp += PAGE_SIZE) {
+ for (tmp = PAGE_OFFSET ; tmp < end_mem ; tmp += PAGE_SIZE) {
if (tmp >= MAX_DMA_ADDRESS)
clear_bit(PG_DMA, &mem_map[MAP_NR(tmp)].flags);
if (PageReserved(mem_map+MAP_NR(tmp)))
@@ -174,7 +175,7 @@
{
int i;
- i = MAP_NR(high_memory);
+ i = max_mapnr;
val->totalram = 0;
val->sharedram = 0;
val->freeram = nr_free_pages << PAGE_SHIFT;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov