From: Yafang Shao <laoar.shao@gmail.com>
To: Tony Jones <tonyj@suse.de>
Cc: Peter Zijlstra <peterz@infradead.org>,
acme@kernel.org, namhyung@kernel.org,
Andrew Morton <akpm@linux-foundation.org>,
jolsa@redhat.com, mingo@redhat.com,
Linux MM <linux-mm@kvack.org>,
Florian Schmidt <florian.schmidt@nutanix.com>,
Daniel Jordan <daniel.m.jordan@oracle.com>,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 1/2] perf script python: integrate page reclaim analyze script
Date: Thu, 26 Sep 2019 12:37:28 +0800 [thread overview]
Message-ID: <CALOAHbBQxCvx2pR1VpsarxQF0RNpPFJ8i85CDSEjFXk0F-+K3w@mail.gmail.com> (raw)
In-Reply-To: <49489979-0bf1-881c-ebd5-87d0892a7da4@suse.de>
On Thu, Sep 26, 2019 at 11:36 AM Tony Jones <tonyj@suse.de> wrote:
>
> On 9/25/19 6:56 PM, Tony Jones wrote:
> > On 9/18/19 7:38 AM, Yafang Shao wrote:
> >> A new perf script page-reclaim is introduced in this patch. This new script
> >> is used to report the page reclaim details. The possible usage of this
> >> script is as bellow,
> >> - identify latency spike caused by direct reclaim
> >> - whehter the latency spike is relevant with pageout
> >> - why is page reclaim requested, i.e. whether it is because of memory
> >> fragmentation
> >> - page reclaim efficiency
> >> etc
> >> In the future we may also enhance it to analyze the memcg reclaim.
> >>
> >> Bellow is how to use this script,
> >> # Record, one of the following
> >> $ perf record -e 'vmscan:mm_vmscan_*' ./workload
> >> $ perf script record page-reclaim
> >>
> >> # Report
> >> $ perf script report page-reclaim
> >>
> >> # Report per process latency
> >> $ perf script report page-reclaim -- -p
> >
> >
> > I tested it with global-dhp__pagereclaim-performance from mmtests and got what appears to be reasonable results and the output looks correct and useful. However I'm not a vm expert so I can't comment further. Hopefully someone on linux-mm can give more specific feedback.
> >
> > There is one issue with Python3, see below. I didn't test with Python2.
>
> Ok, I guess this wasn't actually tested with Python3 as itervalues() is Python2 only. Any scripts need to work with both Python2.6+ and Python3.
>
> # perf script -i /tmp/perf.out -s page-reclaim.py -- -p
> ...
>
> Traceback (most recent call last):
> File "page-reclaim.py", line 305, in trace_end
> i.display_proc(),
> File "page-reclaim.py", line 268, in display_proc
> print_proc_latency(sorted(self.stat.stats['latency'].itervalues(),
> AttributeError: 'dict' object has no attribute 'itervalues'
> Fatal Python error: problem in Python trace event handler
>
> Use a try/except to handle this.
>
Hi Tony,
Thanks for your review.
I only verified it with python2.
I will improve it to make it work with both python2.6+ and python3.
Thanks
Yafang
next prev parent reply other threads:[~2019-09-26 4:38 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-18 14:38 [PATCH 0/2] introduce new perf-script page-reclaim Yafang Shao
2019-09-18 14:38 ` [PATCH 1/2] perf script python: integrate page reclaim analyze script Yafang Shao
2019-09-26 1:56 ` Tony Jones
2019-09-26 3:36 ` Tony Jones
2019-09-26 4:37 ` Yafang Shao [this message]
2019-09-26 4:42 ` Yafang Shao
2019-09-18 14:38 ` [PATCH 2/2] tracing, vmscan: add comments for perf script page-reclaim Yafang Shao
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=CALOAHbBQxCvx2pR1VpsarxQF0RNpPFJ8i85CDSEjFXk0F-+K3w@mail.gmail.com \
--to=laoar.shao@gmail.com \
--cc=acme@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=daniel.m.jordan@oracle.com \
--cc=florian.schmidt@nutanix.com \
--cc=jolsa@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mingo@redhat.com \
--cc=namhyung@kernel.org \
--cc=peterz@infradead.org \
--cc=tonyj@suse.de \
/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