diff options
author | Josef Bacik <jbacik@fb.com> | 2015-10-01 19:55:18 +0300 |
---|---|---|
committer | Chris Mason <clm@fb.com> | 2015-10-22 04:55:36 +0300 |
commit | 2968b1f48bd7366dd7310acde1ee6d1bf7791142 (patch) | |
tree | 77ba00b44557b8183168286752bda5f2175dac46 /fs/btrfs/transaction.h | |
parent | 4f4db2174d8d6cdc093cbb79d17fbfe0f4d9fbde (diff) | |
download | linux-2968b1f48bd7366dd7310acde1ee6d1bf7791142.tar.xz |
Btrfs: don't continue setting up space cache when enospc
If we hit ENOSPC when setting up a space cache don't bother setting up any of
the other space cache's in this transaction, it'll just induce unnecessary
latency. Thanks,
Signed-off-by: Josef Bacik <jbacik@fb.com>
Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'fs/btrfs/transaction.h')
-rw-r--r-- | fs/btrfs/transaction.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/btrfs/transaction.h b/fs/btrfs/transaction.h index 109b8b7fb48e..30ae75074ca4 100644 --- a/fs/btrfs/transaction.h +++ b/fs/btrfs/transaction.h @@ -34,6 +34,7 @@ enum btrfs_trans_state { #define BTRFS_TRANS_HAVE_FREE_BGS 0 #define BTRFS_TRANS_DIRTY_BG_RUN 1 +#define BTRFS_TRANS_CACHE_ENOSPC 2 struct btrfs_transaction { u64 transid; |