Skip to content

Commit

Permalink
proc: cleanup: use seq_release_private() where appropriate
Browse files Browse the repository at this point in the history
We can save some lines of code by using seq_release_private().

Signed-off-by: Martin Peschke <mp3@de.ibm.com>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Martin Peschke authored and Linus Torvalds committed May 8, 2007
1 parent 5a0c6a0 commit 09f0892
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions fs/proc/proc_misc.c
Original file line number Diff line number Diff line change
Expand Up @@ -428,18 +428,11 @@ static int slabstats_open(struct inode *inode, struct file *file)
return ret;
}

static int slabstats_release(struct inode *inode, struct file *file)
{
struct seq_file *m = file->private_data;
kfree(m->private);
return seq_release(inode, file);
}

static const struct file_operations proc_slabstats_operations = {
.open = slabstats_open,
.read = seq_read,
.llseek = seq_lseek,
.release = slabstats_release,
.release = seq_release_private,
};
#endif
#endif
Expand Down

0 comments on commit 09f0892

Please sign in to comment.