The commit is pushed to "branch-rh7-3.10.0-693.1.1.vz7.37.x-ovz" and will 
appear at https://src.openvz.org/scm/ovz/vzkernel.git
after rh7-3.10.0-693.1.1.vz7.37.4
------>
commit 0341b6119786fe2b22efba5d32549f31ce4ca232
Author: Alexander Potapenko <[email protected]>
Date:   Fri Sep 15 17:27:29 2017 +0300

    x86, kasan, ftrace: Put APIC interrupt handlers into .irqentry.text
    
    Dmitry Vyukov has reported unexpected KASAN stackdepot growth:
    
      https://github.com/google/kasan/issues/36
    
    ... which is caused by the APIC handlers not being present in 
.irqentry.text:
    
    When building with CONFIG_FUNCTION_GRAPH_TRACER=y or CONFIG_KASAN=y, put the
    APIC interrupt handlers into the .irqentry.text section. This is needed
    because both KASAN and function graph tracer use __irqentry_text_start and
    __irqentry_text_end to determine whether a function is an IRQ entry point.
    
    Reported-by: Dmitry Vyukov <[email protected]>
    Signed-off-by: Alexander Potapenko <[email protected]>
    Cc: Andy Lutomirski <[email protected]>
    Cc: Borislav Petkov <[email protected]>
    Cc: Brian Gerst <[email protected]>
    Cc: Denys Vlasenko <[email protected]>
    Cc: H. Peter Anvin <[email protected]>
    Cc: Josh Poimboeuf <[email protected]>
    Cc: Linus Torvalds <[email protected]>
    Cc: Peter Zijlstra <[email protected]>
    Cc: Thomas Gleixner <[email protected]>
    Cc: [email protected]
    Cc: [email protected]
    Cc: [email protected]
    Cc: [email protected]
    Link: 
http://lkml.kernel.org/r/[email protected]
    [ Minor edits. ]
    Signed-off-by: Ingo Molnar <[email protected]>
    
    https://jira.sw.ru/browse/PSBM-69081
    (cherry picked from commit 469f00231278da68062a809306df0bac95a27507)
    Signed-off-by: Andrey Ryabinin <[email protected]>
---
 arch/x86/kernel/entry_64.S | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/arch/x86/kernel/entry_64.S b/arch/x86/kernel/entry_64.S
index d9f7851..dd755f8 100644
--- a/arch/x86/kernel/entry_64.S
+++ b/arch/x86/kernel/entry_64.S
@@ -960,9 +960,20 @@ apicinterrupt3 \num trace(\sym) smp_trace(\sym)
 .endm
 #endif
 
+/* Make sure APIC interrupt handlers end up in the irqentry section: */
+#if defined(CONFIG_FUNCTION_GRAPH_TRACER) || defined(CONFIG_KASAN)
+# define PUSH_SECTION_IRQENTRY .pushsection .irqentry.text, "ax"
+# define POP_SECTION_IRQENTRY  .popsection
+#else
+# define PUSH_SECTION_IRQENTRY
+# define POP_SECTION_IRQENTRY
+#endif
+
 .macro apicinterrupt num sym do_sym
+PUSH_SECTION_IRQENTRY
 apicinterrupt3 \num \sym \do_sym
 trace_apicinterrupt \num \sym
+POP_SECTION_IRQENTRY
 .endm
 
 #ifdef CONFIG_SMP
_______________________________________________
Devel mailing list
[email protected]
https://lists.openvz.org/mailman/listinfo/devel

Reply via email to