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

Commit 3500cd73 authored by Christian Perle's avatar Christian Perle Committed by David S. Miller
Browse files

proc: snmp6: Use correct type in memset



Reading /proc/net/snmp6 yields bogus values on 32 bit kernels.
Use "u64" instead of "unsigned long" in sizeof().

Fixes: 4a4857b1 ("proc: Reduce cache miss in snmp6_seq_show")
Signed-off-by: default avatarChristian Perle <christian.perle@secunet.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4b1f0d33
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -219,7 +219,7 @@ static void snmp6_seq_show_item64(struct seq_file *seq, void __percpu *mib,
	u64 buff64[SNMP_MIB_MAX];
	int i;

	memset(buff64, 0, sizeof(unsigned long) * SNMP_MIB_MAX);
	memset(buff64, 0, sizeof(u64) * SNMP_MIB_MAX);

	snmp_get_cpu_field64_batch(buff64, itemlist, mib, syncpoff);
	for (i = 0; itemlist[i].name; i++)