From: Kenn H. <ke...@us...> - 2002-12-12 01:43:21
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax/mm In directory sc8-pr-cvs1:/tmp/cvs-serv13160/include/asm-vax/mm Modified Files: mmu_context.h pgalloc.h pgtable.h Removed Files: cache.h tlb.h Log Message: TLB, i-cache and d-cache flushing macros and functions now have their own header files, and are no longer automatically pulled in via <asm/pgalloc.h> Index: mmu_context.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/mm/mmu_context.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- mmu_context.h 20 May 2002 00:33:39 -0000 1.3 +++ mmu_context.h 12 Dec 2002 01:19:21 -0000 1.4 @@ -2,7 +2,7 @@ #define _ASM_VAX_MMU_CONTEXT_H /* atp Jan 2001 */ -#include <asm/mm/tlb.h> +#include <asm/tlbflush.h> /* mmu_contexts are part of process control block */ Index: pgalloc.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/mm/pgalloc.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- pgalloc.h 2 Dec 2002 01:08:08 -0000 1.4 +++ pgalloc.h 12 Dec 2002 01:19:21 -0000 1.5 @@ -116,8 +116,4 @@ #define pte_alloc_one_kernel(mm, address) ({ BUG(); (pte_t *)0; }) #define pmd_page_kernel(pmd) BUG() -/* tlb routines */ - -#include <asm/mm/tlb.h> - #endif /* __ASM_VAX_PGALLOC_H */ Index: pgtable.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/mm/pgtable.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- pgtable.h 7 Dec 2002 00:35:41 -0000 1.6 +++ pgtable.h 12 Dec 2002 01:19:21 -0000 1.7 @@ -15,8 +15,6 @@ #ifndef __ASSEMBLY__ # include <asm/mm/virtmap.h> -/* first part of pgtable.h deals with cache stuff */ -#include <asm/mm/cache.h> #endif /* !assembly */ --- cache.h DELETED --- --- tlb.h DELETED --- |