lkml.org 
[lkml]   [2010]   [Nov]   [11]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCHv2 2/2] tracing,mm - add kernel pagefault tracepoint for x86 & x86_64
    Date
    This provides a tracepoint to trace kernel pagefault event.

    When analyzing a vmcore resulting from a kernel failure, we
    often hypothesize that "there should have a pagefault event
    just before this instruction" or similar. Sometimes it means
    that there should have a small delay between instructions that
    extends a critical session and exposed a missing lock. Since
    there have been no evidence of kernel pagefault, it is quite
    difficult to adopt the hypothesis.

    If we can trace the kernel pagefault event, it will help narrow
    the possible cause of failure and will accelerate the
    investigation a lot.


    Signed-off-by: Larry Woodman <lwoodman@redhat.com>
    Signed-off-by: Jiri Olsa <jolsa@redhat.com>
    ---
    arch/x86/mm/fault.c | 33 ++++++++++++++++++++++-----------
    include/trace/events/kmem.h | 23 +++++++++++++++++++++++
    2 files changed, 45 insertions(+), 11 deletions(-)

    diff --git a/arch/x86/mm/fault.c b/arch/x86/mm/fault.c
    index 7d90ceb..171dcc9 100644
    --- a/arch/x86/mm/fault.c
    +++ b/arch/x86/mm/fault.c
    @@ -12,6 +12,7 @@
    #include <linux/mmiotrace.h> /* kmmio_handler, ... */
    #include <linux/perf_event.h> /* perf_sw_event */
    #include <linux/hugetlb.h> /* hstate_index_to_shift */
    +#include <trace/events/kmem.h>

    #include <asm/traps.h> /* dotraplinkage, ... */
    #include <asm/pgalloc.h> /* pgd_*(), ... */
    @@ -944,17 +945,11 @@ static int fault_in_kernel_space(unsigned long address)
    return address >= TASK_SIZE_MAX;
    }

    -/*
    - * This routine handles page faults. It determines the address,
    - * and the problem, and then passes it off to one of the appropriate
    - * routines.
    - */
    -dotraplinkage void __kprobes
    -do_page_fault(struct pt_regs *regs, unsigned long error_code)
    +static inline void __do_page_fault(struct pt_regs *regs, unsigned long address,
    + unsigned long error_code)
    {
    struct vm_area_struct *vma;
    struct task_struct *tsk;
    - unsigned long address;
    struct mm_struct *mm;
    int fault;
    int write = error_code & PF_WRITE;
    @@ -964,9 +959,6 @@ do_page_fault(struct pt_regs *regs, unsigned long error_code)
    tsk = current;
    mm = tsk->mm;

    - /* Get the faulting address: */
    - address = read_cr2();
    -
    /*
    * Detect and handle instructions that would cause a page fault for
    * both a tracked kernel page and a userspace page.
    @@ -1158,3 +1150,22 @@ good_area:

    up_read(&mm->mmap_sem);
    }
    +
    +/*
    + * This routine handles page faults. It determines the address,
    + * and the problem, and then passes it off to one of the appropriate
    + * routines.
    + */
    +dotraplinkage void __kprobes
    +do_page_fault(struct pt_regs *regs, unsigned long error_code)
    +{
    + unsigned long address;
    +
    + /* Get the faulting address: */
    + address = read_cr2();
    +
    + __do_page_fault(regs, address, error_code);
    +
    + if (!user_mode(regs))
    + trace_mm_kernel_pagefault(current, address, error_code);
    +}
    diff --git a/include/trace/events/kmem.h b/include/trace/events/kmem.h
    index a9c87ad..b17cdf3 100644
    --- a/include/trace/events/kmem.h
    +++ b/include/trace/events/kmem.h
    @@ -302,6 +302,29 @@ TRACE_EVENT(mm_page_alloc_extfrag,
    __entry->alloc_migratetype == __entry->fallback_migratetype)
    );

    +TRACE_EVENT(mm_kernel_pagefault,
    +
    + TP_PROTO(struct task_struct *task, unsigned long address,
    + int error_code),
    +
    + TP_ARGS(task, address, error_code),
    +
    + TP_STRUCT__entry(
    + __field(struct task_struct *, task)
    + __field(unsigned long, address)
    + __field(unsigned long, error_code)
    + ),
    +
    + TP_fast_assign(
    + __entry->task = task;
    + __entry->address = address;
    + __entry->error_code = error_code;
    + ),
    +
    + TP_printk("task=%lx, address=%lx, error code=%lx",
    + (unsigned long)__entry->task, (unsigned long)__entry->address,
    + __entry->error_code)
    + );
    #endif /* _TRACE_KMEM_H */

    /* This part must be outside protection */
    --
    1.7.1


    \
     
     \ /
      Last update: 2010-11-11 10:13    [W:3.198 / U:0.208 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site