From: Sage Weil Date: Mon, 21 May 2012 16:45:23 +0000 (-0700) Subject: libceph: fix pg_temp updates X-Git-Tag: v3.5-rc1~36^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6bd9adbdf9ca6a052b0b7455ac67b925eb38cfad;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git libceph: fix pg_temp updates Usually, we are adding pg_temp entries or removing them. Occasionally they update. In that case, osdmap_apply_incremental() was failing because the rbtree entry already exists. Fix by removing the existing entry before inserting a new one. Fixes http://tracker.newdream.net/issues/2446 Signed-off-by: Sage Weil Reviewed-by: Alex Elder --- diff --git a/net/ceph/osdmap.c b/net/ceph/osdmap.c index 2592f3c..1892c52 100644 --- a/net/ceph/osdmap.c +++ b/net/ceph/osdmap.c @@ -883,8 +883,12 @@ struct ceph_osdmap *osdmap_apply_incremental(void **p, void *end, pglen = ceph_decode_32(p); if (pglen) { - /* insert */ ceph_decode_need(p, end, pglen*sizeof(u32), bad); + + /* removing existing (if any) */ + (void) __remove_pg_mapping(&map->pg_temp, pgid); + + /* insert */ pg = kmalloc(sizeof(*pg) + sizeof(u32)*pglen, GFP_NOFS); if (!pg) { err = -ENOMEM;