Changes in / [38eb0d7:736b07b] in mainline
- File:
-
- 1 edited
-
uspace/srv/fs/exfat/exfat_ops.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat_ops.c
r38eb0d7 r736b07b 955 955 bmap_node = (exfat_node_t *) node->data; 956 956 957 unsigned const bmap_sectors = ROUND_UP(bmap_node->size, BPS(bs)) / 958 BPS(bs); 959 960 for (sector = 0; sector < bmap_sectors; ++sector) { 957 for (sector = 0; sector < bmap_node->size / BPS(bs); ++sector) { 961 958 962 959 block_t *block; … … 964 961 unsigned bit; 965 962 966 rc = exfat_block_get(&block, bs, bmap_node, sector, 963 rc = exfat_block_get_by_clst(&block, bs, service_id, 964 bmap_node->fragmented, bmap_node->firstc, NULL, sector, 967 965 BLOCK_FLAGS_NONE); 968 966 if (rc != EOK) {
Note:
See TracChangeset
for help on using the changeset viewer.
