From: Loic Dachary Date: Sun, 31 Aug 2014 21:01:48 +0000 (+0200) Subject: osd: MissingLoc::get_all_missing is const X-Git-Tag: v0.86~159^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F2368%2Fhead;p=ceph.git osd: MissingLoc::get_all_missing is const Signed-off-by: Loic Dachary --- diff --git a/src/osd/PG.h b/src/osd/PG.h index 989190b52b9ab..6265ad4d60229 100644 --- a/src/osd/PG.h +++ b/src/osd/PG.h @@ -350,7 +350,7 @@ public: return ret; } - const map &get_all_missing() { + const map &get_all_missing() const { return needs_recovery_map; }