ipv4: reduce percpu needs for icmpmsg mibs
Reading /proc/net/snmp on a machine with a lot of cpus is very expensive (can be ~88000 us). This is because ICMPMSG MIB uses 4096 bytes per cpu, and folding values for all possible cpus can read 16 Mbytes of memory. ICMP messages are not considered as fast path on a typical server, and eventually few cpus handle them anyway. We can afford an atomic operation instead of using percpu data. This saves 4096 bytes per cpu and per network namespace. Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
e56c57d0d3
commit
acb32ba3de
@ -288,7 +288,7 @@ static void icmpmsg_put(struct seq_file *seq)
|
||||
|
||||
count = 0;
|
||||
for (i = 0; i < ICMPMSG_MIB_MAX; i++) {
|
||||
val = snmp_fold_field((void __percpu **) net->mib.icmpmsg_statistics, i);
|
||||
val = atomic_long_read(&net->mib.icmpmsg_statistics->mibs[i]);
|
||||
if (val) {
|
||||
type[count] = i;
|
||||
vals[count++] = val;
|
||||
@ -307,6 +307,7 @@ static void icmp_put(struct seq_file *seq)
|
||||
{
|
||||
int i;
|
||||
struct net *net = seq->private;
|
||||
atomic_long_t *ptr = net->mib.icmpmsg_statistics->mibs;
|
||||
|
||||
seq_puts(seq, "\nIcmp: InMsgs InErrors");
|
||||
for (i=0; icmpmibmap[i].name != NULL; i++)
|
||||
@ -319,15 +320,13 @@ static void icmp_put(struct seq_file *seq)
|
||||
snmp_fold_field((void __percpu **) net->mib.icmp_statistics, ICMP_MIB_INERRORS));
|
||||
for (i=0; icmpmibmap[i].name != NULL; i++)
|
||||
seq_printf(seq, " %lu",
|
||||
snmp_fold_field((void __percpu **) net->mib.icmpmsg_statistics,
|
||||
icmpmibmap[i].index));
|
||||
atomic_long_read(ptr + icmpmibmap[i].index));
|
||||
seq_printf(seq, " %lu %lu",
|
||||
snmp_fold_field((void __percpu **) net->mib.icmp_statistics, ICMP_MIB_OUTMSGS),
|
||||
snmp_fold_field((void __percpu **) net->mib.icmp_statistics, ICMP_MIB_OUTERRORS));
|
||||
for (i=0; icmpmibmap[i].name != NULL; i++)
|
||||
seq_printf(seq, " %lu",
|
||||
snmp_fold_field((void __percpu **) net->mib.icmpmsg_statistics,
|
||||
icmpmibmap[i].index | 0x100));
|
||||
atomic_long_read(ptr + (icmpmibmap[i].index | 0x100)));
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user