1
0
Fork 0

ipv4: fix 32b build

Address remaining issue after 80ec192.

Signed-off-by: Madalin Bucur <madalin.bucur@freescale.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
hifive-unleashed-5.1
Madalin Bucur 2015-08-31 15:46:07 +03:00 committed by David S. Miller
parent 80ec1927b1
commit d1bfc62591
1 changed files with 1 additions and 1 deletions

View File

@ -1496,7 +1496,7 @@ u64 snmp_fold_field64(void __percpu *mib, int offt, size_t syncp_offset)
int cpu;
for_each_possible_cpu(cpu) {
res += snmp_get_cpu_field(mib, cpu, offt, syncp_offset);
res += snmp_get_cpu_field64(mib, cpu, offt, syncp_offset);
}
return res;
}