From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754709AbdDOOZQ (ORCPT ); Sat, 15 Apr 2017 10:25:16 -0400 Received: from terminus.zytor.com ([65.50.211.136]:49437 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754537AbdDOOZN (ORCPT ); Sat, 15 Apr 2017 10:25:13 -0400 Date: Sat, 15 Apr 2017 07:17:32 -0700 From: tip-bot for Thomas Gleixner Message-ID: Cc: jiangshanlai@gmail.com, tj@kernel.org, herbert@gondor.apana.org.au, mingo@kernel.org, viresh.kumar@linaro.org, fenghua.yu@intel.com, rjw@rjwysocki.net, peterz@infradead.org, davem@davemloft.net, tglx@linutronix.de, linux-kernel@vger.kernel.org, benh@kernel.crashing.org, mpe@ellerman.id.au, bigeasy@linutronix.de, lenb@kernel.org, tony.luck@intel.com, hpa@zytor.com Reply-To: hpa@zytor.com, tony.luck@intel.com, lenb@kernel.org, bigeasy@linutronix.de, mpe@ellerman.id.au, tglx@linutronix.de, davem@davemloft.net, benh@kernel.crashing.org, linux-kernel@vger.kernel.org, fenghua.yu@intel.com, rjw@rjwysocki.net, peterz@infradead.org, mingo@kernel.org, viresh.kumar@linaro.org, jiangshanlai@gmail.com, tj@kernel.org, herbert@gondor.apana.org.au In-Reply-To: References: To: linux-tip-commits@vger.kernel.org Subject: [tip:sched/core] ia64/sn/hwperf: Replace racy task affinity logic Git-Commit-ID: 9feb42ac88b516e378b9782e82b651ca5bed95c4 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: 9feb42ac88b516e378b9782e82b651ca5bed95c4 Gitweb: http://git.kernel.org/tip/9feb42ac88b516e378b9782e82b651ca5bed95c4 Author: Thomas Gleixner AuthorDate: Thu, 6 Apr 2017 14:56:18 +0200 Committer: Thomas Gleixner CommitDate: Sat, 15 Apr 2017 12:20:53 +0200 ia64/sn/hwperf: Replace racy task affinity logic sn_hwperf_op_cpu() which is invoked from an ioctl requires to run code on the requested cpu. This is achieved by temporarily setting the affinity of the calling user space thread to the requested CPU and reset it to the original affinity afterwards. That's racy vs. CPU hotplug and concurrent affinity settings for that thread resulting in code executing on the wrong CPU and overwriting the new affinity setting. Replace it by using work_on_cpu_safe() which guarantees to run the code on the requested CPU or to fail in case the CPU is offline. Signed-off-by: Thomas Gleixner Cc: Fenghua Yu Cc: Tony Luck Cc: linux-ia64@vger.kernel.org Cc: Herbert Xu Cc: "Rafael J. Wysocki" Cc: Peter Zijlstra Cc: Benjamin Herrenschmidt Cc: Sebastian Siewior Cc: Lai Jiangshan Cc: Viresh Kumar Cc: Michael Ellerman Cc: Tejun Heo Cc: "David S. Miller" Cc: Len Brown Link: http://lkml.kernel.org/r/alpine.DEB.2.20.1704122251450.2548@nanos Signed-off-by: Thomas Gleixner --- arch/ia64/sn/kernel/sn2/sn_hwperf.c | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/arch/ia64/sn/kernel/sn2/sn_hwperf.c b/arch/ia64/sn/kernel/sn2/sn_hwperf.c index 52704f1..55febd6 100644 --- a/arch/ia64/sn/kernel/sn2/sn_hwperf.c +++ b/arch/ia64/sn/kernel/sn2/sn_hwperf.c @@ -598,12 +598,17 @@ static void sn_hwperf_call_sal(void *info) op_info->ret = r; } +static long sn_hwperf_call_sal_work(void *info) +{ + sn_hwperf_call_sal(info); + return 0; +} + static int sn_hwperf_op_cpu(struct sn_hwperf_op_info *op_info) { u32 cpu; u32 use_ipi; int r = 0; - cpumask_t save_allowed; cpu = (op_info->a->arg & SN_HWPERF_ARG_CPU_MASK) >> 32; use_ipi = op_info->a->arg & SN_HWPERF_ARG_USE_IPI_MASK; @@ -629,13 +634,9 @@ static int sn_hwperf_op_cpu(struct sn_hwperf_op_info *op_info) /* use an interprocessor interrupt to call SAL */ smp_call_function_single(cpu, sn_hwperf_call_sal, op_info, 1); - } - else { - /* migrate the task before calling SAL */ - save_allowed = current->cpus_allowed; - set_cpus_allowed_ptr(current, cpumask_of(cpu)); - sn_hwperf_call_sal(op_info); - set_cpus_allowed_ptr(current, &save_allowed); + } else { + /* Call on the target CPU */ + work_on_cpu_safe(cpu, sn_hwperf_call_sal_work, op_info); } } r = op_info->ret;