]> git.neil.brown.name Git - history.git/commitdiff
[PATCH] M68k pgalloc fixup
authorGeert Uytterhoeven <geert@linux-m68k.org>
Wed, 28 Jul 2004 16:06:45 +0000 (09:06 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Wed, 28 Jul 2004 16:06:45 +0000 (09:06 -0700)
M68k: Fix build after <asm/pgalloc.h> surgery in 2.6.8-rc1:
  - Add missing include on machines with a standard m68k MMU
  - Convert __pte_free_tlb() to a macro (like it is on most other archs) on
    Sun-3, to avoid include hell

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
include/asm-m68k/motorola_pgalloc.h
include/asm-m68k/sun3_pgalloc.h

index f315615e488af2f9cfd4913a5614ce83788e774d..dda9618adc070d2e7718e96a3c7b2c6b9e330fda 100644 (file)
@@ -2,6 +2,7 @@
 #define _MOTOROLA_PGALLOC_H
 
 #include <asm/tlb.h>
+#include <asm/tlbflush.h>
 
 extern pmd_t *get_pointer_table(void);
 extern int free_pointer_table(pmd_t *);
index d00e10ff6e80ced277f8b713b8f25efc52d06f6b..fd8241117649e978e320b4731cdc257c54c7f49c 100644 (file)
@@ -31,10 +31,7 @@ static inline void pte_free(struct page *page)
         __free_page(page);
 }
 
-static inline void __pte_free_tlb(struct mmu_gather *tlb, struct page *page)
-{
-       tlb_remove_page(tlb, page);
-}
+#define __pte_free_tlb(tlb,pte) tlb_remove_page((tlb),(pte))
 
 static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm,
                                          unsigned long address)