aboutsummaryrefslogtreecommitdiffstats
path: root/fs/dcache.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/dcache.c')
-rw-r--r--fs/dcache.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/fs/dcache.c b/fs/dcache.c
index 11828de68dce..e441941c834d 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -1466,30 +1466,6 @@ struct dentry *d_instantiate_unique(struct dentry *entry, struct inode *inode)
1466 1466
1467EXPORT_SYMBOL(d_instantiate_unique); 1467EXPORT_SYMBOL(d_instantiate_unique);
1468 1468
1469/**
1470 * d_alloc_root - allocate root dentry
1471 * @root_inode: inode to allocate the root for
1472 *
1473 * Allocate a root ("/") dentry for the inode given. The inode is
1474 * instantiated and returned. %NULL is returned if there is insufficient
1475 * memory or the inode passed is %NULL.
1476 */
1477
1478struct dentry * d_alloc_root(struct inode * root_inode)
1479{
1480 struct dentry *res = NULL;
1481
1482 if (root_inode) {
1483 static const struct qstr name = { .name = "/", .len = 1 };
1484
1485 res = __d_alloc(root_inode->i_sb, &name);
1486 if (res)
1487 d_instantiate(res, root_inode);
1488 }
1489 return res;
1490}
1491EXPORT_SYMBOL(d_alloc_root);
1492
1493struct dentry *d_make_root(struct inode *root_inode) 1469struct dentry *d_make_root(struct inode *root_inode)
1494{ 1470{
1495 struct dentry *res = NULL; 1471 struct dentry *res = NULL;