From 7b5e243a4d1376b8ddb063074d10f6dcc30e5b28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Wed, 27 Oct 2004 15:22:00 +0000 Subject: [PATCH] Added prototype for the new vfs_get_fs_node_from_path() function. It's currently only used in devfs for the publication of partitions. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9533 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/vfs.h | 1 + 1 file changed, 1 insertion(+) diff --git a/headers/private/kernel/vfs.h b/headers/private/kernel/vfs.h index 77d52a4756..d7113ed5fa 100755 --- a/headers/private/kernel/vfs.h +++ b/headers/private/kernel/vfs.h @@ -76,6 +76,7 @@ status_t vfs_read_pages(void *vnode, void *cookie, off_t pos, const iovec *vecs, status_t vfs_write_pages(void *vnode, void *cookie, off_t pos, const iovec *vecs, size_t count, size_t *_numBytes); status_t vfs_get_vnode_cache(void *vnode, void **_cache); status_t vfs_get_file_map( void *_vnode, off_t offset, size_t size, struct file_io_vec *vecs, size_t *_count); +status_t vfs_get_fs_node_from_path(mount_id mountID, const char *path, bool kernel, void **_node); /* special module convenience call */ status_t vfs_get_module_path(const char *basePath, const char *moduleName, char *pathBuffer, size_t bufferSize);