Commit 02e5180d authored by Al Viro's avatar Al Viro

do_dentry_open(): take initialization of file->f_path to caller

... and get rid of a couple of arguments and a pointless reassignment
in finish_open() case.
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 2a027e7a
...@@ -667,8 +667,7 @@ int open_check_o_direct(struct file *f) ...@@ -667,8 +667,7 @@ int open_check_o_direct(struct file *f)
return 0; return 0;
} }
static int do_dentry_open(struct dentry *dentry, struct vfsmount *mnt, static int do_dentry_open(struct file *f,
struct file *f,
int (*open)(struct inode *, struct file *), int (*open)(struct inode *, struct file *),
const struct cred *cred) const struct cred *cred)
{ {
...@@ -682,9 +681,9 @@ static int do_dentry_open(struct dentry *dentry, struct vfsmount *mnt, ...@@ -682,9 +681,9 @@ static int do_dentry_open(struct dentry *dentry, struct vfsmount *mnt,
if (unlikely(f->f_flags & O_PATH)) if (unlikely(f->f_flags & O_PATH))
f->f_mode = FMODE_PATH; f->f_mode = FMODE_PATH;
inode = dentry->d_inode; inode = f->f_path.dentry->d_inode;
if (f->f_mode & FMODE_WRITE) { if (f->f_mode & FMODE_WRITE) {
error = __get_file_write_access(inode, mnt); error = __get_file_write_access(inode, f->f_path.mnt);
if (error) if (error)
goto cleanup_file; goto cleanup_file;
if (!special_file(inode->i_mode)) if (!special_file(inode->i_mode))
...@@ -692,8 +691,6 @@ static int do_dentry_open(struct dentry *dentry, struct vfsmount *mnt, ...@@ -692,8 +691,6 @@ static int do_dentry_open(struct dentry *dentry, struct vfsmount *mnt,
} }
f->f_mapping = inode->i_mapping; f->f_mapping = inode->i_mapping;
f->f_path.dentry = dentry;
f->f_path.mnt = mnt;
f->f_pos = 0; f->f_pos = 0;
file_sb_list_add(f, inode->i_sb); file_sb_list_add(f, inode->i_sb);
...@@ -740,15 +737,14 @@ static int do_dentry_open(struct dentry *dentry, struct vfsmount *mnt, ...@@ -740,15 +737,14 @@ static int do_dentry_open(struct dentry *dentry, struct vfsmount *mnt,
* here, so just reset the state. * here, so just reset the state.
*/ */
file_reset_write(f); file_reset_write(f);
mnt_drop_write(mnt); mnt_drop_write(f->f_path.mnt);
} }
} }
file_sb_list_del(f); file_sb_list_del(f);
f->f_path.dentry = NULL;
f->f_path.mnt = NULL;
cleanup_file: cleanup_file:
dput(dentry); path_put(&f->f_path);
mntput(mnt); f->f_path.mnt = NULL;
f->f_path.dentry = NULL;
return error; return error;
} }
...@@ -771,9 +767,9 @@ int finish_open(struct file *file, struct dentry *dentry, ...@@ -771,9 +767,9 @@ int finish_open(struct file *file, struct dentry *dentry,
BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */ BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
mntget(file->f_path.mnt); mntget(file->f_path.mnt);
dget(dentry); file->f_path.dentry = dget(dentry);
error = do_dentry_open(dentry, file->f_path.mnt, file, open, current_cred()); error = do_dentry_open(file, open, current_cred());
if (!error) if (!error)
*opened |= FILE_OPENED; *opened |= FILE_OPENED;
...@@ -821,7 +817,9 @@ struct file *dentry_open(struct dentry *dentry, struct vfsmount *mnt, int flags, ...@@ -821,7 +817,9 @@ struct file *dentry_open(struct dentry *dentry, struct vfsmount *mnt, int flags,
} }
f->f_flags = flags; f->f_flags = flags;
error = do_dentry_open(dentry, mnt, f, NULL, cred); f->f_path.mnt = mnt;
f->f_path.dentry = dentry;
error = do_dentry_open(f, NULL, cred);
if (!error) { if (!error) {
error = open_check_o_direct(f); error = open_check_o_direct(f);
if (error) { if (error) {
......
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