aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/volumes.c
diff options
context:
space:
mode:
authorJosef Bacik <jbacik@fb.com>2015-09-24 10:46:10 -0400
committerChris Mason <clm@fb.com>2015-10-21 18:51:45 -0700
commit3204d33cda40d9bc97f257c441225d3713916661 (patch)
treee49b77582067a853de06552056a1ae82785024a4 /fs/btrfs/volumes.c
parentBtrfs: fix prealloc under heavy fragmentation conditions (diff)
downloadlinux-dev-3204d33cda40d9bc97f257c441225d3713916661.tar.xz
linux-dev-3204d33cda40d9bc97f257c441225d3713916661.zip
Btrfs: add a flags field to btrfs_transaction
I want to set some per transaction flags, so instead of adding yet another int lets just convert the current two int indicators to flags and add a flags field for future use. Thanks, Signed-off-by: Josef Bacik <jbacik@fb.com> Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to '')
-rw-r--r--fs/btrfs/volumes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
index e875b6cc1e20..f86d83805b44 100644
--- a/fs/btrfs/volumes.c
+++ b/fs/btrfs/volumes.c
@@ -1462,7 +1462,7 @@ again:
btrfs_std_error(root->fs_info, ret,
"Failed to remove dev extent item");
} else {
- trans->transaction->have_free_bgs = 1;
+ set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags);
}
out:
btrfs_free_path(path);