All of lore.kernel.org
 help / color / mirror / Atom feed
* + mm-page_owner-skip-unnecessary-stack_trace-entries.patch added to -mm tree
@ 2017-08-30 20:29 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2017-08-30 20:29 UTC (permalink / raw)
  To: guptap, catalin.marinas, iamjoonsoo.kim, mhocko, rmk+kernel,
	vbabka, will.deacon, mm-commits


The patch titled
     Subject: mm, page_owner: skip unnecessary stack_trace entries
has been added to the -mm tree.  Its filename is
     mm-page_owner-skip-unnecessary-stack_trace-entries.patch

This patch should soon appear at
    http://ozlabs.org/~akpm/mmots/broken-out/mm-page_owner-skip-unnecessary-stack_trace-entries.patch
and later at
    http://ozlabs.org/~akpm/mmotm/broken-out/mm-page_owner-skip-unnecessary-stack_trace-entries.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

The -mm tree is included into linux-next and is updated
there every 3-4 working days

------------------------------------------------------
From: Prakash Gupta <guptap@codeaurora.org>
Subject: mm, page_owner: skip unnecessary stack_trace entries

The page_owner stacktrace always begin as follows:

[<ffffff987bfd48f4>] save_stack+0x40/0xc8
[<ffffff987bfd4da8>] __set_page_owner+0x3c/0x6c

These two entries do not provide any useful information and limits the
available stacktrace depth.  The page_owner stacktrace was skipping caller
function from stack entries but this was missed with commit f2ca0b557107
("mm/page_owner: use stackdepot to store stacktrace")

Example page_owner entry after the patch:

Page allocated via order 0, mask 0x8(ffffff80085fb714)
PFN 654411 type Movable Block 639 type CMA Flags 0x0(ffffffbe5c7f12c0)
[<ffffff9b64989c14>] post_alloc_hook+0x70/0x80
...
[<ffffff9b651216e8>] msm_comm_try_state+0x5f8/0x14f4
[<ffffff9b6512486c>] msm_vidc_open+0x5e4/0x7d0
[<ffffff9b65113674>] msm_v4l2_open+0xa8/0x224

Link: http://lkml.kernel.org/r/1504078343-28754-2-git-send-email-guptap@codeaurora.org
Fixes: f2ca0b557107 ("mm/page_owner: use stackdepot to store stacktrace")
Signed-off-by: Prakash Gupta <guptap@codeaurora.org>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Cc: Michal Hocko <mhocko@suse.com>
Cc: Russell King <rmk+kernel@arm.linux.org.uk>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Will Deacon <will.deacon@arm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 mm/page_owner.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN mm/page_owner.c~mm-page_owner-skip-unnecessary-stack_trace-entries mm/page_owner.c
--- a/mm/page_owner.c~mm-page_owner-skip-unnecessary-stack_trace-entries
+++ a/mm/page_owner.c
@@ -139,7 +139,7 @@ static noinline depot_stack_handle_t sav
 		.nr_entries = 0,
 		.entries = entries,
 		.max_entries = PAGE_OWNER_STACK_DEPTH,
-		.skip = 0
+		.skip = 2
 	};
 	depot_stack_handle_t handle;
 
_

Patches currently in -mm which might be from guptap@codeaurora.org are

arm64-stacktrace-avoid-listing-stacktrace-functions-in-stacktrace.patch
mm-page_owner-skip-unnecessary-stack_trace-entries.patch


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-08-30 20:29 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-30 20:29 + mm-page_owner-skip-unnecessary-stack_trace-entries.patch added to -mm tree akpm

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.