diff options
author | Rik van Riel <riel@surriel.com> | 2018-09-26 06:58:43 +0300 |
---|---|---|
committer | Peter Zijlstra <peterz@infradead.org> | 2018-10-09 17:51:12 +0300 |
commit | 97807813fe7074ee865d6bc1df1d0f8fb878ee9d (patch) | |
tree | f1f9e820962f85a772685b6ebd7802f9e53f7c54 /arch/x86/include/asm/tlbflush.h | |
parent | 016c4d92cd16f569c6485ae62b076c1a4b779536 (diff) | |
download | linux-97807813fe7074ee865d6bc1df1d0f8fb878ee9d.tar.xz |
x86/mm/tlb: Add freed_tables element to flush_tlb_info
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
Diffstat (limited to 'arch/x86/include/asm/tlbflush.h')
-rw-r--r-- | arch/x86/include/asm/tlbflush.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/include/asm/tlbflush.h b/arch/x86/include/asm/tlbflush.h index 1dea9860ce5b..323a313947e0 100644 --- a/arch/x86/include/asm/tlbflush.h +++ b/arch/x86/include/asm/tlbflush.h @@ -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() |