diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2017-07-18 17:13:40 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2017-07-18 23:14:07 -0300 |
commit | 59291f19824200b5a9046b79d37f02fb415335b0 (patch) | |
tree | e4da98a2bb6dfe1136a74fed8ba98ad9ab4fabef /tools/arch | |
parent | 047726d1f9ae6b1f3a2144577ffc3a1a92ffedf4 (diff) | |
download | linux-stable-59291f19824200b5a9046b79d37f02fb415335b0.tar.gz linux-stable-59291f19824200b5a9046b79d37f02fb415335b0.tar.bz2 linux-stable-59291f19824200b5a9046b79d37f02fb415335b0.zip |
tools include uapi x86: Add __NR_setns, if missing
To help us provide a simple setns() in older distros.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Krister Johansen <kjlx@templeofstupid.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-o10a85kf6j7ig87ep6crab2k@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/arch')
-rw-r--r-- | tools/arch/x86/include/asm/unistd_32.h | 3 | ||||
-rw-r--r-- | tools/arch/x86/include/asm/unistd_64.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/tools/arch/x86/include/asm/unistd_32.h b/tools/arch/x86/include/asm/unistd_32.h index 88b3f8c8920c..0e4312ffc945 100644 --- a/tools/arch/x86/include/asm/unistd_32.h +++ b/tools/arch/x86/include/asm/unistd_32.h @@ -10,3 +10,6 @@ #ifndef __NR_getcpu # define __NR_getcpu 318 #endif +#ifndef __NR_setns +# define __NR_setns 346 +#endif diff --git a/tools/arch/x86/include/asm/unistd_64.h b/tools/arch/x86/include/asm/unistd_64.h index fbdb70ee8837..dd56bb36132a 100644 --- a/tools/arch/x86/include/asm/unistd_64.h +++ b/tools/arch/x86/include/asm/unistd_64.h @@ -10,3 +10,6 @@ #ifndef __NR_getcpu # define __NR_getcpu 309 #endif +#ifndef __NR_setns +#define __NR_setns 308 +#endif |