Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c411cb56 authored by Tony Luck's avatar Tony Luck
Browse files

[IA64] fix: warning: `ql_size' might be used uninitialized



Oops.  Should have caught this before I checked it in.

Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent 5f6602a1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {