aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/igmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv4/igmp.c')
-rw-r--r--net/ipv4/igmp.c38
1 files changed, 4 insertions, 34 deletions
diff --git a/net/ipv4/igmp.c b/net/ipv4/igmp.c
index 2b6e59c4c0d0..7dbc282d4f9f 100644
--- a/net/ipv4/igmp.c
+++ b/net/ipv4/igmp.c
@@ -2410,23 +2410,8 @@ static const struct seq_operations igmp_mc_seq_ops = {
2410 2410
2411static int igmp_mc_seq_open(struct inode *inode, struct file *file) 2411static int igmp_mc_seq_open(struct inode *inode, struct file *file)
2412{ 2412{
2413 struct seq_file *seq; 2413 return seq_open_private(file, &igmp_mc_seq_ops,
2414 int rc = -ENOMEM; 2414 sizeof(struct igmp_mc_iter_state));
2415 struct igmp_mc_iter_state *s = kzalloc(sizeof(*s), GFP_KERNEL);
2416
2417 if (!s)
2418 goto out;
2419 rc = seq_open(file, &igmp_mc_seq_ops);
2420 if (rc)
2421 goto out_kfree;
2422
2423 seq = file->private_data;
2424 seq->private = s;
2425out:
2426 return rc;
2427out_kfree:
2428 kfree(s);
2429 goto out;
2430} 2415}
2431 2416
2432static const struct file_operations igmp_mc_seq_fops = { 2417static const struct file_operations igmp_mc_seq_fops = {
@@ -2584,23 +2569,8 @@ static const struct seq_operations igmp_mcf_seq_ops = {
2584 2569
2585static int igmp_mcf_seq_open(struct inode *inode, struct file *file) 2570static int igmp_mcf_seq_open(struct inode *inode, struct file *file)
2586{ 2571{
2587 struct seq_file *seq; 2572 return seq_open_private(file, &igmp_mcf_seq_ops,
2588 int rc = -ENOMEM; 2573 sizeof(struct igmp_mcf_iter_state));
2589 struct igmp_mcf_iter_state *s = kzalloc(sizeof(*s), GFP_KERNEL);
2590
2591 if (!s)
2592 goto out;
2593 rc = seq_open(file, &igmp_mcf_seq_ops);
2594 if (rc)
2595 goto out_kfree;
2596
2597 seq = file->private_data;
2598 seq->private = s;
2599out:
2600 return rc;
2601out_kfree:
2602 kfree(s);
2603 goto out;
2604} 2574}
2605 2575
2606static const struct file_operations igmp_mcf_seq_fops = { 2576static const struct file_operations igmp_mcf_seq_fops = {