diff options
Diffstat (limited to 'net/appletalk')
-rw-r--r-- | net/appletalk/aarp.c | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/net/appletalk/aarp.c b/net/appletalk/aarp.c index 18058bbc7962..61166f66479f 100644 --- a/net/appletalk/aarp.c +++ b/net/appletalk/aarp.c | |||
@@ -1033,25 +1033,8 @@ static const struct seq_operations aarp_seq_ops = { | |||
1033 | 1033 | ||
1034 | static int aarp_seq_open(struct inode *inode, struct file *file) | 1034 | static int aarp_seq_open(struct inode *inode, struct file *file) |
1035 | { | 1035 | { |
1036 | struct seq_file *seq; | 1036 | return seq_open_private(file, &aarp_seq_ops, |
1037 | int rc = -ENOMEM; | 1037 | sizeof(struct aarp_iter_state)); |
1038 | struct aarp_iter_state *s = kmalloc(sizeof(*s), GFP_KERNEL); | ||
1039 | |||
1040 | if (!s) | ||
1041 | goto out; | ||
1042 | |||
1043 | rc = seq_open(file, &aarp_seq_ops); | ||
1044 | if (rc) | ||
1045 | goto out_kfree; | ||
1046 | |||
1047 | seq = file->private_data; | ||
1048 | seq->private = s; | ||
1049 | memset(s, 0, sizeof(*s)); | ||
1050 | out: | ||
1051 | return rc; | ||
1052 | out_kfree: | ||
1053 | kfree(s); | ||
1054 | goto out; | ||
1055 | } | 1038 | } |
1056 | 1039 | ||
1057 | const struct file_operations atalk_seq_arp_fops = { | 1040 | const struct file_operations atalk_seq_arp_fops = { |