diff options
| author | Wang Xiaoguang <[email protected]> | 2016-11-07 15:59:16 +0800 |
|---|---|---|
| committer | David Sterba <[email protected]> | 2016-11-30 13:45:14 +0100 |
| commit | 939659dfd3ed4ff36dde532782207cfb0e5fbcf6 (patch) | |
| tree | 402a2e85e4e0f75657b8a156d51c3ab6172636cb | |
| parent | dc1a90c6aad8f0a4bd6e5e02c5244c6a760cd776 (diff) | |
btrfs: add necessary comments about tickets_id
Tickets_id's name may result in some misunderstandings, it just indicates
the next ticket will be handled and is not stored per ticket.
Fixes: ce12965 ("btrfs: introduce tickets_id to determine whether
asynchronous metadata reclaim work makes progress")
Signed-off-by: Wang Xiaoguang <[email protected]>
Signed-off-by: David Sterba <[email protected]>
| -rw-r--r-- | fs/btrfs/ctree.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index e4e01a99201a..b26b8b363f7f 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h @@ -426,6 +426,10 @@ struct btrfs_space_info { struct list_head ro_bgs; struct list_head priority_tickets; struct list_head tickets; + /* + * tickets_id just indicates the next ticket will be handled, so note + * it's not stored per ticket. + */ u64 tickets_id; struct rw_semaphore groups_sem; |