aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/arp.c
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@openvz.org>2007-10-10 05:29:29 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:55:33 -0400
commitcf7732e4cc14b56d593ff53352673e1fd5e3ba52 (patch)
tree3479e278b72f9d535a58066bc2a26238806252ce /net/ipv4/arp.c
parent39699037a5c94d7cd1363dfe48a50c78c643fd9a (diff)
[NET]: Make core networking code use seq_open_private
This concerns the ipv4 and ipv6 code mostly, but also the netlink and unix sockets. The netlink code is an example of how to use the __seq_open_private() call - it saves the net namespace on this private. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/arp.c')
-rw-r--r--net/ipv4/arp.c20
1 files changed, 2 insertions, 18 deletions
diff --git a/net/ipv4/arp.c b/net/ipv4/arp.c
index d8248198bcd7..36d6798947b5 100644
--- a/net/ipv4/arp.c
+++ b/net/ipv4/arp.c
@@ -1378,24 +1378,8 @@ static const struct seq_operations arp_seq_ops = {
1378 1378
1379static int arp_seq_open(struct inode *inode, struct file *file) 1379static int arp_seq_open(struct inode *inode, struct file *file)
1380{ 1380{
1381 struct seq_file *seq; 1381 return seq_open_private(file, &arp_seq_ops,
1382 int rc = -ENOMEM; 1382 sizeof(struct neigh_seq_state));
1383 struct neigh_seq_state *s = kzalloc(sizeof(*s), GFP_KERNEL);
1384
1385 if (!s)
1386 goto out;
1387
1388 rc = seq_open(file, &arp_seq_ops);
1389 if (rc)
1390 goto out_kfree;
1391
1392 seq = file->private_data;
1393 seq->private = s;
1394out:
1395 return rc;
1396out_kfree:
1397 kfree(s);
1398 goto out;
1399} 1383}
1400 1384
1401static const struct file_operations arp_seq_fops = { 1385static const struct file_operations arp_seq_fops = {