[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <tip-f01f7c56a1425b9749a99af821e1de334fb64d7e@git.kernel.org>
Date: Wed, 20 Oct 2010 19:58:41 GMT
From: tip-bot for Borislav Petkov <borislav.petkov@....com>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, hpa@...or.com, mingo@...hat.com,
tglx@...utronix.de, hpa@...ux.intel.com, borislav.petkov@....com
Subject: [tip:x86/mm] x86, mm: Fix incorrect data type in vmalloc_sync_all()
Commit-ID: f01f7c56a1425b9749a99af821e1de334fb64d7e
Gitweb: http://git.kernel.org/tip/f01f7c56a1425b9749a99af821e1de334fb64d7e
Author: Borislav Petkov <borislav.petkov@....com>
AuthorDate: Tue, 19 Oct 2010 22:17:37 +0000
Committer: H. Peter Anvin <hpa@...ux.intel.com>
CommitDate: Wed, 20 Oct 2010 12:54:04 -0700
x86, mm: Fix incorrect data type in vmalloc_sync_all()
arch/x86/mm/fault.c: In function 'vmalloc_sync_all':
arch/x86/mm/fault.c:238: warning: assignment makes integer from pointer without a cast
introduced by 617d34d9e5d8326ec8f188c616aa06ac59d083fe.
Signed-off-by: Borislav Petkov <borislav.petkov@....com>
LKML-Reference: <20101020103642.GA3135@...ptos.osrc.amd.com>
Signed-off-by: H. Peter Anvin <hpa@...ux.intel.com>
---
arch/x86/mm/fault.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/x86/mm/fault.c b/arch/x86/mm/fault.c
index 6c27c39..0cdb8d4 100644
--- a/arch/x86/mm/fault.c
+++ b/arch/x86/mm/fault.c
@@ -230,7 +230,7 @@ void vmalloc_sync_all(void)
spin_lock_irqsave(&pgd_lock, flags);
list_for_each_entry(page, &pgd_list, lru) {
spinlock_t *pgt_lock;
- int ret;
+ pmd_t *ret;
pgt_lock = &pgd_page_get_mm(page)->page_table_lock;
--
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