public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH tj-percpu 1/3] percpu: kill compile warning in pcpu_populate_chunk()
@ 2009-03-01  7:13 Tejun Heo
  2009-03-01  7:13 ` [PATCH tj-percpu 2/3] alpha: fix typo in recent early vmalloc change Tejun Heo
  2009-03-02  9:07 ` [PATCH tj-percpu 1/3] percpu: kill compile warning in pcpu_populate_chunk() Ingo Molnar
  0 siblings, 2 replies; 4+ messages in thread
From: Tejun Heo @ 2009-03-01  7:13 UTC (permalink / raw)
  To: Ingo Molnar, x86, Johannes Weiner, Linux Kernel, Thomas Gleixner,
	Rusty Russell, H. Peter Anvin

Impact: remove compile warning

Mark local variable map_end in pcpu_populate_chunk() with
uninitialized_var().  The variable is always used in tandem with
map_start and guaranteed to be initialized before use but gcc doesn't
understand that.

Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-by: Ingo Molnar <mingo@elte.hu>
---
This the first of three misc fix patches for #tj-percpu.  Patches are
also available in the tj-percpu git tree.

  git://git.kernel.org/pub/scm/linux/kernel/git/tj/misc.git tj-percpu

Thanks.

 mm/percpu.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/mm/percpu.c b/mm/percpu.c
index 5954e7a..3d0f545 100644
--- a/mm/percpu.c
+++ b/mm/percpu.c
@@ -639,7 +639,7 @@ static int pcpu_populate_chunk(struct pcpu_chunk *chunk, int off, int size)
 	int page_start = PFN_DOWN(off);
 	int page_end = PFN_UP(off + size);
 	int map_start = -1;
-	int map_end;
+	int uninitialized_var(map_end);
 	unsigned int cpu;
 	int i;
 
-- 
1.6.0.2


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

end of thread, other threads:[~2009-03-02  9:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-01  7:13 [PATCH tj-percpu 1/3] percpu: kill compile warning in pcpu_populate_chunk() Tejun Heo
2009-03-01  7:13 ` [PATCH tj-percpu 2/3] alpha: fix typo in recent early vmalloc change Tejun Heo
2009-03-01  7:14   ` [PATCH tj-percpu 3/3] bootmem, x86: further fixes for arch-specific bootmem wrapping Tejun Heo
2009-03-02  9:07 ` [PATCH tj-percpu 1/3] percpu: kill compile warning in pcpu_populate_chunk() Ingo Molnar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox