aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Jones <[email protected]>2014-10-09 15:28:03 -0700
committerLinus Torvalds <[email protected]>2014-10-09 22:25:57 -0400
commitb208ce32927ac2c4bf14edebfb3197acd7673165 (patch)
treefeb00d4c9c4f12aa6a5f14b6c3c74b6f6d95b4b3
parent703394c1005caeccaaf64945c1b6d6cc3af0cd1d (diff)
mm/slab.c: use __seq_open_private() instead of seq_open()
Using __seq_open_private() removes boilerplate code from slabstats_open() The resultant code is shorter and easier to follow. This patch does not change any functionality. Signed-off-by: Rob Jones <[email protected]> Acked-by: Christoph Lameter <[email protected]> Cc: Pekka Enberg <[email protected]> Cc: David Rientjes <[email protected]> Cc: Joonsoo Kim <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--mm/slab.c22
1 files changed, 9 insertions, 13 deletions
diff --git a/mm/slab.c b/mm/slab.c
index 655d65c3f010..154aac8411c5 100644
--- a/mm/slab.c
+++ b/mm/slab.c
@@ -4178,19 +4178,15 @@ static const struct seq_operations slabstats_op = {
static int slabstats_open(struct inode *inode, struct file *file)
{
- unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
- int ret = -ENOMEM;
- if (n) {
- ret = seq_open(file, &slabstats_op);
- if (!ret) {
- struct seq_file *m = file->private_data;
- *n = PAGE_SIZE / (2 * sizeof(unsigned long));
- m->private = n;
- n = NULL;
- }
- kfree(n);
- }
- return ret;
+ unsigned long *n;
+
+ n = __seq_open_private(file, &slabstats_op, PAGE_SIZE);
+ if (!n)
+ return -ENOMEM;
+
+ *n = PAGE_SIZE / (2 * sizeof(unsigned long));
+
+ return 0;
}
static const struct file_operations proc_slabstats_operations = {