Changeset fb7e5a9a in mainline for uspace/srv/fs/mfs/mfs_ops.c
- Timestamp:
- 2011-09-06T20:03:31Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 038b289, f7d6b30
- Parents:
- 7a46bfe (diff), 7e9fce6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/mfs/mfs_ops.c
r7a46bfe rfb7e5a9a 55 55 static int mfs_has_children(bool *has_children, fs_node_t *fsnode); 56 56 static int mfs_root_get(fs_node_t **rfn, service_id_t service_id); 57 static service_id_t mfs_ device_get(fs_node_t *fsnode);57 static service_id_t mfs_service_get(fs_node_t *fsnode); 58 58 static aoff64_t mfs_size_get(fs_node_t *node); 59 59 static int mfs_match(fs_node_t **rfn, fs_node_t *pfn, const char *component); … … 81 81 .size_get = mfs_size_get, 82 82 .root_get = mfs_root_get, 83 . device_get = mfs_device_get,83 .service_get = mfs_service_get, 84 84 .is_directory = mfs_is_directory, 85 85 .is_file = mfs_is_file, … … 325 325 } 326 326 327 service_id_t mfs_ device_get(fs_node_t *fsnode)327 service_id_t mfs_service_get(fs_node_t *fsnode) 328 328 { 329 329 struct mfs_node *node = fsnode->data;
Note:
See TracChangeset
for help on using the changeset viewer.