From: Steven Rostedt <rostedt@goodmis.org>
To: yalin wang <yalin.wang2010@gmail.com>
Cc: mingo@redhat.com, akpm@linux-foundation.org,
ebru.akagunduz@gmail.com, riel@redhat.com,
kirill.shutemov@linux.intel.com, vbabka@suse.cz,
jmarchan@redhat.com, mgorman@techsingularity.net,
willy@linux.intel.com, linux-kernel@vger.kernel.org,
linux-mm@kvack.org
Subject: Re: [PATCH V4] mm: fix kernel crash in khugepaged thread
Date: Thu, 12 Nov 2015 09:29:23 -0500 [thread overview]
Message-ID: <20151112092923.19ee53dd@gandalf.local.home> (raw)
In-Reply-To: <1447316462-19645-1-git-send-email-yalin.wang2010@gmail.com>
On Thu, 12 Nov 2015 16:21:02 +0800
yalin wang <yalin.wang2010@gmail.com> wrote:
> This crash is caused by NULL pointer deference, in page_to_pfn() marco,
> when page == NULL :
>
> [ 182.639154 ] Unable to handle kernel NULL pointer dereference at virtual address 00000000
> add the trace point with TP_CONDITION(page),
I wonder if we still want to trace even if page is NULL?
> avoid trace NULL page.
>
> Signed-off-by: yalin wang <yalin.wang2010@gmail.com>
> ---
> include/trace/events/huge_memory.h | 20 ++++++++++++--------
> mm/huge_memory.c | 6 +++---
> 2 files changed, 15 insertions(+), 11 deletions(-)
>
> diff --git a/include/trace/events/huge_memory.h b/include/trace/events/huge_memory.h
> index 11c59ca..727647b 100644
> --- a/include/trace/events/huge_memory.h
> +++ b/include/trace/events/huge_memory.h
> @@ -45,12 +45,14 @@ SCAN_STATUS
> #define EM(a, b) {a, b},
> #define EMe(a, b) {a, b}
>
> -TRACE_EVENT(mm_khugepaged_scan_pmd,
> +TRACE_EVENT_CONDITION(mm_khugepaged_scan_pmd,
>
> - TP_PROTO(struct mm_struct *mm, unsigned long pfn, bool writable,
> + TP_PROTO(struct mm_struct *mm, struct page *page, bool writable,
> bool referenced, int none_or_zero, int status, int unmapped),
>
> - TP_ARGS(mm, pfn, writable, referenced, none_or_zero, status, unmapped),
> + TP_ARGS(mm, page, writable, referenced, none_or_zero, status, unmapped),
> +
> + TP_CONDITION(page),
>
> TP_STRUCT__entry(
> __field(struct mm_struct *, mm)
> @@ -64,7 +66,7 @@ TRACE_EVENT(mm_khugepaged_scan_pmd,
>
> TP_fast_assign(
> __entry->mm = mm;
> - __entry->pfn = pfn;
> + __entry->pfn = page_to_pfn(page);
Instead of the condition, we could have:
__entry->pfn = page ? page_to_pfn(page) : -1;
But if there's no reason to do the tracepoint if page is NULL, then
this patch is fine. I'm just throwing out this idea.
-- Steve
> __entry->writable = writable;
> __entry->referenced = referenced;
> __entry->none_or_zero = none_or_zero;
> @@ -106,12 +108,14 @@ TRACE_EVENT(mm_collapse_huge_page,
> __print_symbolic(__entry->status, SCAN_STATUS))
> );
>
> -TRACE_EVENT(mm_collapse_huge_page_isolate,
> +TRACE_EVENT_CONDITION(mm_collapse_huge_page_isolate,
>
> - TP_PROTO(unsigned long pfn, int none_or_zero,
> + TP_PROTO(struct page *page, int none_or_zero,
> bool referenced, bool writable, int status),
>
> - TP_ARGS(pfn, none_or_zero, referenced, writable, status),
> + TP_ARGS(page, none_or_zero, referenced, writable, status),
> +
> + TP_CONDITION(page),
>
> TP_STRUCT__entry(
> __field(unsigned long, pfn)
\
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2015-11-12 14:29 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-12 8:21 yalin wang
2015-11-12 14:29 ` Steven Rostedt [this message]
2015-11-13 10:47 ` Vlastimil Babka
2015-11-13 11:54 ` yalin wang
2015-11-13 14:01 ` Steven Rostedt
2015-11-16 1:35 ` yalin wang
2015-11-16 10:16 ` Vlastimil Babka
2015-11-16 14:25 ` Steven Rostedt
2015-11-17 2:21 ` yalin wang
2015-11-17 2:43 ` Steven Rostedt
2015-11-17 3:58 ` yalin wang
2015-11-17 7:43 ` Vlastimil Babka
2015-11-16 14:22 ` Steven Rostedt
2015-11-13 8:41 Hillf Danton
2015-11-13 10:24 ` yalin wang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20151112092923.19ee53dd@gandalf.local.home \
--to=rostedt@goodmis.org \
--cc=akpm@linux-foundation.org \
--cc=ebru.akagunduz@gmail.com \
--cc=jmarchan@redhat.com \
--cc=kirill.shutemov@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mgorman@techsingularity.net \
--cc=mingo@redhat.com \
--cc=riel@redhat.com \
--cc=vbabka@suse.cz \
--cc=willy@linux.intel.com \
--cc=yalin.wang2010@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox