Changeset 590cb6d2 in mainline for uspace/lib/ext4/include/ext4/types.h
- Timestamp:
- 2023-10-22T15:53:32Z (18 months ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 71b4444, abb70fc3
- Parents:
- f4a42661
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-10-22 15:39:53)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-10-22 15:53:32)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/include/ext4/types.h
rf4a42661 r590cb6d2 141 141 uint32_t encrypt_algos; /* Encrypt algorithm in use */ 142 142 uint32_t padding[105]; /* Padding to the end of the block */ 143 } __attribute__((packed))ext4_superblock_t;143 } ext4_superblock_t; 144 144 145 145 #define EXT4_GOOD_OLD_REV 0 … … 335 335 uint32_t author; 336 336 } hurd2; 337 } __attribute__((packed))osd2;337 } osd2; 338 338 339 339 uint16_t extra_isize; … … 345 345 uint32_t crtime_extra; /* Extra file creation time (nsec << 2 | epoch) */ 346 346 uint32_t version_hi; /* High 32 bits for 64-bit version */ 347 } __attribute__((packed))ext4_inode_t;347 } ext4_inode_t; 348 348 349 349 #define EXT4_INODE_MODE_FIFO 0x1000 … … 418 418 uint8_t name_length_high; /* Higher 8 bits of name length */ 419 419 uint8_t inode_type; /* Type of referenced inode (in rev >= 0.5) */ 420 } __attribute__((packed));420 }; 421 421 422 422 uint8_t name[EXT4_DIRECTORY_FILENAME_LEN]; /* Entry name */ 423 } __attribute__((packed))ext4_directory_entry_ll_t;423 } ext4_directory_entry_ll_t; 424 424 425 425 typedef struct ext4_directory_iterator {
Note:
See TracChangeset
for help on using the changeset viewer.