x86/mm/tlb: Add freed_tables element to flush_tlb_info
authorRik van Riel <riel@surriel.com>
Wed, 26 Sep 2018 03:58:43 +0000 (23:58 -0400)
committerPeter Zijlstra <peterz@infradead.org>
Tue, 9 Oct 2018 14:51:12 +0000 (16:51 +0200)
Pass the information on to native_flush_tlb_others.

No functional changes.

Cc: npiggin@gmail.com
Cc: mingo@kernel.org
Cc: will.deacon@arm.com
Cc: songliubraving@fb.com
Cc: kernel-team@fb.com
Cc: hpa@zytor.com
Cc: luto@kernel.org
Signed-off-by: Rik van Riel <riel@surriel.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20180926035844.1420-7-riel@surriel.com
arch/x86/include/asm/tlbflush.h
arch/x86/mm/tlb.c

index 1dea986..323a313 100644 (file)
@@ -532,6 +532,7 @@ struct flush_tlb_info {
        unsigned long           end;
        u64                     new_tlb_gen;
        unsigned int            stride_shift;
+       bool                    freed_tables;
 };
 
 #define local_flush_tlb() __flush_tlb()
index 14bf39f..92e46f4 100644 (file)
@@ -617,6 +617,7 @@ void flush_tlb_mm_range(struct mm_struct *mm, unsigned long start,
        struct flush_tlb_info info __aligned(SMP_CACHE_BYTES) = {
                .mm = mm,
                .stride_shift = stride_shift,
+               .freed_tables = freed_tables,
        };
 
        cpu = get_cpu();