[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1217091007.6107.8.camel@inlin>
Date: Sat, 26 Jul 2008 19:50:07 +0300
From: Michael Borisov <niro@....by>
To: kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] fix warning in arch/x86/mm/pgtable.c
This patch fixes the following compile warning:
arch/x86/mm/pgtable.c: In function ‘pgd_mop_up_pmds’:
arch/x86/mm/pgtable.c:194: warning: unused variable ‘pmd’
Signed-off-by: Michael Borisov <niro@....by>
---
diff --git a/arch/x86/mm/pgtable.c b/arch/x86/mm/pgtable.c
index 557b2ab..2d57735 100644
--- a/arch/x86/mm/pgtable.c
+++ b/arch/x86/mm/pgtable.c
@@ -163,7 +163,8 @@ static int preallocate_pmds(pmd_t *pmds[])
bool failed = false;
for(i = 0; i < PREALLOCATED_PMDS; i++) {
- pmd_t *pmd = (pmd_t *)get_zeroed_page(GFP_KERNEL|
__GFP_REPEAT);
+ pmd_t *pmd;
+ pmd = (pmd_t *)get_zeroed_page(GFP_KERNEL|__GFP_REPEAT);
if (pmd == NULL)
failed = true;
pmds[i] = pmd;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists