From 0ff400135b2a11b4a565f4d631f7f4ea55a25a99 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Tue, 27 Jul 2021 14:53:55 +0200 Subject: btrfs: rename io_failure_record::bio_flags to compress_type The bio_flags is now used to store unchanged compress type, so unify that. Reviewed-by: Johannes Thumshirn Reviewed-by: Nikolay Borisov Signed-off-by: David Sterba --- fs/btrfs/extent_io.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'fs/btrfs/extent_io.h') diff --git a/fs/btrfs/extent_io.h b/fs/btrfs/extent_io.h index fdbfe801dbe2..7774a48053fd 100644 --- a/fs/btrfs/extent_io.h +++ b/fs/btrfs/extent_io.h @@ -7,6 +7,7 @@ #include #include #include +#include "compression.h" #include "ulist.h" enum { @@ -266,7 +267,7 @@ struct io_failure_record { u64 start; u64 len; u64 logical; - unsigned long bio_flags; + enum btrfs_compression_type compress_type; int this_mirror; int failed_mirror; }; -- cgit v1.2.3-73-gaa49b