All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] hwpoison: fix uninitialized warning
@ 2009-09-15 21:19 ` Hugh Dickins
  0 siblings, 0 replies; 12+ messages in thread
From: Hugh Dickins @ 2009-09-15 21:19 UTC (permalink / raw)
  To: Andi Kleen; +Cc: Wu Fengguang, Andrew Morton, linux-kernel, linux-mm

Fix mmotm build warning, presumably also in linux-next:
mm/memory.c: In function `do_swap_page':
mm/memory.c:2498: warning: `pte' may be used uninitialized in this function

Signed-off-by: Hugh Dickins <hugh.dickins@tiscali.co.uk>
---
I've only noticed this warning on one machine, the powerpc: certainly it
needs CONFIG_MIGRATION or CONFIG_MEMORY_FAILURE to see it, but I thought
I had one of those set on other machines - just musing in case it's being
masked elsewhere by some other bug...

 mm/memory.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- mmotm/mm/memory.c	2009-09-14 16:34:37.000000000 +0100
+++ linux/mm/memory.c	2009-09-15 22:00:48.000000000 +0100
@@ -2495,7 +2495,7 @@ static int do_swap_page(struct mm_struct
 		} else if (is_hwpoison_entry(entry)) {
 			ret = VM_FAULT_HWPOISON;
 		} else {
-			print_bad_pte(vma, address, pte, NULL);
+			print_bad_pte(vma, address, orig_pte, NULL);
 			ret = VM_FAULT_OOM;
 		}
 		goto out;

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2009-09-16  1:09 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-15 21:19 [PATCH] hwpoison: fix uninitialized warning Hugh Dickins
2009-09-15 21:19 ` Hugh Dickins
2009-09-15 23:59 ` Wu Fengguang
2009-09-15 23:59   ` Wu Fengguang
2009-09-16  0:12 ` Minchan Kim
2009-09-16  0:12   ` Minchan Kim
2009-09-16  0:23 ` Wu Fengguang
2009-09-16  0:23   ` Wu Fengguang
2009-09-16  0:51   ` Hugh Dickins
2009-09-16  0:51     ` Hugh Dickins
2009-09-16  1:08     ` Wu Fengguang
2009-09-16  1:08       ` Wu Fengguang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.