Add vfs_ prefix to resolve_vnode_to_covering_vnode()
This commit is contained in:
@@ -143,7 +143,7 @@ status_t vfs_create_special_node(const char *path, fs_vnode *subVnode,
|
|||||||
struct vnode **_createdVnode);
|
struct vnode **_createdVnode);
|
||||||
|
|
||||||
/* service call for the node monitor */
|
/* service call for the node monitor */
|
||||||
status_t resolve_vnode_to_covering_vnode(dev_t mountID, ino_t nodeID,
|
status_t vfs_resolve_vnode_to_covering_vnode(dev_t mountID, ino_t nodeID,
|
||||||
dev_t *resolvedMountID, ino_t *resolvedNodeID);
|
dev_t *resolvedMountID, ino_t *resolvedNodeID);
|
||||||
|
|
||||||
/* calls the syscall dispatcher should use for user file I/O */
|
/* calls the syscall dispatcher should use for user file I/O */
|
||||||
|
|||||||
@@ -687,7 +687,7 @@ NodeMonitorService::NotifyEntryMoved(dev_t device, ino_t fromDirectory,
|
|||||||
// If node is a mount point, we need to resolve it to the mounted
|
// If node is a mount point, we need to resolve it to the mounted
|
||||||
// volume's root node.
|
// volume's root node.
|
||||||
dev_t nodeDevice = device;
|
dev_t nodeDevice = device;
|
||||||
resolve_vnode_to_covering_vnode(device, node, &nodeDevice, &node);
|
vfs_resolve_vnode_to_covering_vnode(device, node, &nodeDevice, &node);
|
||||||
|
|
||||||
RecursiveLocker locker(fRecursiveLock);
|
RecursiveLocker locker(fRecursiveLock);
|
||||||
|
|
||||||
|
|||||||
@@ -1958,7 +1958,7 @@ get_root_vnode(bool kernel)
|
|||||||
- another error code, if something went wrong.
|
- another error code, if something went wrong.
|
||||||
*/
|
*/
|
||||||
status_t
|
status_t
|
||||||
resolve_vnode_to_covering_vnode(dev_t mountID, ino_t nodeID,
|
vfs_resolve_vnode_to_covering_vnode(dev_t mountID, ino_t nodeID,
|
||||||
dev_t* resolvedMountID, ino_t* resolvedNodeID)
|
dev_t* resolvedMountID, ino_t* resolvedNodeID)
|
||||||
{
|
{
|
||||||
// get the node
|
// get the node
|
||||||
|
|||||||
Reference in New Issue
Block a user