Renamed fs_id to mount_id.

Moved typedefs for mount_id and vnode_id to fs_interface.h.
Removed some unused stuff in ktypes.h.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1173 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2002-09-25 13:57:06 +00:00
parent ba8080175e
commit 4dc5ecd3cb
3 changed files with 7 additions and 20 deletions
+3 -3
View File
@@ -41,9 +41,9 @@ int vfs_setrlimit(int resource, const struct rlimit * rlp);
image_id vfs_load_fs_module(const char *path);
/* calls needed by fs internals */
int vfs_get_vnode(fs_id fsid, vnode_id vnid, fs_vnode *v);
int vfs_put_vnode(fs_id fsid, vnode_id vnid);
int vfs_remove_vnode(fs_id fsid, vnode_id vnid);
int vfs_get_vnode(mount_id mountID, vnode_id vnodeID, fs_vnode *v);
int vfs_put_vnode(mount_id mountID, vnode_id vnodeID);
int vfs_remove_vnode(mount_id mountID, vnode_id vnodeID);
/* calls needed by the VM for paging */
int vfs_get_vnode_from_fd(int fd, bool kernel, void **vnode);