Changeset ee257b2 in mainline for uspace/srv/fs/minixfs/mfs.c


Ignore:
Timestamp:
2011-07-27T21:37:13Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9530d94
Parents:
4bf0052a
Message:

Add a open_nodes hashtable (code imported from the ext2fs implementation)
Fix the number of hard links in the parent inode when linking/unlinking a child directory.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/minixfs/mfs.c

    r4bf0052a ree257b2  
    157157        }
    158158
     159        rc = mfs_global_init();
     160        if (rc != EOK) {
     161                printf(NAME ": Failed global initialization\n");
     162                goto err;
     163        }
     164
    159165        rc = fs_register(vfs_sess, &mfs_reg, &mfs_vfs_info, mfs_connection);
    160166        if (rc != EOK)
Note: See TracChangeset for help on using the changeset viewer.