aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/transaction.h
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2017-11-08 01:39:58 +0100
committerDavid Sterba <dsterba@suse.com>2018-01-22 16:08:14 +0100
commitb50fff816cbd670ea545ce98ae374356f08f2d75 (patch)
tree583500f65c4a3b0db13963d7bec475c70dc8467c /fs/btrfs/transaction.h
parentbtrfs: remove unused member of btrfs_trans_handle (diff)
downloadlinux-dev-b50fff816cbd670ea545ce98ae374356f08f2d75.tar.xz
linux-dev-b50fff816cbd670ea545ce98ae374356f08f2d75.zip
btrfs: switch to refcount_t type for btrfs_trans_handle::use_count
The use_count is a reference counter, we can use the refcount_t type, though we don't use the atomicity. This is not a performance critical code and we could catch the underflows. The type is changed from long, but the number of references will fit an int. Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/transaction.h')
-rw-r--r--fs/btrfs/transaction.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/transaction.h b/fs/btrfs/transaction.h
index c48a4a03f1b4..afa88f035654 100644
--- a/fs/btrfs/transaction.h
+++ b/fs/btrfs/transaction.h
@@ -111,7 +111,7 @@ struct btrfs_trans_handle {
u64 transid;
u64 bytes_reserved;
u64 chunk_bytes_reserved;
- unsigned long use_count;
+ refcount_t use_count;
unsigned long delayed_ref_updates;
struct btrfs_transaction *transaction;
struct btrfs_block_rsv *block_rsv;