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

v2:

* Drop <tools arch s390: Sync the ptrace headers with the kernel sources>
   Because ptrace.h has been fixed in other tree, detail see:
    selftests/bpf: Remove not used headers
    https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=1f265d2aea0d
    tools headers: Remove s390 ptrace.h in check-headers.sh
    https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=ed4da0d3de1e

* BTW, I made these patches in the next tree, so most of the warnings haven't appeared in the perf tree yet. :)


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

Yanteng Si (17):
  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/arm64/include/uapi/asm/kvm.h       | 36 ++++++++++++
 tools/arch/arm64/include/uapi/asm/perf_regs.h | 10 ++--
 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 +
 22 files changed, 258 insertions(+), 99 deletions(-)

-- 
2.31.4


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

end of thread, other threads:[~2023-05-22  9:56 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-10 10:21 [PATCH v2 00/17] tools perf: fix build warnings Yanteng Si
2023-05-10 10:21 ` [PATCH v2 01/17] tools headers UAPI: Sync the linux/in.h with the kernel sources Yanteng Si
2023-05-10 10:21 ` [PATCH v2 02/17] tools headers UAPI: Sync the linux/prctl.h " Yanteng Si
2023-05-10 10:21 ` [PATCH v2 03/17] tools headers UAPI: Sync the drm/drm.h " Yanteng Si
2023-05-10 10:22 ` [PATCH v2 04/17] tools headers UAPI: Sync the i915_drm.h " Yanteng Si
2023-05-10 10:22 ` [PATCH v2 05/17] tools headers UAPI: Sync the coresight-pmu headers copy " Yanteng Si
2023-05-10 15:41   ` Arnaldo Carvalho de Melo
2023-05-22  9:56     ` James Clark
2023-05-10 10:22 ` [PATCH v2 06/17] tools headers UAPI: Sync the linux/const.h with the kernel headers Yanteng Si
2023-05-10 10:22 ` [PATCH v2 07/17] tools headers UAPI: Sync the linux/perf_event.h " Yanteng Si
2023-05-10 15:44   ` Arnaldo Carvalho de Melo
2023-05-10 10:24 ` [PATCH v2 08/17] tools include UAPI: Sync the sound/asound.h copy with the kernel sources Yanteng Si
2023-05-10 10:24 ` [PATCH v2 09/17] tools headers UAPI: Sync the linux/mman.h " Yanteng Si
2023-05-10 10:24 ` [PATCH v2 10/17] tools headers UAPI: Sync the unistd " Yanteng Si
2023-05-10 10:24 ` [PATCH v2 11/17] tools headers kvm: Sync uapi/{asm/linux} kvm.h headers " Yanteng Si
2023-05-10 10:24 ` [PATCH v2 12/17] tools arch x86: Sync the disabled-features " Yanteng Si
2023-05-10 10:24 ` [PATCH v2 13/17] tools arch x86: Sync the memcpy_64 " Yanteng Si
2023-05-10 15:48   ` Arnaldo Carvalho de Melo
2023-05-10 10:24 ` [PATCH v2 14/17] tools arch x86: Sync the cpufeatures " Yanteng Si
2023-05-10 10:24 ` [PATCH v2 15/17] tools arch x86: Sync the msr-index.h copy " Yanteng Si
2023-05-10 10:25 ` [PATCH v2 16/17] tools arch x86: Sync the prctl headers " Yanteng Si
2023-05-10 10:25 ` [PATCH v2 17/17] tools arch arm64: Sync the perf_regs " Yanteng Si
2023-05-10 15:26   ` Arnaldo Carvalho de Melo
2023-05-15  4:08     ` Leo Yan
2023-05-20  3:11       ` Leo Yan
2023-05-10 17:06 ` [PATCH v2 00/17] tools perf: fix build warnings Arnaldo Carvalho de Melo
2023-05-15 11:08   ` 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).