Changeset 06901c6b in mainline for uspace/srv
- Timestamp:
- 2008-04-14T05:15:16Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e13d1feb
- Parents:
- c9f6e49f
- Location:
- uspace/srv/fs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_ops.c
rc9f6e49f r06901c6b 275 275 276 276 return node; 277 } 278 279 static void fat_node_put(void *node) 280 { 281 /* TODO */ 277 282 } 278 283 … … 415 420 .match = fat_match, 416 421 .node_get = fat_node_get, 422 .node_put = fat_node_put, 417 423 .create = NULL, 418 424 .destroy = NULL, -
uspace/srv/fs/tmpfs/tmpfs_ops.c
rc9f6e49f r06901c6b 72 72 static void *tmpfs_match(void *, const char *); 73 73 static void *tmpfs_node_get(dev_handle_t, fs_index_t, fs_index_t); 74 static void tmpfs_node_put(void *); 74 75 static void *tmpfs_create_node(int); 75 76 static bool tmpfs_link_node(void *, void *, const char *); … … 122 123 .match = tmpfs_match, 123 124 .node_get = tmpfs_node_get, 125 .node_put = tmpfs_node_put, 124 126 .create = tmpfs_create_node, 125 127 .destroy = tmpfs_destroy_node, … … 274 276 return NULL; 275 277 return hash_table_get_instance(lnk, tmpfs_dentry_t, dh_link); 278 } 279 280 void tmpfs_node_put(void *node) 281 { 282 /* nothing to do */ 276 283 } 277 284
Note:
See TracChangeset
for help on using the changeset viewer.