From: Andy P. <at...@us...> - 2001-02-15 01:26:18
|
Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/boot In directory usw-pr-cvs1:/tmp/cvs-serv31452/boot Modified Files: head.S tmp_init.c Log Message: pagelet updates, MM updates. shot 9 Index: head.S =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/boot/head.S,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- head.S 2001/01/26 00:27:00 1.2 +++ head.S 2001/02/15 01:26:58 1.3 @@ -192,7 +192,9 @@ # this to access all of RAM via the kernel _page_offset mapping. # # PAGE_OFFSET here is 0x80000000 - the start of system space. - +# +# swapper_pg_dir is actually a pgd_t. The spt is the third entry. +# p0br/p0lr, p1br/p1lr, sbr/slr # First find a suitable start position for the SPT. This must be # longword aligned addl3 $4, phys_kern_end, r5 Index: tmp_init.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/boot/tmp_init.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- tmp_init.c 2001/01/29 01:09:18 1.3 +++ tmp_init.c 2001/02/15 01:26:58 1.4 @@ -107,14 +107,14 @@ * Interrupts are still disabled. Do necessary setups, then * 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 in post_vm_init(). Otherwise, implement mv->console_init() which will be called later. */ + mv->post_vm_init(); #ifdef __SMP__ |