From: Andy P. <at...@us...> - 2001-02-15 16:50:13
|
Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/boot In directory usw-pr-cvs1:/tmp/cvs-serv16646/arch/vax/boot Modified Files: tmp_init.c Log Message: Fixes for pagelet related problems. mk_pte -> mk_pte_phys in ioremap. Index: tmp_init.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/boot/tmp_init.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- tmp_init.c 2001/02/15 01:26:58 1.4 +++ tmp_init.c 2001/02/15 16:50:53 1.5 @@ -108,7 +108,7 @@ * enable them */ /* Protect us from interrupt stack overflows */ - guard_int_stack(); + guard_int_stack(); /* If it is possible to register a console for your machine at this point in the boot sequence, do so @@ -136,8 +136,8 @@ printk("RPB info: l_pfncnt: %08x, .l_vmb_version: %08x .l_badpgs: %08x\n", boot_rpb.l_pfncnt, boot_rpb.l_vmb_version, boot_rpb.l_badpgs); - printk("Physical memory: %08x pages (%dKB)\n", - max_pfn, max_pfn / 2); + printk("Physical memory: %08x HW pagelets, %08x pages (%dKB)\n", + max_pfn, max_pfn/8, max_pfn / 2); setup_arch(&command_line); |