diff options
author | Martin Peschke <mp3@de.ibm.com> | 2007-05-08 03:29:26 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 14:15:09 -0400 |
commit | 09f0892ec7f8068ba1d1fcef4d1fca23ec96e0dd (patch) | |
tree | 1ff23e62d08a673cb29fc63c33e0381564e9dab3 /fs/proc/proc_misc.c | |
parent | 5a0c6a0d1ae97473291f479ef64573d6b2c0e2d5 (diff) |
proc: cleanup: use seq_release_private() where appropriate
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>
Diffstat (limited to 'fs/proc/proc_misc.c')
-rw-r--r-- | fs/proc/proc_misc.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/fs/proc/proc_misc.c b/fs/proc/proc_misc.c index 9ad4978700e0..5fd49e47f83a 100644 --- a/fs/proc/proc_misc.c +++ b/fs/proc/proc_misc.c | |||
@@ -428,18 +428,11 @@ static int slabstats_open(struct inode *inode, struct file *file) | |||
428 | return ret; | 428 | return ret; |
429 | } | 429 | } |
430 | 430 | ||
431 | static int slabstats_release(struct inode *inode, struct file *file) | ||
432 | { | ||
433 | struct seq_file *m = file->private_data; | ||
434 | kfree(m->private); | ||
435 | return seq_release(inode, file); | ||
436 | } | ||
437 | |||
438 | static const struct file_operations proc_slabstats_operations = { | 431 | static const struct file_operations proc_slabstats_operations = { |
439 | .open = slabstats_open, | 432 | .open = slabstats_open, |
440 | .read = seq_read, | 433 | .read = seq_read, |
441 | .llseek = seq_lseek, | 434 | .llseek = seq_lseek, |
442 | .release = slabstats_release, | 435 | .release = seq_release_private, |
443 | }; | 436 | }; |
444 | #endif | 437 | #endif |
445 | #endif | 438 | #endif |