diff options
Diffstat (limited to 'fs/file_table.c')
-rw-r--r-- | fs/file_table.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/fs/file_table.c b/fs/file_table.c index 9b70ed2bbc4e..6b3723909342 100644 --- a/fs/file_table.c +++ b/fs/file_table.c | |||
@@ -184,6 +184,33 @@ struct file *alloc_file(const struct path *path, int flags, | |||
184 | } | 184 | } |
185 | EXPORT_SYMBOL(alloc_file); | 185 | EXPORT_SYMBOL(alloc_file); |
186 | 186 | ||
187 | struct file *alloc_file_pseudo(struct inode *inode, struct vfsmount *mnt, | ||
188 | const char *name, int flags, | ||
189 | const struct file_operations *fops) | ||
190 | { | ||
191 | static const struct dentry_operations anon_ops = { | ||
192 | .d_dname = simple_dname | ||
193 | }; | ||
194 | struct qstr this = QSTR_INIT(name, strlen(name)); | ||
195 | struct path path; | ||
196 | struct file *file; | ||
197 | |||
198 | path.dentry = d_alloc_pseudo(mnt->mnt_sb, &this); | ||
199 | if (!path.dentry) | ||
200 | return ERR_PTR(-ENOMEM); | ||
201 | if (!mnt->mnt_sb->s_d_op) | ||
202 | d_set_d_op(path.dentry, &anon_ops); | ||
203 | path.mnt = mntget(mnt); | ||
204 | d_instantiate(path.dentry, inode); | ||
205 | file = alloc_file(&path, flags, fops); | ||
206 | if (IS_ERR(file)) { | ||
207 | ihold(inode); | ||
208 | path_put(&path); | ||
209 | } | ||
210 | return file; | ||
211 | } | ||
212 | EXPORT_SYMBOL(alloc_file_pseudo); | ||
213 | |||
187 | /* the real guts of fput() - releasing the last reference to file | 214 | /* the real guts of fput() - releasing the last reference to file |
188 | */ | 215 | */ |
189 | static void __fput(struct file *file) | 216 | static void __fput(struct file *file) |