Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 67011
b: refs/heads/master
c: 3116408
h: refs/heads/master
i:
  67009: 831c7b6
  67007: 69f8841
v: v3
  • Loading branch information
Pavel Emelyanov authored and David S. Miller committed Oct 10, 2007
1 parent 14b8499 commit 18c8ad8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 36 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: e2da59133880976586b2d9d81d798222ecafa566
refs/heads/master: 31164088d72e1420e53f742b6c0c06f7343551dc
20 changes: 2 additions & 18 deletions trunk/net/decnet/dn_neigh.c
Original file line number Diff line number Diff line change
Expand Up @@ -580,24 +580,8 @@ static const struct seq_operations dn_neigh_seq_ops = {

static int dn_neigh_seq_open(struct inode *inode, struct file *file)
{
struct seq_file *seq;
int rc = -ENOMEM;
struct neigh_seq_state *s = kzalloc(sizeof(*s), GFP_KERNEL);

if (!s)
goto out;

rc = seq_open(file, &dn_neigh_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, &dn_neigh_seq_ops,
sizeof(struct neigh_seq_state));
}

static const struct file_operations dn_neigh_seq_fops = {
Expand Down
19 changes: 2 additions & 17 deletions trunk/net/decnet/dn_route.c
Original file line number Diff line number Diff line change
Expand Up @@ -1739,23 +1739,8 @@ static const struct seq_operations dn_rt_cache_seq_ops = {

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

s = kzalloc(sizeof(*s), GFP_KERNEL);
if (!s)
goto out;
rc = seq_open(file, &dn_rt_cache_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, &dn_rt_cache_seq_ops,
sizeof(struct dn_rt_cache_iter_state));
}

static const struct file_operations dn_rt_cache_seq_fops = {
Expand Down

0 comments on commit 18c8ad8

Please sign in to comment.