LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Christian Brauner <christian@brauner.io>
To: Arnaldo Carvalho de Melo <acme@kernel.org>,
Ingo Molnar <mingo@kernel.org>,
Thomas Gleixner <tglx@linutronix.de>
Cc: "Jiri Olsa" <jolsa@kernel.org>,
"Namhyung Kim" <namhyung@kernel.org>,
"Clark Williams" <williams@redhat.com>,
linux-kernel@vger.kernel.org, linux-perf-users@vger.kernel.org,
"Arnaldo Carvalho de Melo" <acme@redhat.com>,
"Adrian Hunter" <adrian.hunter@intel.com>,
"Brendan Gregg" <brendan.d.gregg@gmail.com>,
"Luis Cláudio Gonçalves" <lclaudio@redhat.com>
Subject: Re: [PATCH 05/14] tools headers UAPI: Sync linux/sched.h with the kernel
Date: Tue, 28 May 2019 19:53:41 +0200 [thread overview]
Message-ID: <5DED7BD2-76E6-4647-8794-348EC25A4690@brauner.io> (raw)
In-Reply-To: <20190528175020.13343-6-acme@kernel.org>
On May 28, 2019 7:50:11 PM GMT+02:00, Arnaldo Carvalho de Melo <acme@kernel.org> wrote:
>From: Arnaldo Carvalho de Melo <acme@redhat.com>
>
>To pick up the change in:
>
> b3e583825266 ("clone: add CLONE_PIDFD")
>
>This requires changes in the 'perf trace' beautification routines for
>the 'clone' syscall args, which is done in a followup patch.
>
>This silences the following perf build warning:
>
>Warning: Kernel ABI header at 'tools/include/uapi/linux/sched.h'
>differs from latest version at 'include/uapi/linux/sched.h'
> diff -u tools/include/uapi/linux/sched.h include/uapi/linux/sched.h
>
>Cc: Adrian Hunter <adrian.hunter@intel.com>
>Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
>Cc: Christian Brauner <christian@brauner.io>
>Cc: Jiri Olsa <jolsa@kernel.org>
>Cc: Luis Cláudio Gonçalves <lclaudio@redhat.com>
>Cc: Namhyung Kim <namhyung@kernel.org>
>Link:
>https://lkml.kernel.org/n/tip-lenja6gmy26dkt0ybk747qgq@git.kernel.org
>Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
>---
> tools/include/uapi/linux/sched.h | 1 +
> 1 file changed, 1 insertion(+)
>
>diff --git a/tools/include/uapi/linux/sched.h
>b/tools/include/uapi/linux/sched.h
>index 22627f80063e..ed4ee170bee2 100644
>--- a/tools/include/uapi/linux/sched.h
>+++ b/tools/include/uapi/linux/sched.h
>@@ -10,6 +10,7 @@
>#define CLONE_FS 0x00000200 /* set if fs info shared between processes
>*/
>#define CLONE_FILES 0x00000400 /* set if open files shared between
>processes */
>#define CLONE_SIGHAND 0x00000800 /* set if signal handlers and blocked
>signals shared */
>+#define CLONE_PIDFD 0x00001000 /* set if a pidfd should be placed in
>parent */
>#define CLONE_PTRACE 0x00002000 /* set if we want to let tracing
>continue on the child too */
>#define CLONE_VFORK 0x00004000 /* set if the parent wants the child to
>wake it up on mm_release */
>#define CLONE_PARENT 0x00008000 /* set if we want to have the same
>parent as the cloner */
Thanks for doing that!
Reviewed-by: Christian Brauner <christian@brauner.io>
next prev parent reply other threads:[~2019-05-28 17:53 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-28 17:50 [GIT PULL] perf/urgent fixes for 5.2 Arnaldo Carvalho de Melo
2019-05-28 17:50 ` [PATCH 01/14] perf data: Fix 'strncat may truncate' build failure with recent gcc Arnaldo Carvalho de Melo
2019-05-28 17:50 ` [PATCH 02/14] perf arm64: Fix mksyscalltbl when system kernel headers are ahead of the kernel Arnaldo Carvalho de Melo
2019-05-28 17:50 ` [PATCH 03/14] tools include UAPI: Update copy of files related to new fspick, fsmount, fsconfig, fsopen, move_mount and open_tree syscalls Arnaldo Carvalho de Melo
2019-05-28 17:50 ` [PATCH 04/14] tools arch x86: Sync asm/cpufeatures.h with the with the kernel Arnaldo Carvalho de Melo
2019-05-28 17:50 ` [PATCH 05/14] tools headers UAPI: Sync linux/sched.h " Arnaldo Carvalho de Melo
2019-05-28 17:53 ` Christian Brauner [this message]
2019-05-28 17:50 ` [PATCH 06/14] tools headers UAPI: Sync linux/fs.h " Arnaldo Carvalho de Melo
2019-05-28 17:50 ` [PATCH 07/14] tools headers UAPI: Sync drm/i915_drm.h " Arnaldo Carvalho de Melo
2019-05-28 17:50 ` [PATCH 08/14] tools headers UAPI: Sync drm/drm.h " Arnaldo Carvalho de Melo
2019-05-28 17:50 ` [PATCH 09/14] perf namespace: Protect reading thread's namespace Arnaldo Carvalho de Melo
2019-05-28 17:50 ` [PATCH 10/14] perf session: Add missing swap ops for namespace events Arnaldo Carvalho de Melo
2019-05-28 17:50 ` [PATCH 11/14] perf test vmlinux-kallsyms: Ignore aliases to _etext when searching on kallsyms Arnaldo Carvalho de Melo
2019-05-28 17:50 ` [PATCH 12/14] perf machine: Read also the end of the kernel Arnaldo Carvalho de Melo
2019-05-28 17:50 ` [PATCH 13/14] perf record: Fix s390 missing module symbol and warning for non-root users Arnaldo Carvalho de Melo
2019-05-28 17:50 ` [PATCH 14/14] tools headers UAPI: Sync kvm.h headers with the kernel sources Arnaldo Carvalho de Melo
2019-05-28 21:17 ` [GIT PULL] perf/urgent fixes for 5.2 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=5DED7BD2-76E6-4647-8794-348EC25A4690@brauner.io \
--to=christian@brauner.io \
--cc=acme@kernel.org \
--cc=acme@redhat.com \
--cc=adrian.hunter@intel.com \
--cc=brendan.d.gregg@gmail.com \
--cc=jolsa@kernel.org \
--cc=lclaudio@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=namhyung@kernel.org \
--cc=tglx@linutronix.de \
--cc=williams@redhat.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;
as well as URLs for NNTP newsgroup(s).