From: James S. <jsi...@us...> - 2002-03-22 20:14:03
|
Update of /cvsroot/linuxconsole/ruby/linux/arch/arm/kernel In directory usw-pr-cvs1:/tmp/cvs-serv1749/linux/arch/arm/kernel Modified Files: setup.c Log Message: Synced to 2.5.7 Index: setup.c =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/arch/arm/kernel/setup.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- setup.c 18 Mar 2002 19:29:08 -0000 1.8 +++ setup.c 22 Mar 2002 20:13:57 -0000 1.9 @@ -75,6 +75,9 @@ #ifdef MULTI_TLB struct cpu_tlb_fns cpu_tlb; #endif +#ifdef MULTI_USER +struct cpu_user_fns cpu_user; +#endif char elf_platform[ELF_PLATFORM_SIZE]; char saved_command_line[COMMAND_LINE_SIZE]; @@ -245,6 +248,9 @@ #endif #ifdef MULTI_TLB cpu_tlb = *list->tlb; +#endif +#ifdef MULTI_USER + cpu_user = *list->user; #endif printk("Processor: %s %s revision %d\n", |