From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756783AbdCUJNq (ORCPT ); Tue, 21 Mar 2017 05:13:46 -0400 Received: from terminus.zytor.com ([65.50.211.136]:39816 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756260AbdCUJNo (ORCPT ); Tue, 21 Mar 2017 05:13:44 -0400 Date: Tue, 21 Mar 2017 02:13:35 -0700 From: tip-bot for Kyle Huey Message-ID: Cc: linux-kernel@vger.kernel.org, me@kylehuey.com, hpa@zytor.com, luto@kernel.org, khuey@kylehuey.com, tglx@linutronix.de, mingo@kernel.org Reply-To: tglx@linutronix.de, khuey@kylehuey.com, mingo@kernel.org, hpa@zytor.com, me@kylehuey.com, linux-kernel@vger.kernel.org, luto@kernel.org In-Reply-To: <20170320230535.11281-1-khuey@kylehuey.com> References: <20170320230535.11281-1-khuey@kylehuey.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/process] um/arch_prctl: Fix fallout from x86 arch_prctl() rework Git-Commit-ID: d582799fe5de1c1ca127d7f364db12a660cf46d4 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: d582799fe5de1c1ca127d7f364db12a660cf46d4 Gitweb: http://git.kernel.org/tip/d582799fe5de1c1ca127d7f364db12a660cf46d4 Author: Kyle Huey AuthorDate: Mon, 20 Mar 2017 16:05:35 -0700 Committer: Thomas Gleixner CommitDate: Tue, 21 Mar 2017 10:08:29 +0100 um/arch_prctl: Fix fallout from x86 arch_prctl() rework The recent arch_prctl rework added a bracket instead of a comma. Fix it. Fixes: 17a6e1b8e8e8 ("x86/arch_prctl/64: Rename do_arch_prctl() to do_arch_prctl_64()") Signed-off-by: Kyle Huey Cc: Andy Lutomirski Cc: kbuild-all@01.org Link: http://lkml.kernel.org/r/20170320230535.11281-1-khuey@kylehuey.com Signed-off-by: Thomas Gleixner --- arch/x86/um/syscalls_64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/um/syscalls_64.c b/arch/x86/um/syscalls_64.c index 81b9fe1..58f5166 100644 --- a/arch/x86/um/syscalls_64.c +++ b/arch/x86/um/syscalls_64.c @@ -12,7 +12,7 @@ #include /* XXX This should get the constants from libc */ #include -long arch_prctl(struct task_struct *task, int option) +long arch_prctl(struct task_struct *task, int option, unsigned long __user *arg2) { unsigned long *ptr = arg2, tmp;