Changeset 09ab0a9a in mainline for uspace/srv/fs/exfat/exfat_bitmap.c
- Timestamp:
- 2018-09-13T12:05:53Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cc74cb5
- Parents:
- b2aaaa0
- git-author:
- Jiri Svoboda <jiri@…> (2018-09-13 07:09:46)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-09-13 12:05:53)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat_bitmap.c
rb2aaaa0 r09ab0a9a 47 47 #include <mem.h> 48 48 49 50 49 errno_t exfat_bitmap_is_free(exfat_bs_t *bs, service_id_t service_id, 51 50 exfat_cluster_t clst) … … 216 215 } 217 216 218 219 217 errno_t exfat_bitmap_append_clusters(exfat_bs_t *bs, exfat_node_t *nodep, 220 218 exfat_cluster_t count) … … 239 237 } 240 238 241 242 239 errno_t exfat_bitmap_free_clusters(exfat_bs_t *bs, exfat_node_t *nodep, 243 240 exfat_cluster_t count) … … 249 246 return exfat_bitmap_clear_clusters(bs, nodep->idx->service_id, lastc + 1, count); 250 247 } 251 252 248 253 249 errno_t exfat_bitmap_replicate_clusters(exfat_bs_t *bs, exfat_node_t *nodep) … … 267 263 } 268 264 269 270 271 265 /** 272 266 * @}
Note:
See TracChangeset
for help on using the changeset viewer.