diff options
Diffstat (limited to 'fs/namei.c')
-rw-r--r-- | fs/namei.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/fs/namei.c b/fs/namei.c index 43927d14db67..75306b3c9526 100644 --- a/fs/namei.c +++ b/fs/namei.c | |||
@@ -3064,9 +3064,12 @@ finish_open_created: | |||
3064 | error = may_open(&nd->path, acc_mode, open_flag); | 3064 | error = may_open(&nd->path, acc_mode, open_flag); |
3065 | if (error) | 3065 | if (error) |
3066 | goto out; | 3066 | goto out; |
3067 | file->f_path.mnt = nd->path.mnt; | 3067 | |
3068 | error = finish_open(file, nd->path.dentry, NULL, opened); | 3068 | BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */ |
3069 | if (error) { | 3069 | error = vfs_open(&nd->path, file, current_cred()); |
3070 | if (!error) { | ||
3071 | *opened |= FILE_OPENED; | ||
3072 | } else { | ||
3070 | if (error == -EOPENSTALE) | 3073 | if (error == -EOPENSTALE) |
3071 | goto stale_open; | 3074 | goto stale_open; |
3072 | goto out; | 3075 | goto out; |