From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752341AbaHQRdd (ORCPT ); Sun, 17 Aug 2014 13:33:33 -0400 Received: from qmta02.emeryville.ca.mail.comcast.net ([76.96.30.24]:40368 "EHLO qmta02.emeryville.ca.mail.comcast.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751404AbaHQRbt (ORCPT ); Sun, 17 Aug 2014 13:31:49 -0400 Message-Id: <20140817173037.592030835@linux.com> Date: Sun, 17 Aug 2014 12:30:53 -0500 From: Christoph Lameter To: Tejun Heo Cc: akpm@linuxfoundation.org, rostedt@goodmis.org, linux-kernel@vger.kernel.org, Ingo Molnar , Peter Zijlstra , Thomas Gleixner , Haavard Skinnemoen , Hans-Christian Egtvedt Subject: [PATCH 30/35] [PATCH 30/36] avr32: Replace __get_cpu_var with __this_cpu_write References: <20140817173023.439660246@linux.com> Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline; filename=0030-avr32-Replace-__get_cpu_var-with-__this_cpu_write.patch Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Replace the single use of __get_cpu_var in avr32 with __this_cpu_write. Cc: Haavard Skinnemoen Acked-by: Hans-Christian Egtvedt Signed-off-by: Christoph Lameter --- arch/avr32/kernel/kprobes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux/arch/avr32/kernel/kprobes.c =================================================================== --- linux.orig/arch/avr32/kernel/kprobes.c +++ linux/arch/avr32/kernel/kprobes.c @@ -104,7 +104,7 @@ static void __kprobes resume_execution(s static void __kprobes set_current_kprobe(struct kprobe *p) { - __get_cpu_var(current_kprobe) = p; + __this_cpu_write(current_kprobe, p); } static int __kprobes kprobe_handler(struct pt_regs *regs)