linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Arnaldo Carvalho de Melo <acme@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Ingo Molnar <mingo@kernel.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	Jiri Olsa <jolsa@kernel.org>, Namhyung Kim <namhyung@kernel.org>,
	linux-kernel@vger.kernel.org, linux-perf-users@vger.kernel.org,
	Arnaldo Carvalho de Melo <acme@kernel.org>,
	Adrian Hunter <adrian.hunter@intel.com>,
	Andreas Gerstmayr <agerstmayr@redhat.com>,
	Steven Rostedt <rostedt@goodmis.org>,
	Tom Zanussi <zanussi@kernel.org>,
	Tzvetomir Stoyanov <tz.stoyanov@gmail.com>,
	Wei Li <liwei391@huawei.com>
Subject: [GIT PULL] Second batch of perf tooling fixes for v5.8
Date: Tue,  7 Jul 2020 17:24:50 -0300	[thread overview]
Message-ID: <20200707202450.23345-1-acme@kernel.org> (raw)

Hi Linus,

	Please consider pulling,

Best regards,

- Arnaldo

The following changes since commit cdd3bb54332f82295ed90cd0c09c78cd0c0ee822:

  Merge tag 'm68knommu-for-v5.8-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu (2020-07-02 22:56:29 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git tags/perf-tools-fixes-2020-07-07

for you to fetch changes up to bee9ca1c8a237ca178f281062bf162637071ab04:

  perf report TUI: Remove needless 'dummy' event from menu (2020-07-06 09:24:02 -0300)

----------------------------------------------------------------
Second batch of perf tooling fixes for v5.8:

- Intel PT fixes for PEBS-via-PT with registers.

- Fixes for Intel PT python based GUI.

- Avoid duplicated sideband events with Intel PT in system wide tracing.

- Remove needless 'dummy' event from TUI menu, used when synthesizing
  meta data events for pre-existing processes.

- Fix corner case segfault when pressing enter in a screen without
  entries in the TUI for report/top.

- Fixes for time stamp handling in libtraceevent.

- Explicitly set utf-8 encoding in perf flamegraph.

- Update arch/x86/lib/memcpy_64.S copy used in 'perf bench mem memcpy',
  silencing perf build warning.

Adrian Hunter (9):
      perf scripts python: export-to-postgresql.py: Fix struct.pack() int argument
      perf record: Fix duplicated sideband events with Intel PT system wide tracing
      perf scripts python: exported-sql-viewer.py: Fix unexpanded 'Find' result
      perf scripts python: exported-sql-viewer.py: Fix zero id in call graph 'Find' result
      perf scripts python: exported-sql-viewer.py: Fix zero id in call tree 'Find' result
      perf scripts python: exported-sql-viewer.py: Fix time chart call tree
      perf intel-pt: Fix recording PEBS-via-PT with registers
      perf intel-pt: Fix displaying PEBS-via-PT with registers
      perf intel-pt: Fix PEBS sample for XMM registers

Andreas Gerstmayr (1):
      perf flamegraph: Explicitly set utf-8 encoding

Arnaldo Carvalho de Melo (3):
      Merge remote-tracking branch 'torvalds/master' into perf/urgent
      tools arch: Update arch/x86/lib/memcpy_64.S copy used in 'perf bench mem memcpy'
      perf report TUI: Remove needless 'dummy' event from menu

Steven Rostedt (Red Hat) (1):
      tools lib traceevent: Add API to read time information from kbuffer

Tom Zanussi (1):
      tools lib traceevent: Add proper KBUFFER_TYPE_TIME_STAMP handling

Wei Li (1):
      perf report TUI: Fix segmentation fault in perf_evsel__hists_browse()

 tools/arch/x86/lib/memcpy_64.S                    |  4 +++
 tools/lib/traceevent/kbuffer-parse.c              | 43 +++++++++++++++++++----
 tools/lib/traceevent/kbuffer.h                    |  2 ++
 tools/perf/arch/x86/util/intel-pt.c               |  1 +
 tools/perf/builtin-record.c                       | 18 +++++-----
 tools/perf/builtin-script.c                       |  2 +-
 tools/perf/scripts/python/export-to-postgresql.py |  2 +-
 tools/perf/scripts/python/exported-sql-viewer.py  | 11 ++++--
 tools/perf/scripts/python/flamegraph.py           |  8 +++--
 tools/perf/ui/browsers/hists.c                    | 36 +++++++++++++++----
 tools/perf/util/evlist.c                          | 12 +++++++
 tools/perf/util/evlist.h                          |  1 +
 tools/perf/util/evsel.c                           | 12 ++-----
 tools/perf/util/evsel.h                           |  6 ++++
 tools/perf/util/intel-pt.c                        |  5 +--
 15 files changed, 123 insertions(+), 40 deletions(-)

             reply	other threads:[~2020-07-07 20:25 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-07 20:24 Arnaldo Carvalho de Melo [this message]
2020-07-08  0:05 ` [GIT PULL] Second batch of perf tooling fixes for v5.8 pr-tracker-bot

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=20200707202450.23345-1-acme@kernel.org \
    --to=acme@kernel.org \
    --cc=adrian.hunter@intel.com \
    --cc=agerstmayr@redhat.com \
    --cc=jolsa@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-perf-users@vger.kernel.org \
    --cc=liwei391@huawei.com \
    --cc=mingo@kernel.org \
    --cc=namhyung@kernel.org \
    --cc=rostedt@goodmis.org \
    --cc=tglx@linutronix.de \
    --cc=torvalds@linux-foundation.org \
    --cc=tz.stoyanov@gmail.com \
    --cc=zanussi@kernel.org \
    /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;
as well as URLs for NNTP newsgroup(s).