]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-client.git/commit
tools headers: Sync uapi/linux/prctl.h with the kernel source
authorArnaldo Carvalho de Melo <acme@redhat.com>
Fri, 27 Feb 2026 12:08:14 +0000 (09:08 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 4 Mar 2026 14:14:10 +0000 (11:14 -0300)
commitcfdf6456c0aca337ff05cb1eb6e6f453e1d9dea1
treed7f73f59feb66e4f77725293fef3265d9e6f66a9
parent0031c06807cfa8aa51a759ff8aa09e1aa48149af
tools headers: Sync uapi/linux/prctl.h with the kernel source

To pick up the changes in these csets:

  5ca243f6e3c30b97 ("prctl: add arch-agnostic prctl()s for indirect branch tracking")
  28621ec2d46c6adf ("rseq: Add prctl() to enable time slice extensions")

That don't introduced these new prctls:

  $ tools/perf/trace/beauty/prctl_option.sh > before.txt
  $ cp include/uapi/linux/prctl.h tools/perf/trace/beauty/include/uapi/linux/prctl.h
  $ tools/perf/trace/beauty/prctl_option.sh > after.txt
  $ diff -u before.txt after.txt
  --- before.txt 2026-02-27 09:07:16.435611457 -0300
  +++ after.txt 2026-02-27 09:07:28.189816531 -0300
  @@ -73,6 +73,10 @@
    [76] = "LOCK_SHADOW_STACK_STATUS",
    [77] = "TIMER_CREATE_RESTORE_IDS",
    [78] = "FUTEX_HASH",
  + [79] = "RSEQ_SLICE_EXTENSION",
  + [80] = "GET_INDIR_BR_LP_STATUS",
  + [81] = "SET_INDIR_BR_LP_STATUS",
  + [82] = "LOCK_INDIR_BR_LP_STATUS",
   };
   static const char *prctl_set_mm_options[] = {
    [1] = "START_CODE",
  $

That now will be used to decode the syscall option and also to compose
filters, for instance:

  [root@five ~]# perf trace -e syscalls:sys_enter_prctl --filter option==SET_NAME
       0.000 Isolated Servi/3474327 syscalls:sys_enter_prctl(option: SET_NAME, arg2: 0x7f23f13b7aee)
       0.032 DOM Worker/3474327 syscalls:sys_enter_prctl(option: SET_NAME, arg2: 0x7f23deb25670)
       7.920 :3474328/3474328 syscalls:sys_enter_prctl(option: SET_NAME, arg2: 0x7f23e24fbb10)
       7.935 StreamT~s #374/3474328 syscalls:sys_enter_prctl(option: SET_NAME, arg2: 0x7f23e24fb970)
       8.400 Isolated Servi/3474329 syscalls:sys_enter_prctl(option: SET_NAME, arg2: 0x7f23e24bab10)
       8.418 StreamT~s #374/3474329 syscalls:sys_enter_prctl(option: SET_NAME, arg2: 0x7f23e24ba970)
  ^C[root@five ~]#

This addresses these perf build warnings:

  Warning: Kernel ABI header differences:
    diff -u tools/perf/trace/beauty/include/uapi/linux/prctl.h include/uapi/linux/prctl.h

Please see tools/include/uapi/README for further details.

Cc: Deepak Gupta <debug@rivosinc.com>
Cc: Paul Walmsley <pjw@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@kernel.org>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/trace/beauty/include/uapi/linux/prctl.h