Changeset fd6dc08 in mainline for uspace/lib/ext4/src/ops.c
- Timestamp:
- 2021-10-16T21:48:59Z (4 years ago)
- Children:
- 75357c5
- Parents:
- 0e125698
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/src/ops.c
r0e125698 rfd6dc08 810 810 } 811 811 812 /** Extract device identifier from node.812 /** Get service ID for a service-special file. 813 813 * 814 814 * @param node Node to extract id from 815 815 * 816 * @return id of device, where is the filesystem816 * @return Service ID for a service-special file, zero for a regular file. 817 817 * 818 818 */ 819 819 service_id_t ext4_service_get(fs_node_t *fn) 820 820 { 821 ext4_node_t *enode = EXT4_NODE(fn); 822 return enode->instance->service_id; 821 return 0; 823 822 } 824 823
Note:
See TracChangeset
for help on using the changeset viewer.