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