Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934060AbYBVUFQ (ORCPT ); Fri, 22 Feb 2008 15:05:16 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932367AbYBVT7t (ORCPT ); Fri, 22 Feb 2008 14:59:49 -0500 Received: from smtp5.pp.htv.fi ([213.243.153.39]:52710 "EHLO smtp5.pp.htv.fi" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1763014AbYBVT7c (ORCPT ); Fri, 22 Feb 2008 14:59:32 -0500 Date: Fri, 22 Feb 2008 21:58:43 +0200 From: Adrian Bunk To: linux-kernel@vger.kernel.org Subject: [2.6 patch] make struct mempolicy.c:default_policy static Message-ID: <20080222195843.GJ1409@cs181133002.pp.htv.fi> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline User-Agent: Mutt/1.5.17+20080114 (2008-01-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1385 Lines: 36 This patc makes the needlessly global struct default_policy static. Signed-off-by: Adrian Bunk --- 4a69fc08292ebe8b7d202436a71926950a980c21 diff --git a/include/linux/mempolicy.h b/include/linux/mempolicy.h index 59c4865..fd20b03 100644 --- a/include/linux/mempolicy.h +++ b/include/linux/mempolicy.h @@ -149,7 +149,6 @@ extern void mpol_rebind_task(struct task_struct *tsk, extern void mpol_rebind_mm(struct mm_struct *mm, nodemask_t *new); extern void mpol_fix_fork_child_flag(struct task_struct *p); -extern struct mempolicy default_policy; extern struct zonelist *huge_zonelist(struct vm_area_struct *vma, unsigned long addr, gfp_t gfp_flags, struct mempolicy **mpol); extern unsigned slab_node(struct mempolicy *policy); diff --git a/mm/mempolicy.c b/mm/mempolicy.c index 6c7ba1a..f3118a8 100644 --- a/mm/mempolicy.c +++ b/mm/mempolicy.c @@ -105,7 +105,7 @@ static struct kmem_cache *sn_cache; policied. */ enum zone_type policy_zone = 0; -struct mempolicy default_policy = { +static struct mempolicy default_policy = { .refcnt = ATOMIC_INIT(1), /* never free it */ .policy = MPOL_DEFAULT, }; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/