Commit d5d96226 authored by Rob Jones's avatar Rob Jones Committed by David Howells

fs/fscache/object-list.c: use __seq_open_private()

Reduce boilerplate code by using __seq_open_private() instead of seq_open()
in fscache_objlist_open().
Signed-off-by: default avatarRob Jones <rob.jones@codethink.co.uk>
Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Acked-by: default avatarSteve Dickson <steved@redhat.com>
parent a30efe26
...@@ -380,26 +380,14 @@ static void fscache_objlist_config(struct fscache_objlist_data *data) ...@@ -380,26 +380,14 @@ static void fscache_objlist_config(struct fscache_objlist_data *data)
static int fscache_objlist_open(struct inode *inode, struct file *file) static int fscache_objlist_open(struct inode *inode, struct file *file)
{ {
struct fscache_objlist_data *data; struct fscache_objlist_data *data;
struct seq_file *m;
int ret;
ret = seq_open(file, &fscache_objlist_ops); data = __seq_open_private(file, &fscache_objlist_ops, sizeof(*data));
if (ret < 0) if (!data)
return ret;
m = file->private_data;
/* buffer for key extraction */
data = kmalloc(sizeof(struct fscache_objlist_data), GFP_KERNEL);
if (!data) {
seq_release(inode, file);
return -ENOMEM; return -ENOMEM;
}
/* get the configuration key */ /* get the configuration key */
fscache_objlist_config(data); fscache_objlist_config(data);
m->private = data;
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment