Changeset 951f32ce in mainline
- Timestamp:
- 2013-07-10T21:06:23Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 990ab7d
- Parents:
- 5930e3f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat_ops.c
r5930e3f r951f32ce 89 89 static bool exfat_is_file(fs_node_t *node); 90 90 static service_id_t exfat_service_get(fs_node_t *node); 91 static long exfat_size_block(service_id_t); 91 92 92 93 /* … … 912 913 } 913 914 915 long exfat_size_block(service_id_t service_id) 916 { 917 exfat_bs_t *bs; 918 bs = block_bb_get(service_id); 919 920 return BPC(bs); 921 } 914 922 915 923 /** libfs operations */ … … 930 938 .is_directory = exfat_is_directory, 931 939 .is_file = exfat_is_file, 932 .service_get = exfat_service_get 940 .service_get = exfat_service_get, 941 .size_block = exfat_size_block 933 942 }; 934 943
Note:
See TracChangeset
for help on using the changeset viewer.