Home
last modified time | relevance | path

Searched refs:qg (Results 1 – 1 of 1) sorted by relevance

/linux/fs/btrfs/
H A Dqgroup.c128 static void btrfs_qgroup_update_old_refcnt(struct btrfs_qgroup *qg, u64 seq, in btrfs_qgroup_update_old_refcnt() argument
131 if (qg->old_refcnt < seq) in btrfs_qgroup_update_old_refcnt()
132 qg->old_refcnt = seq; in btrfs_qgroup_update_old_refcnt()
133 qg->old_refcnt += mod; in btrfs_qgroup_update_old_refcnt()
136 static void btrfs_qgroup_update_new_refcnt(struct btrfs_qgroup *qg, u64 seq, in btrfs_qgroup_update_new_refcnt() argument
139 if (qg->new_refcnt < seq) in btrfs_qgroup_update_new_refcnt()
140 qg->new_refcnt = seq; in btrfs_qgroup_update_new_refcnt()
141 qg->new_refcnt += mod; in btrfs_qgroup_update_new_refcnt()
144 static inline u64 btrfs_qgroup_get_old_refcnt(const struct btrfs_qgroup *qg, u64 seq) in btrfs_qgroup_get_old_refcnt() argument
146 if (qg->old_refcnt < seq) in btrfs_qgroup_get_old_refcnt()
[all …]