aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBob Peterson <rpeterso@redhat.com>2021-06-30 12:49:59 -0500
committerBob Peterson <rpeterso@redhat.com>2021-08-19 12:31:17 -0500
commitdc7674eda002037d7a2d551e272037574507c2db (patch)
treef8b214ef59fba6e0c30124637aff8b6624663eec
parentgfs2: trivial clean up of gfs2_ail_error (diff)
downloadlinux-dev-dc7674eda002037d7a2d551e272037574507c2db.tar.xz
linux-dev-dc7674eda002037d7a2d551e272037574507c2db.zip
gfs2: tiny cleanup in gfs2_log_reserve
Function gfs2_log_reserve was setting revoke_blks to 0. There's no need because it calculates it shortly thereafter. This patch removes the unnecessary set. Signed-off-by: Bob Peterson <rpeterso@redhat.com>
-rw-r--r--fs/gfs2/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/log.c b/fs/gfs2/log.c
index 42c15cfc0821..f0ee3ff6f9a8 100644
--- a/fs/gfs2/log.c
+++ b/fs/gfs2/log.c
@@ -594,7 +594,7 @@ void gfs2_log_reserve(struct gfs2_sbd *sdp, struct gfs2_trans *tr,
{
unsigned int blks = tr->tr_reserved;
unsigned int revokes = tr->tr_revokes;
- unsigned int revoke_blks = 0;
+ unsigned int revoke_blks;
*extra_revokes = 0;
if (revokes) {