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


Ignore:
Timestamp:
2011-07-27T21:37:13Z (14 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.h

    r4bf0052a ree257b2  
    146146        devmap_handle_t handle;
    147147        struct mfs_sb_info *sbi;
     148        unsigned open_nodes_cnt;
    148149};
    149150
     
    152153        struct mfs_ino_info *ino_i;
    153154        struct mfs_instance *instance;
     155        unsigned refcnt;
     156        fs_node_t *fsnode;
     157        link_t link;
    154158};
    155159
     
    186190mfs_sync(ipc_callid_t rid, ipc_call_t *request);
    187191
     192extern int
     193mfs_global_init(void);
     194
    188195/*mfs_inode.c*/
    189196extern int
Note: See TracChangeset for help on using the changeset viewer.