hostfs: Remove superfluous test in hostfs_open()
Signed-off-by: Richard Weinberger <richard@nod.at>
This commit is contained in:
parent
7f74a66879
commit
112a5da717
|
@ -318,9 +318,7 @@ static int hostfs_open(struct inode *ino, struct file *file)
|
|||
if (mode & FMODE_READ)
|
||||
r = 1;
|
||||
if (mode & FMODE_WRITE)
|
||||
w = 1;
|
||||
if (w)
|
||||
r = 1;
|
||||
r = w = 1;
|
||||
|
||||
name = dentry_name(file->f_path.dentry);
|
||||
if (name == NULL)
|
||||
|
|
Loading…
Reference in New Issue