diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-23 16:12:52 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-23 16:13:41 +0200 |
commit | 41d33212c94d3f9efd43e0c40dd166c2136512a8 (patch) | |
tree | 7880fc3e295f261df0a51939c3733d3e2ffbb107 /include/sqfs/block_processor.h | |
parent | b86cbb04c9cc72506783e175e871338b1f0e6750 (diff) |
Cleanup block processor flag handling
First, remove the "Don't checksum" flag, fragment blocks also need to
be checksumed and are also subject to deduplication. For sentinel
blocks, instead check if the size is zero.
Second, cleanly seperate the user settable flags from the non-user
settable flags and reject any block that has non-user settable or
unknown flags set.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/sqfs/block_processor.h')
-rw-r--r-- | include/sqfs/block_processor.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/include/sqfs/block_processor.h b/include/sqfs/block_processor.h index 562c4d2..2086a3d 100644 --- a/include/sqfs/block_processor.h +++ b/include/sqfs/block_processor.h @@ -55,29 +55,14 @@ typedef enum { SQFS_BLK_DONT_COMPRESS = 0x0001, /** - * @brief Set by compressor worker if the block was actually compressed. - */ - SQFS_BLK_IS_COMPRESSED = 0x0002, - - /** - * @brief Do not calculate block checksum. - */ - SQFS_BLK_DONT_CHECKSUM = 0x0004, - - /** - * @brief Set by compressor worker if compression failed. - */ - SQFS_BLK_COMPRESS_ERROR = 0x0008, - - /** * @brief Indicates that an equeued block is the first block of a file. */ - SQFS_BLK_FIRST_BLOCK = 0x0010, + SQFS_BLK_FIRST_BLOCK = 0x0002, /** * @brief Indicates that an equeued block is the last block of a file. */ - SQFS_BLK_LAST_BLOCK = 0x0020, + SQFS_BLK_LAST_BLOCK = 0x0004, /** * @brief Allign the block on disk to device block size. @@ -89,14 +74,29 @@ typedef enum { * If used with @ref SQFS_BLK_LAST_BLOCK, the output file is padded * after writing the block. */ - SQFS_BLK_ALLIGN = 0x0040, + SQFS_BLK_ALLIGN = 0x0008, /** * @brief Indicates that a block is not part of a file but contains * file tail ends and an entry in the fragment table has to be * added. */ - SQFS_BLK_FRAGMENT_BLOCK = 0x0080, + SQFS_BLK_FRAGMENT_BLOCK = 0x0010, + + /** + * @brief Set by compressor worker if the block was actually compressed. + */ + SQFS_BLK_IS_COMPRESSED = 0x4000, + + /** + * @brief Set by compressor worker if compression failed. + */ + SQFS_BLK_COMPRESS_ERROR = 0x8000, + + /** + * @brief The combination of all flags that are user settable. + */ + SQFS_BLK_USER_SETTABLE_FLAGS = 0x001F, } E_SQFS_BLK_FLAGS; /** |