diff options
| author | Paul Mackerras <paulus@samba.org> | 2003-01-14 20:22:38 +1100 |
|---|---|---|
| committer | Paul Mackerras <paulus@samba.org> | 2003-01-14 20:22:38 +1100 |
| commit | 9e7f90ddcedbe01fbb63c022ce61ef8c9a10cd8b (patch) | |
| tree | 475240eb4981bd86ab57f6362ef12be2fd4c73d5 /include | |
| parent | 8ebe7055cdace09134384090591d80a4d157deca (diff) | |
PPC32: Change struct free_pte_ctx to struct mmu_gather.
A couple of occurrences of struct free_pte_ctx in include/asm-ppc/tlb.h
got missed in akpm's patch - this fixes them.
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-ppc/tlb.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/include/asm-ppc/tlb.h b/include/asm-ppc/tlb.h index b4375599b610..2c142c5d8584 100644 --- a/include/asm-ppc/tlb.h +++ b/include/asm-ppc/tlb.h @@ -21,8 +21,8 @@ #ifdef CONFIG_PPC_STD_MMU /* Classic PPC with hash-table based MMU... */ -struct free_pte_ctx; -extern void tlb_flush(struct free_pte_ctx *tlb); +struct mmu_gather; +extern void tlb_flush(struct mmu_gather *tlb); /* Get the generic bits... */ #include <asm-generic/tlb.h> @@ -44,10 +44,6 @@ static inline void __tlb_remove_tlb_entry(struct mmu_gather *tlb, pte_t *ptep, #else /* Embedded PPC with software-loaded TLB, very simple... */ -struct flush_tlb_arch { }; - -#define tlb_init_arch(tlb, full_flush) do { } while (0) -#define tlb_finish_arch(tlb) do { } while (0) #define tlb_start_vma(tlb, vma) do { } while (0) #define tlb_end_vma(tlb, vma) do { } while (0) #define __tlb_remove_tlb_entry(tlb, pte, address) do { } while (0) |
