]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
gfs2: Fix loop in gfs2_rbm_find
authorAndreas Gruenbacher <agruenba@redhat.com>
Tue, 4 Dec 2018 14:06:27 +0000 (15:06 +0100)
committerAndreas Gruenbacher <agruenba@redhat.com>
Wed, 12 Dec 2018 11:31:40 +0000 (12:31 +0100)
Fix the resource group wrap-around logic in gfs2_rbm_find that commit
e579ed4f44 broke.  The bug can lead to unnecessary repeated scanning of the
same bitmaps; there is a risk that future changes will turn this into an
endless loop.

Fixes: e579ed4f44 ("GFS2: Introduce rbm field bii")
Cc: stable@vger.kernel.org # v3.13+
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
fs/gfs2/rgrp.c

index b08a530433adfb56560fedbf4d741205afdfbd41..8d79165703621479cb5184cac89ef8f52c336a60 100644 (file)
@@ -1780,9 +1780,9 @@ static int gfs2_rbm_find(struct gfs2_rbm *rbm, u8 state, u32 *minext,
                        goto next_iter;
                }
                if (ret == -E2BIG) {
+                       n += rbm->bii - initial_bii;
                        rbm->bii = 0;
                        rbm->offset = 0;
-                       n += (rbm->bii - initial_bii);
                        goto res_covered_end_of_rgrp;
                }
                return ret;