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:
@@ -13,6 +13,8 @@ struct dirent;
|
||||
struct stat;
|
||||
struct fs_info;
|
||||
|
||||
typedef dev_t mount_id;
|
||||
typedef ino_t vnode_id;
|
||||
|
||||
/* the file system's private data structures */
|
||||
typedef void *fs_volume;
|
||||
@@ -40,7 +42,7 @@ extern "C" {
|
||||
|
||||
struct fs_calls {
|
||||
/* general operations */
|
||||
status_t (*mount)(fs_id id, const char *device, void *args, fs_volume *_fs, vnode_id *_rootVnodeID);
|
||||
status_t (*mount)(mount_id id, const char *device, void *args, fs_volume *_fs, vnode_id *_rootVnodeID);
|
||||
status_t (*unmount)(fs_volume fs);
|
||||
|
||||
status_t (*read_fs_info)(fs_volume fs, struct fs_info *info);
|
||||
|
||||
Reference in New Issue
Block a user