GFS2: gfs2_atomic_open(): simplify the use of finish_no_open()
In ->atomic_open(inode, dentry, file, opened) calling finish_no_open(file, NULL) is equivalent to dget(dentry); return finish_no_open(file, dentry); No need to open-code that... Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
This commit is contained in:
parent
9265f1d0c7
commit
ec7d879c45
@ -1245,11 +1245,8 @@ static int gfs2_atomic_open(struct inode *dir, struct dentry *dentry,
|
|||||||
if (d != NULL)
|
if (d != NULL)
|
||||||
dentry = d;
|
dentry = d;
|
||||||
if (dentry->d_inode) {
|
if (dentry->d_inode) {
|
||||||
if (!(*opened & FILE_OPENED)) {
|
if (!(*opened & FILE_OPENED))
|
||||||
if (d == NULL)
|
return finish_no_open(file, d);
|
||||||
dget(dentry);
|
|
||||||
return finish_no_open(file, dentry);
|
|
||||||
}
|
|
||||||
dput(d);
|
dput(d);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user