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

Commit d1bfc625 authored by Madalin Bucur's avatar Madalin Bucur Committed by David S. Miller
Browse files

ipv4: fix 32b build



Address remaining issue after 80ec1927.

Signed-off-by: default avatarMadalin Bucur <madalin.bucur@freescale.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 80ec1927
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}