diff options
author | Bob Peterson <rpeterso@redhat.com> | 2023-06-16 21:22:04 +0300 |
---|---|---|
committer | Andreas Gruenbacher <agruenba@redhat.com> | 2023-09-05 16:58:18 +0300 |
commit | 0e072cac92d08c05257432b10fa8cd66d64b3f43 (patch) | |
tree | e944552fa34e34594bbca6a3d4a1dc387a1770e8 /fs/gfs2/incore.h | |
parent | 06aa6fd31a5f402b055e12ea53bb7b086359d3c8 (diff) | |
download | linux-0e072cac92d08c05257432b10fa8cd66d64b3f43.tar.xz |
gfs2: change qd_slot_count to qd_slot_ref
Variable qd_slot_count is a reference count, not a count of slots. This
patch renames it to qd_slot_ref to make that more clear.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2/incore.h')
-rw-r--r-- | fs/gfs2/incore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/incore.h b/fs/gfs2/incore.h index 7e94cf3562d6..a8c95c5293c6 100644 --- a/fs/gfs2/incore.h +++ b/fs/gfs2/incore.h @@ -452,7 +452,7 @@ struct gfs2_quota_data { s64 qd_change_sync; unsigned int qd_slot; - unsigned int qd_slot_count; + unsigned int qd_slot_ref; struct buffer_head *qd_bh; struct gfs2_quota_change *qd_bh_qc; |