aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/udplite.c
diff options
context:
space:
mode:
authorDenis V. Lunev <den@openvz.org>2008-03-28 18:24:26 -0700
committerDavid S. Miller <davem@davemloft.net>2008-03-28 18:24:26 -0700
commitdda61925f84d89e2f2a4597d6298a05a2bc05c20 (patch)
tree8d66baedac68ed6a1c026f0142ab405f5c733597 /net/ipv4/udplite.c
parent[UDP]: No need to check afinfo != NULL in udp_proc_(un)register. (diff)
downloadlinux-dev-dda61925f84d89e2f2a4597d6298a05a2bc05c20.tar.xz
linux-dev-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/ipv4/udplite.c')
-rw-r--r--net/ipv4/udplite.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/ipv4/udplite.c b/net/ipv4/udplite.c
index 7c1e0271c0db..4add87553bce 100644
--- a/net/ipv4/udplite.c
+++ b/net/ipv4/udplite.c
@@ -77,8 +77,10 @@ static struct udp_seq_afinfo udplite4_seq_afinfo = {
.name = "udplite",
.family = AF_INET,
.hashtable = udplite_hash,
- .seq_show = udp4_seq_show,
.seq_fops = &udplite4_seq_fops,
+ .seq_ops = {
+ .show = udp4_seq_show,
+ },
};
static int udplite4_proc_init_net(struct net *net)