Changes in uspace/app/mkmfs/mkmfs.c [04efacc:cde999a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/mkmfs/mkmfs.c
r04efacc rcde999a 109 109 int main (int argc, char **argv) 110 110 { 111 int rc, c, opt_ind; 111 int rc; 112 int c, opt_ind; 112 113 char *device_name; 113 114 size_t devblock_size; … … 289 290 * @param sb Pointer to the superblock structure. 290 291 * 291 * @return EOK on success or a negativeerror code.292 * @return EOK on success or an error code. 292 293 */ 293 294 static int insert_dentries(const struct mfs_sb_info *sb) … … 342 343 * @param sb Pointer to the superblock structure. 343 344 * 344 * @return EOK on success or a negativeerror code.345 * @return EOK on success or an error code. 345 346 */ 346 347 static int init_inode_table(const struct mfs_sb_info *sb) … … 375 376 * @param sb Ponter to the superblock structure. 376 377 * 377 * @return EOK on success or a negativeerror code.378 * @return EOK on success or an error code. 378 379 */ 379 380 static int make_root_ino(const struct mfs_sb_info *sb) … … 412 413 * @param sb Pointer to the superblock structure. 413 414 * 414 * @return EOK on success or a negativeerror code.415 * @return EOK on success or an error code. 415 416 */ 416 417 static int make_root_ino2(const struct mfs_sb_info *sb) … … 451 452 * @param sb Pointer to the superblock structure. 452 453 * 453 * @return EOK on success or a negativeerror code.454 * @return EOK on success or an error code. 454 455 */ 455 456 static int init_superblock(struct mfs_sb_info *sb) … … 558 559 * @param sbi Pointer to the superblock structure to write on disk. 559 560 * 560 * @return EOK on success or a negativeerror code.561 * @return EOK on success or an error code. 561 562 */ 562 563 static int write_superblock(const struct mfs_sb_info *sbi) … … 591 592 * @param sbi Pointer to the superblock structure to write on disk. 592 593 * 593 * @return EOK on success or a negativeerror code.594 * @return EOK on success or an error code. 594 595 */ 595 596 static int write_superblock3(const struct mfs_sb_info *sbi) … … 624 625 * @param sb Pointer to the superblock structure. 625 626 * 626 * @return EOK on success or a negativeerror code.627 * @return EOK on success or an error code. 627 628 */ 628 629 static int init_bitmaps(const struct mfs_sb_info *sb) … … 698 699 * @param data Pointer to the block content. 699 700 * 700 * @return EOK on success or a negativeerror number.701 * @return EOK on success or a error number. 701 702 */ 702 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.