Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 67012
b: refs/heads/master
c: a662d4c
h: refs/heads/master
v: v3
  • Loading branch information
Pavel Emelyanov authored and David S. Miller committed Oct 10, 2007
1 parent 18c8ad8 commit 40b57d7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 61 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 31164088d72e1420e53f742b6c0c06f7343551dc
refs/heads/master: a662d4cb50d3976d2c9c9bac34119d0036e31d21
26 changes: 4 additions & 22 deletions trunk/net/irda/irlap.c
Original file line number Diff line number Diff line change
Expand Up @@ -1219,29 +1219,11 @@ static const struct seq_operations irlap_seq_ops = {

static int irlap_seq_open(struct inode *inode, struct file *file)
{
struct seq_file *seq;
int rc = -ENOMEM;
struct irlap_iter_state *s = kzalloc(sizeof(*s), GFP_KERNEL);
if (irlap == NULL)
return -EINVAL;

if (!s)
goto out;

if (irlap == NULL) {
rc = -EINVAL;
goto out_kfree;
}

rc = seq_open(file, &irlap_seq_ops);
if (rc)
goto out_kfree;

seq = file->private_data;
seq->private = s;
out:
return rc;
out_kfree:
kfree(s);
goto out;
return seq_open_private(file, &irlap_seq_ops,
sizeof(struct irlap_iter_state));
}

const struct file_operations irlap_seq_fops = {
Expand Down
21 changes: 2 additions & 19 deletions trunk/net/irda/irlmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -2003,27 +2003,10 @@ static const struct seq_operations irlmp_seq_ops = {

static int irlmp_seq_open(struct inode *inode, struct file *file)
{
struct seq_file *seq;
int rc = -ENOMEM;
struct irlmp_iter_state *s;

IRDA_ASSERT(irlmp != NULL, return -EINVAL;);

s = kmalloc(sizeof(*s), GFP_KERNEL);
if (!s)
goto out;

rc = seq_open(file, &irlmp_seq_ops);
if (rc)
goto out_kfree;

seq = file->private_data;
seq->private = s;
out:
return rc;
out_kfree:
kfree(s);
goto out;
return seq_open_private(file, &irlmp_seq_ops,
sizeof(struct irlmp_iter_state));
}

const struct file_operations irlmp_seq_fops = {
Expand Down
21 changes: 2 additions & 19 deletions trunk/net/irda/irttp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1884,25 +1884,8 @@ static const struct seq_operations irttp_seq_ops = {

static int irttp_seq_open(struct inode *inode, struct file *file)
{
struct seq_file *seq;
int rc = -ENOMEM;
struct irttp_iter_state *s;

s = kzalloc(sizeof(*s), GFP_KERNEL);
if (!s)
goto out;

rc = seq_open(file, &irttp_seq_ops);
if (rc)
goto out_kfree;

seq = file->private_data;
seq->private = s;
out:
return rc;
out_kfree:
kfree(s);
goto out;
return seq_open_private(file, &irttp_seq_ops,
sizeof(struct irttp_iter_state));
}

const struct file_operations irttp_seq_fops = {
Expand Down

0 comments on commit 40b57d7

Please sign in to comment.