From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from relay1.sgi.com ([192.48.171.29]:39565 "EHLO relay.sgi.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1761581AbXKPXLG (ORCPT ); Fri, 16 Nov 2007 18:11:06 -0500 Message-Id: <20071116231105.462829683@sgi.com> References: <20071116230920.278761667@sgi.com> Date: Fri, 16 Nov 2007 15:09:34 -0800 From: Christoph Lameter Subject: [patch 14/30] cpu alloc: blktrace conversion Content-Disposition: inline; filename=0024-cpu-alloc-blktrace-conversion.patch Sender: linux-arch-owner@vger.kernel.org To: akpm@linux-foundation.org Cc: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org, David Miller , Eric Dumazet , Peter Zijlstra List-ID: Signed-off-by: Christoph Lameter --- block/blktrace.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) Index: linux-2.6/block/blktrace.c =================================================================== --- linux-2.6.orig/block/blktrace.c 2007-11-15 21:17:24.586154116 -0800 +++ linux-2.6/block/blktrace.c 2007-11-15 21:25:31.591154091 -0800 @@ -155,7 +155,7 @@ void __blk_add_trace(struct blk_trace *b t = relay_reserve(bt->rchan, sizeof(*t) + pdu_len); if (t) { cpu = smp_processor_id(); - sequence = per_cpu_ptr(bt->sequence, cpu); + sequence = CPU_PTR(bt->sequence, cpu); t->magic = BLK_IO_TRACE_MAGIC | BLK_IO_TRACE_VERSION; t->sequence = ++(*sequence); @@ -227,7 +227,7 @@ static void blk_trace_cleanup(struct blk relay_close(bt->rchan); debugfs_remove(bt->dropped_file); blk_remove_tree(bt->dir); - free_percpu(bt->sequence); + CPU_FREE(bt->sequence); kfree(bt); } @@ -338,7 +338,7 @@ int do_blk_trace_setup(struct request_qu if (!bt) goto err; - bt->sequence = alloc_percpu(unsigned long); + bt->sequence = CPU_ALLOC(unsigned long, GFP_KERNEL | __GFP_ZERO); if (!bt->sequence) goto err; @@ -387,7 +387,7 @@ err: if (bt) { if (bt->dropped_file) debugfs_remove(bt->dropped_file); - free_percpu(bt->sequence); + CPU_FREE(bt->sequence); if (bt->rchan) relay_close(bt->rchan); kfree(bt); --