aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/extent_io.h
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2019-03-11 15:58:30 +0100
committerDavid Sterba <dsterba@suse.com>2019-04-29 19:02:18 +0200
commit7b4397386fbdc606eb053bc2a1cfd985aea59916 (patch)
tree239b52583c2be1531024235fc14ab3ee24fb2ce7 /fs/btrfs/extent_io.h
parentbtrfs: Introduce fs_info to extent_io_tree (diff)
downloadlinux-dev-7b4397386fbdc606eb053bc2a1cfd985aea59916.tar.xz
linux-dev-7b4397386fbdc606eb053bc2a1cfd985aea59916.zip
btrfs: switch extent_io_tree::track_uptodate to bool
This patch is split from the following one "btrfs: Introduce extent_io_tree::owner to distinguish different io_trees" from Qu, so the different changes are not mixed together. Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/extent_io.h')
-rw-r--r--fs/btrfs/extent_io.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/extent_io.h b/fs/btrfs/extent_io.h
index e63215d69299..bd5c12599057 100644
--- a/fs/btrfs/extent_io.h
+++ b/fs/btrfs/extent_io.h
@@ -111,7 +111,7 @@ struct extent_io_tree {
struct btrfs_fs_info *fs_info;
void *private_data;
u64 dirty_bytes;
- int track_uptodate;
+ bool track_uptodate;
spinlock_t lock;
const struct extent_io_ops *ops;
};