 2672391169
			
		
	
	
	2672391169
	
	
	
		
			
			In case other architectures require RCU freed page-tables to implement gup_fast() and software filled hashes and similar things, provide the means to do so by moving the logic into generic code. Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Requested-by: David Miller <davem@davemloft.net> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> Cc: Russell King <rmk@arm.linux.org.uk> Cc: Paul Mundt <lethal@linux-sh.org> Cc: Jeff Dike <jdike@addtoit.com> Cc: Richard Weinberger <richard@nod.at> Cc: Tony Luck <tony.luck@intel.com> Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> Cc: Hugh Dickins <hughd@google.com> Cc: Mel Gorman <mel@csn.ul.ie> Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> Cc: Nick Piggin <npiggin@kernel.dk> Cc: Namhyung Kim <namhyung@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
		
			
				
	
	
		
			49 lines
		
	
	
	
		
			1.2 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
	
		
			1.2 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  *	TLB shootdown specifics for powerpc
 | |
|  *
 | |
|  * Copyright (C) 2002 Anton Blanchard, IBM Corp.
 | |
|  * Copyright (C) 2002 Paul Mackerras, IBM Corp.
 | |
|  *
 | |
|  * This program is free software; you can redistribute it and/or
 | |
|  * modify it under the terms of the GNU General Public License
 | |
|  * as published by the Free Software Foundation; either version
 | |
|  * 2 of the License, or (at your option) any later version.
 | |
|  */
 | |
| #ifndef _ASM_POWERPC_TLB_H
 | |
| #define _ASM_POWERPC_TLB_H
 | |
| #ifdef __KERNEL__
 | |
| 
 | |
| #ifndef __powerpc64__
 | |
| #include <asm/pgtable.h>
 | |
| #endif
 | |
| #include <asm/pgalloc.h>
 | |
| #include <asm/tlbflush.h>
 | |
| #ifndef __powerpc64__
 | |
| #include <asm/page.h>
 | |
| #include <asm/mmu.h>
 | |
| #endif
 | |
| 
 | |
| #include <linux/pagemap.h>
 | |
| 
 | |
| #define tlb_start_vma(tlb, vma)	do { } while (0)
 | |
| #define tlb_end_vma(tlb, vma)	do { } while (0)
 | |
| 
 | |
| extern void tlb_flush(struct mmu_gather *tlb);
 | |
| 
 | |
| /* Get the generic bits... */
 | |
| #include <asm-generic/tlb.h>
 | |
| 
 | |
| extern void flush_hash_entry(struct mm_struct *mm, pte_t *ptep,
 | |
| 			     unsigned long address);
 | |
| 
 | |
| static inline void __tlb_remove_tlb_entry(struct mmu_gather *tlb, pte_t *ptep,
 | |
| 					  unsigned long address)
 | |
| {
 | |
| #ifdef CONFIG_PPC_STD_MMU_32
 | |
| 	if (pte_val(*ptep) & _PAGE_HASHPTE)
 | |
| 		flush_hash_entry(tlb->mm, ptep, address);
 | |
| #endif
 | |
| }
 | |
| 
 | |
| #endif /* __KERNEL__ */
 | |
| #endif /* __ASM_POWERPC_TLB_H */
 |