Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/mkmfs/mkmfs.c

    rcde999a r04efacc  
    109109int main (int argc, char **argv)
    110110{
    111         int rc;
    112         int c, opt_ind;
     111        int rc, c, opt_ind;
    113112        char *device_name;
    114113        size_t devblock_size;
     
    290289 * @param sb            Pointer to the superblock structure.
    291290 *
    292  * @return              EOK on success or an error code.
     291 * @return              EOK on success or a negative error code.
    293292 */
    294293static int insert_dentries(const struct mfs_sb_info *sb)
     
    343342 * @param sb            Pointer to the superblock structure.
    344343 *
    345  * @return              EOK on success or an error code.
     344 * @return              EOK on success or a negative error code.
    346345 */
    347346static int init_inode_table(const struct mfs_sb_info *sb)
     
    376375 * @param sb            Ponter to the superblock structure.
    377376 *
    378  * @return              EOK on success or an error code.
     377 * @return              EOK on success or a negative error code.
    379378 */
    380379static int make_root_ino(const struct mfs_sb_info *sb)
     
    413412 * @param sb            Pointer to the superblock structure.
    414413 *
    415  * @return              EOK on success or an error code.
     414 * @return              EOK on success or a negative error code.
    416415 */
    417416static int make_root_ino2(const struct mfs_sb_info *sb)
     
    452451 * @param sb            Pointer to the superblock structure.
    453452 *
    454  * @return              EOK on success or an error code.
     453 * @return              EOK on success or a negative error code.
    455454 */
    456455static int init_superblock(struct mfs_sb_info *sb)
     
    559558 * @param sbi           Pointer to the superblock structure to write on disk.
    560559 *
    561  * @return              EOK on success or an error code.
     560 * @return              EOK on success or a negative error code.
    562561 */
    563562static int write_superblock(const struct mfs_sb_info *sbi)
     
    592591 * @param sbi           Pointer to the superblock structure to write on disk.
    593592 *
    594  * @return              EOK on success or an error code.
     593 * @return              EOK on success or a negative error code.
    595594 */
    596595static int write_superblock3(const struct mfs_sb_info *sbi)
     
    625624 * @param sb            Pointer to the superblock structure.
    626625 *
    627  * @return              EOK on success or an error code.
     626 * @return              EOK on success or a negative error code.
    628627 */
    629628static int init_bitmaps(const struct mfs_sb_info *sb)
     
    699698 * @param data          Pointer to the block content.
    700699 *
    701  * @return              EOK on success or a error number.
     700 * @return              EOK on success or a negative error number.
    702701 */
    703702static inline int write_block(aoff64_t off, size_t size, const void *data)
Note: See TracChangeset for help on using the changeset viewer.