mirror of https://lore.kernel.org/lkml/
 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>,
	Ian Rogers <irogers@google.com>,
	Adrian Hunter <adrian.hunter@intel.com>,
	Kan Liang <kan.liang@linux.intel.com>,
	Clark Williams <williams@redhat.com>,
	linux-kernel@vger.kernel.org, linux-perf-users@vger.kernel.org,
	Arnaldo Carvalho de Melo <acme@kernel.org>,
	Alexander Monakov <amonakov@ispras.ru>,
	Ilkka Koskinen <ilkka@os.amperecomputing.com>,
	James Clark <james.clark@linaro.org>,
	Yang Jihong <yangjihong@bytedance.com>,
	Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: [GIT PULL] perf tools fixes for v6.12
Date: Tue,  8 Oct 2024 10:55:49 -0300	[thread overview]
Message-ID: <20241008135549.988547-1-acme@kernel.org> (raw)

Hi Linus,

	Please consider pulling,

Best regards,

- Arnaldo

The following changes since commit eee280841e1c8188fe9af5536c193d07d184e874:

  Merge tag 'mm-hotfixes-stable-2024-09-27-09-45' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm (2024-09-27 10:27:22 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/perf/perf-tools.git tags/perf-tools-fixes-for-v6.12-1-2024-10-08

for you to fetch changes up to e934a35e3cc1fe0bfb1bc771e64f3ba6e70c40e2:

  perf cs-etm: Fix the assert() to handle captured and unprocessed cpu trace (2024-10-02 18:21:49 -0300)

----------------------------------------------------------------
perf tools fixes for v6.12:

- Fix an assert() to handle captured and unprocessed ARM CoreSight CPU traces.

- Fix static build compilation error when libdw isn't installed or is too old.

- Add missing include when building with !HAVE_DWARF_GETLOCATIONS_SUPPORT.

- Add missing refcount put on 32-bit DSOs.

- Fix disassembly of user space binaries by setting the binary_type of DSO when
  loading.

- Update headers with the kernel sources, including asound.h, sched.h, fcntl,
  msr-index.h, irq_vectors.h, socket.h, list_sort.c and arm64's cputype.h.

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

----------------------------------------------------------------
Arnaldo Carvalho de Melo (11):
      Merge remote-tracking branch 'torvalds/master' into perf-tools
      tools include UAPI: Sync sound/asound.h copy with the kernel sources
      tools include UAPI: Sync linux/sched.h copy with the kernel sources
      tools include UAPI: Sync linux/fcntl.h copy with the kernel sources
      tools arch x86: Sync the msr-index.h copy with the kernel sources
      perf trace beauty: Update the arch/x86/include/asm/irq_vectors.h copy with the kernel sources
      tools headers UAPI: Sync the linux/in.h with the kernel sources
      perf beauty: Update copy of linux/socket.h with the kernel sources
      tools check_headers.sh: Add check variant that excludes some hunks
      perf tools: Cope with differences for lib/list_sort.c copy from the kernel
      tools headers arm64: Sync arm64's cputype.h with the kernel sources

Ian Rogers (1):
      perf vdso: Missed put on 32-bit dsos

Ilkka Koskinen (1):
      perf cs-etm: Fix the assert() to handle captured and unprocessed cpu trace

James Clark (1):
      perf dwarf-aux: Fix build with !HAVE_DWARF_GETLOCATIONS_SUPPORT

Namhyung Kim (1):
      perf symbol: Set binary_type of dso when loading

Yang Jihong (2):
      perf build: Fix static compilation error when libdw is not installed
      perf build: Fix build feature-dwarf_getlocations fail for old libdw

 tools/arch/arm64/include/asm/cputype.h             |  2 +
 tools/arch/x86/include/asm/msr-index.h             |  2 +
 tools/build/feature/Makefile                       |  5 +-
 tools/include/uapi/linux/in.h                      |  2 +-
 tools/perf/Makefile.config                         |  7 +-
 .../perf/check-header_ignore_hunks/lib/list_sort.c | 31 ++++++++
 tools/perf/check-headers.sh                        | 29 +++++++-
 .../beauty/arch/x86/include/asm/irq_vectors.h      |  4 +-
 tools/perf/trace/beauty/fs_at_flags.sh             |  5 ++
 tools/perf/trace/beauty/include/linux/socket.h     |  1 +
 tools/perf/trace/beauty/include/uapi/linux/fcntl.h | 84 +++++++++++++++-------
 tools/perf/trace/beauty/include/uapi/linux/sched.h |  1 +
 .../perf/trace/beauty/include/uapi/sound/asound.h  | 17 ++++-
 tools/perf/trace/beauty/msg_flags.c                |  4 ++
 tools/perf/util/cs-etm.c                           |  2 +-
 tools/perf/util/dwarf-aux.h                        |  1 +
 tools/perf/util/symbol.c                           |  3 +
 tools/perf/util/vdso.c                             |  4 +-
 18 files changed, 170 insertions(+), 34 deletions(-)
 create mode 100644 tools/perf/check-header_ignore_hunks/lib/list_sort.c

             reply	other threads:[~2024-10-08 13:56 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-08 13:55 Arnaldo Carvalho de Melo [this message]
2024-10-08 18:32 ` 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=20241008135549.988547-1-acme@kernel.org \
    --to=acme@kernel.org \
    --cc=acme@redhat.com \
    --cc=adrian.hunter@intel.com \
    --cc=amonakov@ispras.ru \
    --cc=ilkka@os.amperecomputing.com \
    --cc=irogers@google.com \
    --cc=james.clark@linaro.org \
    --cc=jolsa@kernel.org \
    --cc=kan.liang@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-perf-users@vger.kernel.org \
    --cc=mingo@kernel.org \
    --cc=namhyung@kernel.org \
    --cc=tglx@linutronix.de \
    --cc=torvalds@linux-foundation.org \
    --cc=williams@redhat.com \
    --cc=yangjihong@bytedance.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

all inboxes | Powered by JetHome®