diff options
author | Yan, Zheng <zyan@redhat.com> | 2015-08-28 17:59:35 +0800 |
---|---|---|
committer | Sasha Levin <alexander.levin@verizon.com> | 2016-08-06 13:06:30 -0400 |
commit | 5210f975ba197ead8b703ec818260191c0a51133 (patch) | |
tree | 66769ef8da540f1f7e59e3133ec28787fc57eace | |
parent | 87076a0105bd74b97b0ec462dcaf385958010f37 (diff) |
libceph: set 'exists' flag for newly up osd
[ Upstream commit 6dd74e44dc1df85f125982a8d6591bc4a76c9f5d ]
Signed-off-by: Yan, Zheng <zyan@redhat.com>
Reviewed-by: Sage Weil <sage@redhat.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
-rw-r--r-- | net/ceph/osdmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ceph/osdmap.c b/net/ceph/osdmap.c index 4a3125836b64..7d8f581d9f1f 100644 --- a/net/ceph/osdmap.c +++ b/net/ceph/osdmap.c @@ -1300,7 +1300,7 @@ struct ceph_osdmap *osdmap_apply_incremental(void **p, void *end, ceph_decode_addr(&addr); pr_info("osd%d up\n", osd); BUG_ON(osd >= map->max_osd); - map->osd_state[osd] |= CEPH_OSD_UP; + map->osd_state[osd] |= CEPH_OSD_UP | CEPH_OSD_EXISTS; map->osd_addr[osd] = addr; } |