|
@@ -1471,7 +1471,14 @@ static struct dentry * __d_find_any_alias(struct inode *inode)
|
|
|
return alias;
|
|
|
}
|
|
|
|
|
|
-static struct dentry * d_find_any_alias(struct inode *inode)
|
|
|
+/**
|
|
|
+ * d_find_any_alias - find any alias for a given inode
|
|
|
+ * @inode: inode to find an alias for
|
|
|
+ *
|
|
|
+ * If any aliases exist for the given inode, take and return a
|
|
|
+ * reference for one of them. If no aliases exist, return %NULL.
|
|
|
+ */
|
|
|
+struct dentry *d_find_any_alias(struct inode *inode)
|
|
|
{
|
|
|
struct dentry *de;
|
|
|
|
|
@@ -1480,7 +1487,7 @@ static struct dentry * d_find_any_alias(struct inode *inode)
|
|
|
spin_unlock(&inode->i_lock);
|
|
|
return de;
|
|
|
}
|
|
|
-
|
|
|
+EXPORT_SYMBOL(d_find_any_alias);
|
|
|
|
|
|
/**
|
|
|
* d_obtain_alias - find or allocate a dentry for a given inode
|