Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

s390/mm: Remove unused flush_tlb()

flush_tlb() exists for historic reasons and was never used. Remove it.

Reviewed-by: Alexander Gordeev <agordeev@linux.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>

-2
-2
arch/s390/include/asm/tlbflush.h
··· 83 83 84 84 /* 85 85 * TLB flushing: 86 - * flush_tlb() - flushes the current mm struct TLBs 87 86 * flush_tlb_all() - flushes all processes TLBs 88 87 * flush_tlb_mm(mm) - flushes the specified mm context TLB's 89 88 * flush_tlb_page(vma, vmaddr) - flushes one page ··· 98 99 * only one user. At the end of the update the flush_tlb_mm and 99 100 * flush_tlb_range functions need to do the flush. 100 101 */ 101 - #define flush_tlb() do { } while (0) 102 102 #define flush_tlb_all() do { } while (0) 103 103 #define flush_tlb_page(vma, addr) do { } while (0) 104 104