diff options
author | Tony Luck | 2005-04-25 22:16:16 +0200 |
---|---|---|
committer | Tony Luck | 2005-04-25 22:16:16 +0200 |
commit | c411cb56586915350e4cdb6f228e9da2adba3285 (patch) | |
tree | 61cf8e8eb97592d2e3d8e7524dfabde731d97d12 | |
parent | [IA64] sba_iommu bug fixes (diff) | |
download | kernel-qcow2-linux-c411cb56586915350e4cdb6f228e9da2adba3285.tar.gz kernel-qcow2-linux-c411cb56586915350e4cdb6f228e9da2adba3285.tar.xz kernel-qcow2-linux-c411cb56586915350e4cdb6f228e9da2adba3285.zip |
[IA64] fix: warning: `ql_size' might be used uninitialized
Oops. Should have caught this before I checked it in.
Signed-off-by: Tony Luck <tony.luck@intel.com>
-rw-r--r-- | include/asm-ia64/pgalloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-ia64/pgalloc.h b/include/asm-ia64/pgalloc.h index e86a8c331ee6..2b7127330ae1 100644 --- 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) { |