Changeset cde999a in mainline for uspace/app/mkmfs/mkmfs.c
- Timestamp:
- 2018-01-04T20:22:51Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3d95c9d, 84a1a54
- Parents:
- 3c7702c0
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 19:18:29)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:22:51)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/mkmfs/mkmfs.c
r3c7702c0 rcde999a 290 290 * @param sb Pointer to the superblock structure. 291 291 * 292 * @return EOK on success or a negativeerror code.292 * @return EOK on success or an error code. 293 293 */ 294 294 static int insert_dentries(const struct mfs_sb_info *sb) … … 343 343 * @param sb Pointer to the superblock structure. 344 344 * 345 * @return EOK on success or a negativeerror code.345 * @return EOK on success or an error code. 346 346 */ 347 347 static int init_inode_table(const struct mfs_sb_info *sb) … … 376 376 * @param sb Ponter to the superblock structure. 377 377 * 378 * @return EOK on success or a negativeerror code.378 * @return EOK on success or an error code. 379 379 */ 380 380 static int make_root_ino(const struct mfs_sb_info *sb) … … 413 413 * @param sb Pointer to the superblock structure. 414 414 * 415 * @return EOK on success or a negativeerror code.415 * @return EOK on success or an error code. 416 416 */ 417 417 static int make_root_ino2(const struct mfs_sb_info *sb) … … 452 452 * @param sb Pointer to the superblock structure. 453 453 * 454 * @return EOK on success or a negativeerror code.454 * @return EOK on success or an error code. 455 455 */ 456 456 static int init_superblock(struct mfs_sb_info *sb) … … 559 559 * @param sbi Pointer to the superblock structure to write on disk. 560 560 * 561 * @return EOK on success or a negativeerror code.561 * @return EOK on success or an error code. 562 562 */ 563 563 static int write_superblock(const struct mfs_sb_info *sbi) … … 592 592 * @param sbi Pointer to the superblock structure to write on disk. 593 593 * 594 * @return EOK on success or a negativeerror code.594 * @return EOK on success or an error code. 595 595 */ 596 596 static int write_superblock3(const struct mfs_sb_info *sbi) … … 625 625 * @param sb Pointer to the superblock structure. 626 626 * 627 * @return EOK on success or a negativeerror code.627 * @return EOK on success or an error code. 628 628 */ 629 629 static int init_bitmaps(const struct mfs_sb_info *sb) … … 699 699 * @param data Pointer to the block content. 700 700 * 701 * @return EOK on success or a negativeerror number.701 * @return EOK on success or a error number. 702 702 */ 703 703 static inline int write_block(aoff64_t off, size_t size, const void *data)
Note:
See TracChangeset
for help on using the changeset viewer.