]> Git Repo - linux.git/commitdiff
x86/mm: Align TLB invalidation info
authorNadav Amit <[email protected]>
Wed, 31 Jan 2018 21:19:12 +0000 (13:19 -0800)
committerIngo Molnar <[email protected]>
Tue, 13 Feb 2018 14:05:49 +0000 (15:05 +0100)
The TLB invalidation info is allocated on the stack, which might cause
it to be unaligned. Since this information may be transferred to
different cores for TLB shootdown, this may cause an additional cache
line to become shared. While the overhead is likely to be small, the
fix is simple.

We do not use __cacheline_aligned() since it also defines the section,
which is inappropriate for stack variables.

Signed-off-by: Nadav Amit <[email protected]>
Acked-by: Andy Lutomirski <[email protected]>
Cc: Dave Hansen <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Nadav Amit <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
arch/x86/mm/tlb.c

index 8dcc0607f80584748f92fe43aba9a32685fc6f9b..6550d37d0f06b7abb1aa3dd96e1ad52fb8e62f44 100644 (file)
@@ -613,7 +613,7 @@ void flush_tlb_mm_range(struct mm_struct *mm, unsigned long start,
 {
        int cpu;
 
-       struct flush_tlb_info info = {
+       struct flush_tlb_info info __aligned(SMP_CACHE_BYTES) = {
                .mm = mm,
        };
 
This page took 0.069792 seconds and 4 git commands to generate.