From: Josh Durgin Date: Fri, 30 Aug 2013 02:16:42 +0000 (-0700) Subject: rbd: ignore unmapped snapshots that no longer exist X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=6fe77759c31c0f5fc36837549c5848470113509b;p=linux-edison.git rbd: ignore unmapped snapshots that no longer exist commit efadc98aab674153709cc357ba565f04e3164fcd upstream. This prevents erroring out while adding a device when a snapshot unrelated to the current mapping is deleted between reading the snapshot context and reading the snapshot names. If the mapped snapshot name is not found an error still occurs as usual. Signed-off-by: Josh Durgin Reviewed-by: Alex Elder Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c index 58a4e03b731..e917d4f7b76 100644 --- a/drivers/block/rbd.c +++ b/drivers/block/rbd.c @@ -4055,8 +4055,13 @@ static u64 rbd_v2_snap_id_by_name(struct rbd_device *rbd_dev, const char *name) snap_id = snapc->snaps[which]; snap_name = rbd_dev_v2_snap_name(rbd_dev, snap_id); - if (IS_ERR(snap_name)) - break; + if (IS_ERR(snap_name)) { + /* ignore no-longer existing snapshots */ + if (PTR_ERR(snap_name) == -ENOENT) + continue; + else + break; + } found = !strcmp(name, snap_name); kfree(snap_name); }