Changeset 8a8771c in mainline for uspace/srv/fs/exfat/exfat_ops.c
- Timestamp:
- 2018-05-11T10:26:18Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ae89656
- Parents:
- af7fe18
- git-author:
- Jiri Svoboda <jiri@…> (2018-05-11 10:26:01)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-05-11 10:26:18)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat_ops.c
raf7fe18 r8a8771c 72 72 */ 73 73 74 static void exfat_fsinfo(exfat_bs_t *, service_id_t); 74 75 static errno_t exfat_root_get(fs_node_t **, service_id_t); 75 76 static errno_t exfat_match(fs_node_t **, fs_node_t *, const char *); … … 91 92 static errno_t exfat_total_block_count(service_id_t, uint64_t *); 92 93 static errno_t exfat_free_block_count(service_id_t, uint64_t *); 93 static void exfat_fsinfo(exfat_bs_t *, service_id_t);94 94 95 95 /* … … 1239 1239 1240 1240 /* Print debug info */ 1241 void exfat_fsinfo(exfat_bs_t *bs, service_id_t service_id)1241 static void exfat_fsinfo(exfat_bs_t *bs, service_id_t service_id) 1242 1242 { 1243 1243 printf("exFAT file system mounted\n"); … … 1262 1262 return; 1263 1263 printf("Clst %d: %x", i, clst); 1264 if (i >= 2) 1265 printf(", Bitmap: %d\n", exfat_bitmap_is_free(bs, service_id, i) != EOK); 1266 else 1264 if (i >= 2) { 1265 printf(", Bitmap: %d\n", exfat_bitmap_is_free(bs, 1266 service_id, i) != EOK); 1267 } else { 1267 1268 printf("\n"); 1269 } 1268 1270 } 1269 1271 }
Note:
See TracChangeset
for help on using the changeset viewer.