RTEMS
5.0.0
|
#include <rtems-rfs-inode.h>
Data Fields | |
uint16_t | links |
uint16_t | mode |
uint32_t | owner |
uint16_t | flags |
uint16_t | block_offset |
uint32_t | block_count |
rtems_rfs_time | atime |
rtems_rfs_time | mtime |
rtems_rfs_time | ctime |
union { | |
rtems_rfs_inode_block blocks [RTEMS_RFS_INODE_BLOCKS] | |
uint8_t name [RTEMS_RFS_INODE_DATA_NAME_SIZE] | |
} | data |
rtems_rfs_inode_block | last_map_block |
rtems_rfs_inode_block | last_data_block |
The inode.
rtems_rfs_time _rtems_rfs_inode::atime |
The access time. The last time the file was read.
uint32_t _rtems_rfs_inode::block_count |
Number of blocks held by this file.
uint16_t _rtems_rfs_inode::block_offset |
Amount of data held in the last block data.
rtems_rfs_time _rtems_rfs_inode::ctime |
The change time. The last time the inode was written too.
union { ... } _rtems_rfs_inode::data |
Blocks. These are the block numbers used by the node or table of nodes. The flags indicate the mode the blocks are being held in. In the direct table mode the blocks are entries in this table. In the indirect mode the blocks point to blocks that hold the block numbers. The data can also be a name if it fits. For example a symbolic link.
uint16_t _rtems_rfs_inode::flags |
Reserved.
rtems_rfs_inode_block _rtems_rfs_inode::last_data_block |
The last data block. Used as the goal when allocating a new block.
rtems_rfs_inode_block _rtems_rfs_inode::last_map_block |
The last block map block. Used as the goal when allocating a new block for use in the map.
uint16_t _rtems_rfs_inode::links |
The number of links to the inode.
uint16_t _rtems_rfs_inode::mode |
The mode of the node.
rtems_rfs_time _rtems_rfs_inode::mtime |
The modified time. The last time the file was written too.
uint32_t _rtems_rfs_inode::owner |
The owner of the node.