提交 d08e38b6 编写于 作者: C Colin Ian King 提交者: David Sterba

btrfs: make 1-bit bit-fields of scrub_page unsigned int

The bitfields have_csum and io_error are currently signed which is not
recommended as the representation is an implementation defined
behaviour. Fix this by making the bit-fields unsigned ints.

Fixes: 2c363954 ("btrfs: scrub: remove the anonymous structure from scrub_page")
Reviewed-by: NJosef Bacik <josef@toxicpanda.com>
Reviewed-by: NQu Wenruo <wqu@suse.com>
Signed-off-by: NColin Ian King <colin.i.king@gmail.com>
Reviewed-by: NDavid Sterba <dsterba@suse.com>
Signed-off-by: NDavid Sterba <dsterba@suse.com>
上级 a91cf0ff
...@@ -73,8 +73,8 @@ struct scrub_page { ...@@ -73,8 +73,8 @@ struct scrub_page {
u64 physical_for_dev_replace; u64 physical_for_dev_replace;
atomic_t refs; atomic_t refs;
u8 mirror_num; u8 mirror_num;
int have_csum:1; unsigned int have_csum:1;
int io_error:1; unsigned int io_error:1;
u8 csum[BTRFS_CSUM_SIZE]; u8 csum[BTRFS_CSUM_SIZE];
struct scrub_recover *recover; struct scrub_recover *recover;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册