Changeset 6c501f8 in mainline for uspace/lib/ext4/libext4_inode.h


Ignore:
Timestamp:
2011-09-30T20:00:30Z (13 years ago)
Author:
Frantisek Princ <frantisek.princ@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
00a8f1b
Parents:
9875711
Message:

_mounted and _unmounted operations skeletons (copied from ext2fs)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ext4/libext4_inode.h

    r9875711 r6c501f8  
    3434#define LIBEXT4_LIBEXT4_INODE_H_
    3535
     36#include <libblock.h>
    3637#include <sys/types.h>
    3738
     
    112113
    113114
     115// TODO check value
     116#define EXT4_INODE_ROOT_INDEX   2
     117
     118typedef struct ext4_inode_ref {
     119        block_t *block; // Reference to a block containing this inode
     120        ext4_inode_t *inode;
     121        uint32_t index; // Index number of this inode
     122} ext4_inode_ref_t;
     123
     124extern uint16_t ext4_inode_get_usage_count(ext4_inode_t *);
    114125
    115126#endif
Note: See TracChangeset for help on using the changeset viewer.