diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-02-12 22:15:47 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-03-20 21:29:37 -0400 |
commit | 32991ab305ace7017c62f8eecbe5eb36dc32e13b (patch) | |
tree | 7a802091fa9f152f38577a4eeaa24937c4b4b2c9 /fs/dcache.c | |
parent | 318ceed088497d1ca839b1172518ac4cc7096b82 (diff) | |
download | linux-3.10-32991ab305ace7017c62f8eecbe5eb36dc32e13b.tar.gz linux-3.10-32991ab305ace7017c62f8eecbe5eb36dc32e13b.tar.bz2 linux-3.10-32991ab305ace7017c62f8eecbe5eb36dc32e13b.zip |
vfs: d_alloc_root() gone
all callers converted to d_make_root() by now
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/dcache.c')
-rw-r--r-- | fs/dcache.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/fs/dcache.c b/fs/dcache.c index bcbdb33fcc2..a78e145a435 100644 --- a/fs/dcache.c +++ b/fs/dcache.c @@ -1443,30 +1443,6 @@ struct dentry *d_instantiate_unique(struct dentry *entry, struct inode *inode) EXPORT_SYMBOL(d_instantiate_unique); -/** - * d_alloc_root - allocate root dentry - * @root_inode: inode to allocate the root for - * - * Allocate a root ("/") dentry for the inode given. The inode is - * instantiated and returned. %NULL is returned if there is insufficient - * memory or the inode passed is %NULL. - */ - -struct dentry * d_alloc_root(struct inode * root_inode) -{ - struct dentry *res = NULL; - - if (root_inode) { - static const struct qstr name = { .name = "/", .len = 1 }; - - res = __d_alloc(root_inode->i_sb, &name); - if (res) - d_instantiate(res, root_inode); - } - return res; -} -EXPORT_SYMBOL(d_alloc_root); - struct dentry *d_make_root(struct inode *root_inode) { struct dentry *res = NULL; |