projects
/
linux-2.6.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
[IA64] fix: warning: `ql_size' might be used uninitialized
[linux-2.6.git]
/
include
/
asm-ia64
/
pgalloc.h
diff --git
a/include/asm-ia64/pgalloc.h
b/include/asm-ia64/pgalloc.h
index
e86a8c3
..
2b71273
100644
(file)
--- a/
include/asm-ia64/pgalloc.h
+++ b/
include/asm-ia64/pgalloc.h
@@
-29,7
+29,7
@@
DECLARE_PER_CPU(long, __pgtable_quicklist_size);
static inline long pgtable_quicklist_total_size(void)
{
- long ql_size;
+ long ql_size = 0;
int cpuid;
for_each_online_cpu(cpuid) {