linux-perf-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Yanteng Si <siyanteng@loongson.cn>
To: peterz@infradead.org
Cc: Yanteng Si <siyanteng@loongson.cn>,
	mingo@redhat.com, acme@kernel.org, mark.rutland@arm.com,
	alexander.shishkin@linux.intel.com, jolsa@kernel.org,
	namhyung@kernel.org, irogers@google.com, adrian.hunter@intel.com,
	linux-perf-users@vger.kernel.org,
	loongson-kernel@lists.loongnix.cn
Subject: [PATCH 00/18] tools perf: fix build warning
Date: Sat,  6 May 2023 19:01:54 +0800	[thread overview]
Message-ID: <cover.1683370076.git.siyanteng@loongson.cn> (raw)

When I try to build perf, a lot of warnings are output, let's fix them.

Yanteng Si (18):
  tools headers UAPI: Sync the linux/in.h with the kernel sources
  tools headers UAPI: Sync the linux/prctl.h with the kernel sources
  tools headers UAPI: Sync the drm/drm.h with the kernel sources
  tools headers UAPI: Sync the i915_drm.h with the kernel sources
  tools headers UAPI: Sync the coresight-pmu headers copy with the
    kernel sources
  tools headers UAPI: Sync the linux/const.h with the kernel headers
  tools headers UAPI: Sync the linux/perf_event.h with the kernel
    headers
  tools include UAPI: Sync the sound/asound.h copy with the kernel
    sources
  tools headers UAPI: Sync the linux/mman.h with the kernel sources
  tools headers UAPI: Sync the unistd with the kernel sources
  tools headers kvm: Sync uapi/{asm/linux} kvm.h headers with the kernel
    sources
  tools arch x86: Sync the disabled-features with the kernel sources
  tools arch x86: Sync the memcpy_64 with the kernel sources
  tools arch x86: Sync the cpufeatures with the kernel sources
  tools arch x86: Sync the msr-index.h copy with the kernel sources
  tools arch x86: Sync the prctl headers with the kernel sources
  tools arch arm64: Sync the perf_regs headers with the kernel sources
  tools arch s390: Sync the ptrace headers with the kernel sources

 tools/arch/arm64/include/uapi/asm/kvm.h       |  36 ++
 tools/arch/arm64/include/uapi/asm/perf_regs.h |  10 +-
 tools/arch/s390/include/uapi/asm/ptrace.h     | 458 ++++++++++++++++++
 tools/arch/x86/include/asm/cpufeatures.h      |  28 +-
 .../arch/x86/include/asm/disabled-features.h  |  24 +-
 tools/arch/x86/include/asm/msr-index.h        |   2 +
 tools/arch/x86/include/uapi/asm/kvm.h         |   3 +
 tools/arch/x86/include/uapi/asm/prctl.h       |  20 +
 tools/arch/x86/lib/memcpy_64.S                |  35 +-
 tools/arch/x86/lib/memset_64.S                |  47 +-
 tools/include/linux/coresight-pmu.h           |  13 -
 tools/include/uapi/asm-generic/unistd.h       |   5 +-
 tools/include/uapi/drm/drm.h                  |  57 ++-
 tools/include/uapi/drm/i915_drm.h             |  25 +-
 tools/include/uapi/linux/const.h              |   2 +-
 tools/include/uapi/linux/in.h                 |   1 +
 tools/include/uapi/linux/kvm.h                |  12 +-
 tools/include/uapi/linux/mman.h               |  14 +
 tools/include/uapi/linux/perf_event.h         |   3 +-
 tools/include/uapi/linux/prctl.h              |   2 +
 tools/include/uapi/sound/asound.h             |  14 +-
 .../perf/arch/s390/entry/syscalls/syscall.tbl |   2 +-
 .../arch/x86/entry/syscalls/syscall_64.tbl    |   2 +
 23 files changed, 716 insertions(+), 99 deletions(-)
 create mode 100644 tools/arch/s390/include/uapi/asm/ptrace.h

-- 
2.31.4


             reply	other threads:[~2023-05-06 11:02 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-06 11:01 Yanteng Si [this message]
2023-05-06 11:01 ` [PATCH 01/18] tools headers UAPI: Sync the linux/in.h with the kernel sources Yanteng Si
2023-05-06 11:01 ` [PATCH 02/18] tools headers UAPI: Sync the linux/prctl.h " Yanteng Si
2023-05-06 11:01 ` [PATCH 03/18] tools headers UAPI: Sync the drm/drm.h " Yanteng Si
2023-05-06 11:01 ` [PATCH 04/18] tools headers UAPI: Sync the i915_drm.h " Yanteng Si
2023-05-06 11:04 ` [PATCH 05/18] tools headers UAPI: Sync the coresight-pmu headers copy " Yanteng Si
2023-05-06 11:04 ` [PATCH 06/18] tools headers UAPI: Sync the linux/const.h with the kernel headers Yanteng Si
2023-05-06 11:04 ` [PATCH 07/18] tools headers UAPI: Sync the linux/perf_event.h " Yanteng Si
2023-05-06 11:04 ` [PATCH 08/18] tools include UAPI: Sync the sound/asound.h copy with the kernel sources Yanteng Si
2023-05-06 11:05 ` [PATCH 09/18] tools headers UAPI: Sync the linux/mman.h " Yanteng Si
2023-05-06 11:05 ` [PATCH 10/18] tools headers UAPI: Sync the unistd " Yanteng Si
2023-05-06 11:05 ` [PATCH 11/18] tools headers kvm: Sync uapi/{asm/linux} kvm.h headers " Yanteng Si
2023-05-06 11:05 ` [PATCH 12/18] tools arch x86: Sync the disabled-features " Yanteng Si
2023-05-06 11:06 ` [PATCH 13/18] tools arch x86: Sync the memcpy_64 " Yanteng Si
2023-05-06 11:06 ` [PATCH 14/18] tools arch x86: Sync the cpufeatures " Yanteng Si
2023-05-06 11:06 ` [PATCH 15/18] tools arch x86: Sync the msr-index.h copy " Yanteng Si
2023-05-06 11:06 ` [PATCH 16/18] tools arch x86: Sync the prctl headers " Yanteng Si
2023-05-06 11:06   ` Yanteng Si
2023-05-06 11:06 ` [PATCH 18/18] tools arch s390: Sync the ptrace " Yanteng Si

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=cover.1683370076.git.siyanteng@loongson.cn \
    --to=siyanteng@loongson.cn \
    --cc=acme@kernel.org \
    --cc=adrian.hunter@intel.com \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=irogers@google.com \
    --cc=jolsa@kernel.org \
    --cc=linux-perf-users@vger.kernel.org \
    --cc=loongson-kernel@lists.loongnix.cn \
    --cc=mark.rutland@arm.com \
    --cc=mingo@redhat.com \
    --cc=namhyung@kernel.org \
    --cc=peterz@infradead.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).