From: Ingo Molnar <mingo@kernel.org>
To: Arnaldo Carvalho de Melo <acme@kernel.org>
Cc: linux-kernel@vger.kernel.org, linux-perf-users@vger.kernel.org,
Adrian Hunter <adrian.hunter@intel.com>,
Akemi Yagi <toracat@elrepo.org>, Alan Bartlett <ajb@elrepo.org>,
Alexander Shishkin <alexander.shishkin@linux.intel.com>,
Andi Kleen <ak@linux.intel.com>,
Andy Lutomirski <luto@kernel.org>,
David Ahern <dsahern@gmail.com>,
Hendrik Brueckner <brueckner@linux.vnet.ibm.com>,
Jiri Olsa <jolsa@redhat.com>,
Krister Johansen <kjlx@templeofstupid.com>,
Li Bin <huawei.libin@huawei.com>,
Mengting Zhang <zhangmengting@huawei.com>,
Milian Wolff <milian.wolff@kdab.com>,
Namhyung Kim <namhyung@kernel.org>,
Peter Zijlstra <peterz@infradead.org>,
Taeung Song <treeze.taeung@gmail.com>,
Thomas-Mich Richter <tmricht@linux.vnet.ibm.com>,
Wang Nan <wangnan0@huawei.com>, Yao Jin <yao.jin@linux.intel.com>,
Zvonko Kosic <zvonko.kosic@de.ibm.com>,
Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: Re: [GIT PULL 0/7] perf/urgent fixes
Date: Fri, 29 Sep 2017 19:33:05 +0200 [thread overview]
Message-ID: <20170929173305.vyabhunztrfk7x7n@gmail.com> (raw)
In-Reply-To: <20170929160017.29335-1-acme@kernel.org>
* Arnaldo Carvalho de Melo <acme@kernel.org> wrote:
> Hi Ingo,
>
> Please consider pulling,
>
> - Arnaldo
>
> Test results at the end of this message, as usual.
>
> The following changes since commit b130a699c07155a1d6ef7d971a5f3bf0e3818d5a:
>
> Merge tag 'perf-urgent-for-mingo-4.14-20170912' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/urgent (2017-09-13 09:25:10 +0200)
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git tags/perf-urgent-for-mingo-4.14-20170928
>
> for you to fetch changes up to 5357413f5c067f60933e4b8d79d483fbe62b2bb5:
>
> perf test: Fix vmlinux failure on s390x part 2 (2017-09-28 13:01:42 -0300)
>
> ----------------------------------------------------------------
> perf/urgent fixes:
>
> - Fix syscalltbl build failure (Akemi Yagi)
>
> - Fix attr.exclude_kernel setting for default cycles:p, this time for
> !root with kernel.perf_event_paranoid = -1 (Arnaldo Carvalho de Melo)
>
> - Sync kernel ABI headers with tooling headers (Ingo Molnar)
>
> - Remove misleading debug messages with --call-graph option (Mengting Zhang)
>
> - Revert vmlinux symbol resolution patches for s390x (Thomas Richter)
>
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
>
> ----------------------------------------------------------------
> Akemi Yagi (1):
> perf tools: Fix syscalltbl build failure
>
> Arnaldo Carvalho de Melo (2):
> perf tools: Get all of tools/{arch,include}/ in the MANIFEST
> perf evsel: Fix attr.exclude_kernel setting for default cycles:p
>
> Ingo Molnar (1):
> tools include: Sync kernel ABI headers with tooling headers
>
> Mengting Zhang (1):
> perf report: Fix debug messages with --call-graph option
>
> Thomas Richter (2):
> perf test: Fix vmlinux failure on s390x
> perf test: Fix vmlinux failure on s390x part 2
>
> tools/arch/s390/include/uapi/asm/kvm.h | 6 ++
> tools/arch/x86/include/asm/cpufeatures.h | 2 +
> tools/arch/x86/include/asm/disabled-features.h | 4 +-
> tools/include/asm-generic/hugetlb_encode.h | 34 ++++++++++
> tools/include/uapi/asm-generic/mman-common.h | 14 +----
> tools/include/uapi/drm/drm.h | 22 +++++++
> tools/include/uapi/drm/i915_drm.h | 51 ++++++++++++++-
> tools/include/uapi/linux/bpf.h | 32 ++++++----
> tools/include/uapi/linux/kvm.h | 3 +-
> tools/include/uapi/linux/mman.h | 24 ++++++-
> tools/perf/MANIFEST | 87 +-------------------------
> tools/perf/arch/s390/util/Build | 1 -
> tools/perf/arch/s390/util/sym-handling.c | 29 ---------
> tools/perf/util/callchain.c | 35 ++++++-----
> tools/perf/util/evsel.c | 7 ++-
> tools/perf/util/symbol-elf.c | 8 +--
> tools/perf/util/symbol.h | 3 -
> tools/perf/util/syscalltbl.c | 2 +-
> 18 files changed, 195 insertions(+), 169 deletions(-)
> create mode 100644 tools/include/asm-generic/hugetlb_encode.h
> delete mode 100644 tools/perf/arch/s390/util/sym-handling.c
Pulled, thanks a lot Arnaldo!
Ingo
next prev parent reply other threads:[~2017-09-29 17:33 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-29 16:00 Arnaldo Carvalho de Melo
2017-09-29 16:00 ` [PATCH 1/7] perf tools: Get all of tools/{arch,include}/ in the MANIFEST Arnaldo Carvalho de Melo
2017-09-29 16:00 ` [PATCH 2/7] tools include: Sync kernel ABI headers with tooling headers Arnaldo Carvalho de Melo
2017-09-29 16:00 ` [PATCH 3/7] perf evsel: Fix attr.exclude_kernel setting for default cycles:p Arnaldo Carvalho de Melo
2017-09-29 16:00 ` [PATCH 4/7] perf report: Fix debug messages with --call-graph option Arnaldo Carvalho de Melo
2017-09-29 16:00 ` [PATCH 5/7] perf tools: Fix syscalltbl build failure Arnaldo Carvalho de Melo
2017-09-29 16:00 ` [PATCH 6/7] perf test: Fix vmlinux failure on s390x Arnaldo Carvalho de Melo
2017-09-29 16:00 ` [PATCH 7/7] perf test: Fix vmlinux failure on s390x part 2 Arnaldo Carvalho de Melo
2017-09-29 17:33 ` Ingo Molnar [this message]
-- strict thread matches above, loose matches on Subject: below --
2019-04-19 12:30 [GIT PULL 0/7] perf/urgent fixes Arnaldo Carvalho de Melo
2019-04-19 17:11 ` Ingo Molnar
2019-04-12 14:29 Arnaldo Carvalho de Melo
2019-04-12 16:33 ` Ingo Molnar
2019-04-12 14:22 Arnaldo Carvalho de Melo
2019-01-21 18:35 Arnaldo Carvalho de Melo
2019-01-22 11:30 ` Ingo Molnar
2018-11-21 14:24 Arnaldo Carvalho de Melo
2018-11-21 14:58 ` Ingo Molnar
2018-09-12 18:55 Arnaldo Carvalho de Melo
2018-09-12 19:10 ` Ingo Molnar
2018-05-31 10:32 Arnaldo Carvalho de Melo
2018-05-31 10:40 ` Ingo Molnar
2015-04-27 17:04 Arnaldo Carvalho de Melo
2015-05-01 6:32 ` Ingo Molnar
2015-02-25 21:05 Arnaldo Carvalho de Melo
2014-04-30 15:32 Jiri Olsa
2014-05-01 6:25 ` Ingo Molnar
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=20170929173305.vyabhunztrfk7x7n@gmail.com \
--to=mingo@kernel.org \
--cc=acme@kernel.org \
--cc=acme@redhat.com \
--cc=adrian.hunter@intel.com \
--cc=ajb@elrepo.org \
--cc=ak@linux.intel.com \
--cc=alexander.shishkin@linux.intel.com \
--cc=brueckner@linux.vnet.ibm.com \
--cc=dsahern@gmail.com \
--cc=huawei.libin@huawei.com \
--cc=jolsa@redhat.com \
--cc=kjlx@templeofstupid.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=luto@kernel.org \
--cc=milian.wolff@kdab.com \
--cc=namhyung@kernel.org \
--cc=peterz@infradead.org \
--cc=tmricht@linux.vnet.ibm.com \
--cc=toracat@elrepo.org \
--cc=treeze.taeung@gmail.com \
--cc=wangnan0@huawei.com \
--cc=yao.jin@linux.intel.com \
--cc=zhangmengting@huawei.com \
--cc=zvonko.kosic@de.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome