From: Dave A. <ai...@us...> - 2001-06-08 20:11:15
|
Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/kernel In directory usw-pr-cvs1:/tmp/cvs-serv25693/kernel Modified Files: setup.c Log Message: DA: flush needed to make bootup go properly... with this flush in we seem to boot properly.. and load a binary.. woohoo Index: setup.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/kernel/setup.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- setup.c 2001/02/21 00:20:30 1.7 +++ setup.c 2001/06/08 20:11:10 1.8 @@ -19,6 +19,7 @@ #include <asm/rpb.h> #include <asm/page.h> #include <asm/mv.h> +#include <asm/mm/tlb.h> #define COMMAND_LINE_SIZE 256 @@ -118,7 +119,10 @@ /* No root filesystem yet */ ROOT_DEV = NODEV; - + /* Inserted by D.A. - 8 Jun 2001 - THIS IS NECESSARY + if not correct */ + flush_tlb(); + /* * Identify the flock of penguins. */ |