From: Ilya Dryomov Date: Tue, 4 Mar 2014 09:57:17 +0000 (+0200) Subject: rbd: fix error paths in rbd_img_request_fill() X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=04168b98a30d5257d20a7213f58ff0b27174e489;p=linux-edison.git rbd: fix error paths in rbd_img_request_fill() commit 42dd037c08c7cd6e3e9af7824b0c1d063f838885 upstream. Doing rbd_obj_request_put() in rbd_img_request_fill() error paths is not only insufficient, but also triggers an rbd_assert() in rbd_obj_request_destroy(): Assertion failure in rbd_obj_request_destroy() at line 1867: rbd_assert(obj_request->img_request == NULL); rbd_img_obj_request_add() adds obj_requests to the img_request, the opposite is rbd_img_obj_request_del(). Use it. Fixes: http://tracker.ceph.com/issues/7327 Signed-off-by: Ilya Dryomov Reviewed-by: Alex Elder Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c index c421fa52851..1e89a3dd3d5 100644 --- a/drivers/block/rbd.c +++ b/drivers/block/rbd.c @@ -2278,7 +2278,7 @@ out_partial: rbd_obj_request_put(obj_request); out_unwind: for_each_obj_request_safe(img_request, obj_request, next_obj_request) - rbd_obj_request_put(obj_request); + rbd_img_obj_request_del(img_request, obj_request); return -ENOMEM; }