linux-perf-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/18] tools perf: fix build warning
@ 2023-05-06 11:01 Yanteng Si
  2023-05-06 11:01 ` [PATCH 01/18] tools headers UAPI: Sync the linux/in.h with the kernel sources Yanteng Si
                   ` (16 more replies)
  0 siblings, 17 replies; 19+ messages in thread
From: Yanteng Si @ 2023-05-06 11:01 UTC (permalink / raw)
  To: peterz
  Cc: Yanteng Si, mingo, acme, mark.rutland, alexander.shishkin, jolsa,
	namhyung, irogers, adrian.hunter, linux-perf-users,
	loongson-kernel

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


^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2023-05-06 11:07 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-06 11:01 [PATCH 00/18] tools perf: fix build warning Yanteng Si
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

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).