]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ipv4: fix 32b build
authorMadalin Bucur <madalin.bucur@freescale.com>
Mon, 31 Aug 2015 12:46:07 +0000 (15:46 +0300)
committerDavid S. Miller <davem@davemloft.net>
Mon, 31 Aug 2015 18:32:41 +0000 (11:32 -0700)
Address remaining issue after 80ec192.

Signed-off-by: Madalin Bucur <madalin.bucur@freescale.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/af_inet.c

index c2d0ebc628d7ab2734786ea5f6efb29ae60913de..96773a2f95a7ef2f6323d5389f141d9c01482643 100644 (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;
 }