aboutsummaryrefslogtreecommitdiffstats
path: root/fs/namei.c
diff options
context:
space:
mode:
authorMiklos Szeredi <mszeredi@suse.cz>2014-10-23 18:14:35 -0400
committerMiklos Szeredi <mszeredi@suse.cz>2014-10-23 18:14:35 -0400
commit4aa7c6346be395bdf776f82bbb2e3e2bc60bdd2b (patch)
treea2135754a04370e7fcf7b867b0f4fbeaa58b3521 /fs/namei.c
parentf114040e3ea6e07372334ade75d1ee0775c355e1 (diff)
vfs: add i_op->dentry_open()
Add a new inode operation i_op->dentry_open(). This is for stacked filesystems that want to return a struct file from a different filesystem. Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Diffstat (limited to 'fs/namei.c')
-rw-r--r--fs/namei.c9
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;