vfs_get_fs_node_from_path() didn't work correctly and ignored the mount_id

(ie. it only worked for absolute paths, but it shouldn't work for those at
all).


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17127 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2006-04-13 18:06:30 +00:00
parent cbb7d5038a
commit 9a11448fbd
+12 -2
View File
@@ -2750,11 +2750,21 @@ vfs_get_fs_node_from_path(mount_id mountID, const char *path, bool kernel, void
if (pathBuffer.InitCheck() != B_OK)
return B_NO_MEMORY;
fs_mount *mount;
status_t status = get_mount(mountID, &mount);
if (status < B_OK)
return status;
char *buffer = pathBuffer.LockBuffer();
strlcpy(buffer, path, pathBuffer.BufferSize());
struct vnode *vnode;
status_t status = path_to_vnode(buffer, true, &vnode, NULL, kernel);
struct vnode *vnode = mount->root_vnode;
inc_vnode_ref_count(vnode);
status = vnode_path_to_vnode(vnode, buffer, true, 0, &vnode, NULL, NULL);
put_mount(mount);
if (status < B_OK)
return status;