From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752175AbaHQRb5 (ORCPT ); Sun, 17 Aug 2014 13:31:57 -0400 Received: from qmta12.emeryville.ca.mail.comcast.net ([76.96.27.227]:59852 "EHLO qmta12.emeryville.ca.mail.comcast.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752094AbaHQRbz (ORCPT ); Sun, 17 Aug 2014 13:31:55 -0400 Message-Id: <20140817173038.020385438@linux.com> Date: Sun, 17 Aug 2014 12:30:56 -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 Subject: [PATCH 33/35] [PATCH 34/36] percpu: Remove __this_cpu_ptr References: <20140817173023.439660246@linux.com> Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline; filename=0034-percpu-Remove-__this_cpu_ptr.patch Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The __this_cpu_ptr macro is no longer in use so drop it. Signed-off-by: Christoph Lameter --- include/asm-generic/percpu.h | 3 --- 1 file changed, 3 deletions(-) Index: linux/include/linux/percpu-defs.h =================================================================== --- linux.orig/include/linux/percpu-defs.h +++ linux/include/linux/percpu-defs.h @@ -257,9 +257,6 @@ do { \ #define __raw_get_cpu_var(var) (*raw_cpu_ptr(&(var))) #define __get_cpu_var(var) (*this_cpu_ptr(&(var))) -/* keep until we have removed all uses of __this_cpu_ptr */ -#define __this_cpu_ptr(ptr) raw_cpu_ptr(ptr) - /* * Must be an lvalue. Since @var must be a simple identifier, * we force a syntax error here if it isn't.