summaryrefslogtreecommitdiffstats
path: root/fs/file_table.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2018-06-09 09:40:05 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2018-07-12 10:04:23 -0400
commitd93aa9d82aea80b80f225dbf9c7986df444d8106 (patch)
tree887b5626f375e6745e034e227eb0c583fbefad99 /fs/file_table.c
parentdbae8f2ca2f0586f4b80201c78ff0aed2a012ab5 (diff)
new wrapper: alloc_file_pseudo()
takes inode, vfsmount, name, O_... flags and file_operations and either returns a new struct file (in which case inode reference we held is consumed) or returns ERR_PTR(), in which case no refcounts are altered. converted aio_private_file() and sock_alloc_file() to it Acked-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/file_table.c')
-rw-r--r--fs/file_table.c27
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}
185EXPORT_SYMBOL(alloc_file); 185EXPORT_SYMBOL(alloc_file);
186 186
187struct 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}
212EXPORT_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 */
189static void __fput(struct file *file) 216static void __fput(struct file *file)