diff options
author | Denis V. Lunev <den@openvz.org> | 2008-03-28 18:24:26 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-03-28 18:24:26 -0700 |
commit | dda61925f84d89e2f2a4597d6298a05a2bc05c20 (patch) | |
tree | 8d66baedac68ed6a1c026f0142ab405f5c733597 /net/ipv6/udp.c | |
parent | 997feb5e7a24ce155c1d3bea9d0b5c6530bb6197 (diff) | |
download | talos-op-linux-dda61925f84d89e2f2a4597d6298a05a2bc05c20.tar.gz talos-op-linux-dda61925f84d89e2f2a4597d6298a05a2bc05c20.zip |
[UDP]: Move seq_ops from udp_iter_state to udp_seq_afinfo.
No need to create seq_operations for each instance of 'netstat'.
Signed-off-by: Denis V. Lunev <den@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/udp.c')
-rw-r--r-- | net/ipv6/udp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c index 463ae4d448a3..e35921a46689 100644 --- a/net/ipv6/udp.c +++ b/net/ipv6/udp.c @@ -983,8 +983,10 @@ static struct udp_seq_afinfo udp6_seq_afinfo = { .name = "udp6", .family = AF_INET6, .hashtable = udp_hash, - .seq_show = udp6_seq_show, .seq_fops = &udp6_seq_fops, + .seq_ops = { + .show = udp6_seq_show, + }, }; int udp6_proc_init(struct net *net) |