Changes in uspace/srv/fs/cdfs/cdfs_ops.c [44ecf89:a727fb0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/cdfs/cdfs_ops.c
r44ecf89 ra727fb0 625 625 } 626 626 627 static uint32_t cdfs_size_block(service_id_t service_id) 628 { 629 uint32_t block_size = BLOCK_SIZE; 630 return block_size; 631 } 632 627 633 libfs_ops_t cdfs_libfs_ops = { 628 634 .root_get = cdfs_root_get, … … 641 647 .is_directory = cdfs_is_directory, 642 648 .is_file = cdfs_is_file, 643 .service_get = cdfs_service_get 649 .service_get = cdfs_service_get, 650 .size_block = cdfs_size_block 644 651 }; 645 652
Note:
See TracChangeset
for help on using the changeset viewer.