Changeset 1b20da0 in mainline for uspace/lib/ext4/src/ops.c
- Timestamp:
- 2018-02-28T17:52:03Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3061bc1
- Parents:
- df6ded8
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:26:03)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:52:03)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/src/ops.c
rdf6ded8 r1b20da0 110 110 { 111 111 ext4_node_t *enode = hash_table_get_inst(item, ext4_node_t, link); 112 return hash_combine(enode->instance->service_id, enode->inode_ref->index); 112 return hash_combine(enode->instance->service_id, enode->inode_ref->index); 113 113 } 114 114 … … 192 192 193 193 /** Get root node of filesystem specified by service_id. 194 * 194 * 195 195 * @param rfn Output pointer to loaded node 196 196 * @param service_id Device to load root node from … … 205 205 206 206 /** Check if specified name (component) matches with any directory entry. 207 * 207 * 208 208 * If match is found, load and return matching node. 209 209 * … … 272 272 } 273 273 274 /** Main function for getting node from the filesystem. 274 /** Main function for getting node from the filesystem. 275 275 * 276 276 * @param rfn Output point to loaded node if operation successful
Note:
See TracChangeset
for help on using the changeset viewer.