Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1482424

[tip:mm/pkeys] x86/pkeys: Fix pkeys build breakage for some non-x86 arches

From tip-bot for Dave Hansen <tipbot@zytor.com>
Newsgroups linux.kernel
Subject [tip:mm/pkeys] x86/pkeys: Fix pkeys build breakage for some non-x86 arches
Date 2016-09-13 14:50 +0200
Message-ID <sgVjX-1TH-5@gated-at.bofh.it> (permalink)
References <sgGbg-8rR-19@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Commit-ID:  e2753293ac4bce8623650bb2d610b7e657bc869f
Gitweb:     http://git.kernel.org/tip/e2753293ac4bce8623650bb2d610b7e657bc869f
Author:     Dave Hansen <dave.hansen@intel.com>
AuthorDate: Mon, 12 Sep 2016 13:38:42 -0700
Committer:  Thomas Gleixner <tglx@linutronix.de>
CommitDate: Tue, 13 Sep 2016 14:41:36 +0200

x86/pkeys: Fix pkeys build breakage for some non-x86 arches

Guenter Roeck reported breakage on the h8300 and c6x architectures (among
others) caused by the new memory protection keys syscalls.  This patch does
what Arnd suggested and adds them to kernel/sys_ni.c.

Fixes: a60f7b69d92c ("generic syscalls: Wire up memory protection keys syscalls")
Reported-and-tested-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Dave Hansen <dave.hansen@intel.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Cc: linux-arch@vger.kernel.org
Cc: Dave Hansen <dave@sr71.net>
Cc: linux-api@vger.kernel.org
Link: http://lkml.kernel.org/r/20160912203842.48E7AC50@viggo.jf.intel.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
 kernel/sys_ni.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/kernel/sys_ni.c b/kernel/sys_ni.c
index 2c5e3a8..635482e 100644
--- a/kernel/sys_ni.c
+++ b/kernel/sys_ni.c
@@ -250,3 +250,8 @@ cond_syscall(sys_execveat);
 
 /* membarrier */
 cond_syscall(sys_membarrier);
+
+/* memory protection keys */
+cond_syscall(sys_pkey_mprotect);
+cond_syscall(sys_pkey_alloc);
+cond_syscall(sys_pkey_free);

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH] x86/pkeys: fix pkeys build breakage for some non-x86 arches Dave Hansen <dave@sr71.net> - 2016-09-12 22:40 +0200
  [tip:mm/pkeys] x86/pkeys: Fix pkeys build breakage for some non-x86  arches tip-bot for Dave Hansen <tipbot@zytor.com> - 2016-09-13 14:50 +0200

csiph-web