diff options
author | David Sterba <dsterba@suse.com> | 2019-03-11 15:58:30 +0100 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2019-04-29 19:02:18 +0200 |
commit | 7b4397386fbdc606eb053bc2a1cfd985aea59916 (patch) | |
tree | 239b52583c2be1531024235fc14ab3ee24fb2ce7 /fs/btrfs/extent_io.h | |
parent | c258d6e36442eb5d3363f6dbc0e6f2c162bfb66d (diff) | |
download | lwn-7b4397386fbdc606eb053bc2a1cfd985aea59916.tar.gz lwn-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.h | 2 |
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; }; |