 d614bb0412
			
		
	
	
	d614bb0412
	
	
	
		
			
			Acked-by: Paul Mackerras <paulus@samba.org> This patch moves the common code to 32/64 bit headers and also duplicate 4K_PAGES and 64K_PAGES section. We will later change the 64 bit 64K_PAGES version to support smaller PTE fragments. The patch doesn't introduce any functional changes. Acked-by: Paul Mackerras <paulus@samba.org> Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			546 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			546 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef _ASM_POWERPC_PGALLOC_H
 | |
| #define _ASM_POWERPC_PGALLOC_H
 | |
| #ifdef __KERNEL__
 | |
| 
 | |
| #include <linux/mm.h>
 | |
| #include <asm-generic/tlb.h>
 | |
| 
 | |
| #ifdef CONFIG_PPC_BOOK3E
 | |
| extern void tlb_flush_pgtable(struct mmu_gather *tlb, unsigned long address);
 | |
| #else /* CONFIG_PPC_BOOK3E */
 | |
| static inline void tlb_flush_pgtable(struct mmu_gather *tlb,
 | |
| 				     unsigned long address)
 | |
| {
 | |
| }
 | |
| #endif /* !CONFIG_PPC_BOOK3E */
 | |
| 
 | |
| #ifdef CONFIG_PPC64
 | |
| #include <asm/pgalloc-64.h>
 | |
| #else
 | |
| #include <asm/pgalloc-32.h>
 | |
| #endif
 | |
| 
 | |
| #endif /* __KERNEL__ */
 | |
| #endif /* _ASM_POWERPC_PGALLOC_H */
 |