aboutsummaryrefslogtreecommitdiffstats
path: root/fs/dcache.c
diff options
context:
space:
mode:
authorSage Weil <sage@newdream.net>2012-01-10 12:04:37 -0500
committerSage Weil <sage@newdream.net>2012-01-12 14:00:28 -0500
commit46f72b349290d2bd7aecea38f02609d814332df6 (patch)
tree4d9adf3578e3cc526c6756b1e5165a65ba285648 /fs/dcache.c
parentd46cfba5363a163851dc768f717f34185527a472 (diff)
vfs: export symbol d_find_any_alias()
Ceph needs this. Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/dcache.c')
-rw-r--r--fs/dcache.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/fs/dcache.c b/fs/dcache.c
index 89509b5a090e..ba960051dfb7 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -1471,7 +1471,14 @@ static struct dentry * __d_find_any_alias(struct inode *inode)
1471 return alias; 1471 return alias;
1472} 1472}
1473 1473
1474static struct dentry * d_find_any_alias(struct inode *inode) 1474/**
1475 * d_find_any_alias - find any alias for a given inode
1476 * @inode: inode to find an alias for
1477 *
1478 * If any aliases exist for the given inode, take and return a
1479 * reference for one of them. If no aliases exist, return %NULL.
1480 */
1481struct dentry *d_find_any_alias(struct inode *inode)
1475{ 1482{
1476 struct dentry *de; 1483 struct dentry *de;
1477 1484
@@ -1480,7 +1487,7 @@ static struct dentry * d_find_any_alias(struct inode *inode)
1480 spin_unlock(&inode->i_lock); 1487 spin_unlock(&inode->i_lock);
1481 return de; 1488 return de;
1482} 1489}
1483 1490EXPORT_SYMBOL(d_find_any_alias);
1484 1491
1485/** 1492/**
1486 * d_obtain_alias - find or allocate a dentry for a given inode 1493 * d_obtain_alias - find or allocate a dentry for a given inode