Changeset 09ab0a9a in mainline for uspace/srv/fs/mfs
- Timestamp:
- 2018-09-13T12:05:53Z (7 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)
- Location:
- uspace/srv/fs/mfs
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/mfs/mfs.c
rb2aaaa0 r09ab0a9a 106 106 * @} 107 107 */ 108 -
uspace/srv/fs/mfs/mfs.h
rb2aaaa0 r09ab0a9a 229 229 mfs_count_free_inodes(struct mfs_instance *inst, uint32_t *inodes); 230 230 231 232 231 /* mfs_utils.c */ 233 232 extern uint16_t … … 245 244 * @} 246 245 */ 247 -
uspace/srv/fs/mfs/mfs_balloc.c
rb2aaaa0 r09ab0a9a 47 47 mfs_count_free_bits(struct mfs_instance *inst, bmap_id_t bid, uint32_t *free); 48 48 49 50 49 /**Allocate a new inode. 51 50 * … … 408 407 * @} 409 408 */ 410 -
uspace/srv/fs/mfs/mfs_dentry.c
rb2aaaa0 r09ab0a9a 264 264 } 265 265 266 267 266 /** 268 267 * @} 269 268 */ 270 -
uspace/srv/fs/mfs/mfs_inode.c
rb2aaaa0 r09ab0a9a 380 380 * @} 381 381 */ 382 -
uspace/srv/fs/mfs/mfs_ops.c
rb2aaaa0 r09ab0a9a 38 38 #include <str.h> 39 39 #include "mfs.h" 40 41 40 42 41 static bool check_magic_number(uint16_t magic, bool *native, … … 278 277 } 279 278 280 281 279 static errno_t mfs_fsprobe(service_id_t service_id, vfs_fs_probe_info_t *info) 282 280 { … … 1275 1273 * @} 1276 1274 */ 1277 -
uspace/srv/fs/mfs/mfs_rw.c
rb2aaaa0 r09ab0a9a 50 50 write_ind_zone(struct mfs_instance *inst, uint32_t zone, uint32_t *ind_zone); 51 51 52 53 52 /**Given the position in the file expressed in 54 53 * bytes, this function returns the on-disk block … … 405 404 } 406 405 407 408 406 /** 409 407 * @} 410 408 */ 411 -
uspace/srv/fs/mfs/mfs_utils.c
rb2aaaa0 r09ab0a9a 64 64 * @} 65 65 */ 66
Note:
See TracChangeset
for help on using the changeset viewer.