diff options
author | WANG Cong <xiyou.wangcong@gmail.com> | 2014-05-12 16:52:02 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-05-14 15:33:47 -0400 |
commit | c9f2dba61b52d3cab70c176554cf955059a434ba (patch) | |
tree | 82ce153bd8926c9f6a83b8dc61e3a7092fc3c886 /net/sctp | |
parent | 122ff243f5f104194750ecbc76d5946dd1eec934 (diff) | |
download | op-kernel-dev-c9f2dba61b52d3cab70c176554cf955059a434ba.zip op-kernel-dev-c9f2dba61b52d3cab70c176554cf955059a434ba.tar.gz |
snmp: fix some left over of snmp stats
Fengguang reported the following sparse warning:
>> net/ipv6/proc.c:198:41: sparse: incorrect type in argument 1 (different address spaces)
net/ipv6/proc.c:198:41: expected void [noderef] <asn:3>*mib
net/ipv6/proc.c:198:41: got void [noderef] <asn:3>**pcpumib
Fixes: commit 698365fa1874aa7635d51667a3 (net: clean up snmp stats code)
Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Cc: David S. Miller <davem@davemloft.net>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp')
-rw-r--r-- | net/sctp/proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/proc.c b/net/sctp/proc.c index 0947f1e..34229ee 100644 --- a/net/sctp/proc.c +++ b/net/sctp/proc.c @@ -78,7 +78,7 @@ static int sctp_snmp_seq_show(struct seq_file *seq, void *v) for (i = 0; sctp_snmp_list[i].name != NULL; i++) seq_printf(seq, "%-32s\t%ld\n", sctp_snmp_list[i].name, - snmp_fold_field((void __percpu **)net->sctp.sctp_statistics, + snmp_fold_field(net->sctp.sctp_statistics, sctp_snmp_list[i].entry)); return 0; |