aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBob Peterson <rpeterso@redhat.com>2023-06-21 12:31:15 -0500
committerAndreas Gruenbacher <agruenba@redhat.com>2023-09-05 15:58:18 +0200
commitdec64ae37bf90c2ae3fba2089f5bd1d025c57995 (patch)
treed5198067413b98ce18da5be6be30aa20687f7bce
parentf511e60a55c5f2c8a9781efb67f1897a3b3aebb1 (diff)
downloadlinux-dec64ae37bf90c2ae3fba2089f5bd1d025c57995.tar.gz
gfs2: Remove useless err set
Function gfs2_adjust_quota set variable err, then set it again to a different value. This patch removes the redundant set. Signed-off-by: Bob Peterson <rpeterso@redhat.com> Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
-rw-r--r--fs/gfs2/quota.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/gfs2/quota.c b/fs/gfs2/quota.c
index c4da8c01deb792..6824c7497d9989 100644
--- a/fs/gfs2/quota.c
+++ b/fs/gfs2/quota.c
@@ -859,7 +859,6 @@ static int gfs2_adjust_quota(struct gfs2_sbd *sdp, loff_t loc,
return err;
loc -= sizeof(q); /* gfs2_internal_read would've advanced the loc ptr */
- err = -EIO;
be64_add_cpu(&q.qu_value, change);
if (((s64)be64_to_cpu(q.qu_value)) < 0)
q.qu_value = 0; /* Never go negative on quota usage */