]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
osd/PG: avoid choose_acting picking want with > pool size items 24344/head
authorSage Weil <sage@redhat.com>
Tue, 11 Sep 2018 16:12:22 +0000 (11:12 -0500)
committerPrashant D <pdhange@redhat.com>
Mon, 1 Oct 2018 01:02:26 +0000 (21:02 -0400)
If the pool size recently changed, we might see an up that is larger than
the pool size.  Or, we might already have selected a primary that is not
part of up, and then add all up osds and end up with a want that is too
big.

Fixes: http://tracker.ceph.com/issues/35924
Signed-off-by: Sage Weil <sage@redhat.com>
(cherry picked from commit c3e2990c39952a1fc4593076c5b2f0dea6cdcdd3)

src/osd/PG.cc

index 25034c7e2b4a4d9464a4d892e900f4e986c32880..80b2e038aa676c10f6376600995265cf3f2717f4 100644 (file)
@@ -1359,6 +1359,9 @@ void PG::calc_replicated_acting(
       usable++;
       ss << " osd." << *i << " (up) accepted " << cur_info << std::endl;
     }
+    if (want->size() >= size) {
+      break;
+    }
   }
 
   if (usable >= size) {