From: Arnaldo Carvalho de Melo <acme@kernel.org>
To: Ian Rogers <irogers@google.com>
Cc: Thomas Richter <tmricht@linux.ibm.com>,
jolsa@kernel.org, linux-kernel@vger.kernel.org,
linux-perf-users@vger.kernel.org, leo.yan@linaro.org,
svens@linux.ibm.com, gor@linux.ibm.com, sumanthk@linux.ibm.com,
hca@linux.ibm.com
Subject: Re: [PATCH] perf/test: reduce run time of perf test Test java symbol
Date: Tue, 9 May 2023 15:10:58 -0300 [thread overview]
Message-ID: <ZFqMsjJg00zmQyJG@kernel.org> (raw)
In-Reply-To: <CAP-5=fVC1bAMk5gOGSXi0sHdetdLHGT2tqW43dxTTyJ3jRz8QA@mail.gmail.com>
Em Tue, May 09, 2023 at 10:34:44AM -0700, Ian Rogers escreveu:
> On Tue, May 9, 2023 at 6:19 AM Thomas Richter <tmricht@linux.ibm.com> wrote:
> >
> > Test case Test java symbol might run a long time. On Fedora 38 the
> > run time is very, very long:
> >
> > Output before:
> > # time ./perf test 108
> > 108: Test java symbol : Ok
> > real 22m15.775s
> > user 3m42.584s
> > sys 4m30.685s
> > #
> >
> > The reason is a lookup for the server for debug symbols as shown in
> > # cat /etc/debuginfod/elfutils.urls
> > https://debuginfod.fedoraproject.org/
> > #
> > This lookup is done for every symbol/sample, so about 3500 lookups
> > will take place.
> > To omit this lookup, which is not needed, unset environment variable
> > DEBUGINFOD_URLS=''.
> >
> > Output after:
> > # time ./perf test 108
> > 108: Test java symbol : Ok
> >
> > real 0m6.242s
> > user 0m4.982s
> > sys 0m3.243s
> > #
> >
> > Signed-off-by: Thomas Richter <tmricht@linux.ibm.com>
> > Cc: leo.yan@linaro.org
> > Cc: irogers@google.com
> > ---
> > tools/perf/tests/shell/test_java_symbol.sh | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/tools/perf/tests/shell/test_java_symbol.sh b/tools/perf/tests/shell/test_java_symbol.sh
> > index 90cea8811926..499539d1c479 100755
> > --- a/tools/perf/tests/shell/test_java_symbol.sh
> > +++ b/tools/perf/tests/shell/test_java_symbol.sh
> > @@ -56,7 +56,7 @@ if [ $? -ne 0 ]; then
> > exit 1
> > fi
> >
> > -if ! perf inject -i $PERF_DATA -o $PERF_INJ_DATA -j; then
> > +if ! DEBUGINFOD_URLS='' perf inject -i $PERF_DATA -o $PERF_INJ_DATA -j; then
>
> Jiri, is this the best way to workaround a debuginfod slowness?
I noticed this delay, It is good that someone worked on rootcausing this
excessive delay, thanks Thomas.
I'll test it now.
- Arnaldo
next prev parent reply other threads:[~2023-05-09 18:12 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-09 13:18 [PATCH] perf/test: reduce run time of perf test Test java symbol Thomas Richter
2023-05-09 17:34 ` Ian Rogers
2023-05-09 18:10 ` Arnaldo Carvalho de Melo [this message]
2023-05-09 18:16 ` Arnaldo Carvalho de Melo
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=ZFqMsjJg00zmQyJG@kernel.org \
--to=acme@kernel.org \
--cc=gor@linux.ibm.com \
--cc=hca@linux.ibm.com \
--cc=irogers@google.com \
--cc=jolsa@kernel.org \
--cc=leo.yan@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=sumanthk@linux.ibm.com \
--cc=svens@linux.ibm.com \
--cc=tmricht@linux.ibm.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 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.