mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 12:43:29 +02:00
add prefix to fs_context->log
... turning it into struct p_log embedded into fs_context. Initialize the prefix with fs_type->name, turning fs_parse() into a trivial inline wrapper for __fs_parse(). This makes fs_parameter_description->name completely unused. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
10
fs/fsopen.c
10
fs/fsopen.c
@@ -25,7 +25,7 @@ static ssize_t fscontext_read(struct file *file,
|
||||
char __user *_buf, size_t len, loff_t *pos)
|
||||
{
|
||||
struct fs_context *fc = file->private_data;
|
||||
struct fc_log *log = fc->log;
|
||||
struct fc_log *log = fc->log.log;
|
||||
unsigned int logsize = ARRAY_SIZE(log->buffer);
|
||||
ssize_t ret;
|
||||
char *p;
|
||||
@@ -97,11 +97,11 @@ static int fscontext_create_fd(struct fs_context *fc, unsigned int o_flags)
|
||||
|
||||
static int fscontext_alloc_log(struct fs_context *fc)
|
||||
{
|
||||
fc->log = kzalloc(sizeof(*fc->log), GFP_KERNEL);
|
||||
if (!fc->log)
|
||||
fc->log.log = kzalloc(sizeof(*fc->log.log), GFP_KERNEL);
|
||||
if (!fc->log.log)
|
||||
return -ENOMEM;
|
||||
refcount_set(&fc->log->usage, 1);
|
||||
fc->log->owner = fc->fs_type->owner;
|
||||
refcount_set(&fc->log.log->usage, 1);
|
||||
fc->log.log->owner = fc->fs_type->owner;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user