Changeset e54ba607 in mainline
- Timestamp:
- 2011-03-17T20:10:42Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a58ae2
- Parents:
- 3b08178
- Location:
- uspace/srv/fs/minixfs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/minixfs/mfs.h
r3b08178 re54ba607 88 88 }; 89 89 90 /*MinixFS node in core*/ 91 struct mfs_node { 92 union { 93 struct mfs_inode *ino; 94 struct mfs2_inode *ino2; 95 }; 96 97 struct mfs_instance *instance; 98 }; 99 90 100 extern void mfs_mounted(ipc_callid_t rid, ipc_call_t *request); 91 101 extern void mfs_mount(ipc_callid_t rid, ipc_call_t *request); 102 extern devmap_handle_t mfs_device_get(fs_node_t *fsnode); 92 103 extern int mfs_get_instance(devmap_handle_t handle, 93 104 struct mfs_instance **instance); -
uspace/srv/fs/minixfs/mfs_ops.c
r3b08178 re54ba607 37 37 #include "mfs.h" 38 38 #include "mfs_utils.h" 39 #include "../../vfs/vfs.h"40 39 41 40 static bool check_magic_number(uint16_t magic, bool *native, … … 45 44 static FIBRIL_MUTEX_INITIALIZE(inst_list_mutex); 46 45 47 libfs_ops_t mfs_libfs_ops; 46 libfs_ops_t mfs_libfs_ops = { 47 .device_get = mfs_device_get 48 }; 48 49 49 50 void mfs_mounted(ipc_callid_t rid, ipc_call_t *request) … … 195 196 } 196 197 198 devmap_handle_t mfs_device_get(fs_node_t *fsnode) 199 { 200 struct mfs_node *node = fsnode->data; 201 return node->instance->handle; 202 } 203 197 204 /* 198 205 * Find a filesystem instance given the devmap handle
Note:
See TracChangeset
for help on using the changeset viewer.