mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	No reason having the same code in every architecture Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de> Cc: Arnd Bergmann <arnd@arndb.de> Link: https://lore.kernel.org/r/20201103095857.885321106@linutronix.de
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			380 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			380 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0
 | 
						|
#include <linux/compiler.h>
 | 
						|
#include <linux/init.h>
 | 
						|
#include <linux/export.h>
 | 
						|
#include <linux/highmem.h>
 | 
						|
#include <linux/sched.h>
 | 
						|
#include <linux/smp.h>
 | 
						|
#include <asm/fixmap.h>
 | 
						|
#include <asm/tlbflush.h>
 | 
						|
 | 
						|
unsigned long highstart_pfn, highend_pfn;
 | 
						|
 | 
						|
void kmap_flush_tlb(unsigned long addr)
 | 
						|
{
 | 
						|
	flush_tlb_one(addr);
 | 
						|
}
 | 
						|
EXPORT_SYMBOL(kmap_flush_tlb);
 |