On 09/19/2016 12:03 PM, Ilya Dryomov wrote: > - don't put obj_request if rbd_obj_request_create() fails Not only that, don't leak the page vector in that case either. > - don't leak stat_request if rbd_osd_req_create() fails I believe the reference that was being dropped at the end of the function was intended to match the one taken for the assignment of stat_request->obj_request. But clearly the error path wasn't right. Your new code no longer has an error path that requires dropping that reference. It is dropped near the top of rbd_img_obj_exists_callback(). In your new code you drop a reference to the stat request, but that's to match the one taken when that request was created. > Reported-by: David Disseldorp <ddiss@xxxxxxx> > Signed-off-by: Ilya Dryomov <idryomov@xxxxxxxxx> This looks good. Reviewed-by: Alex Elder <elder@xxxxxxxxxx> > --- > drivers/block/rbd.c | 42 ++++++++++++++++++++++-------------------- > 1 file changed, 22 insertions(+), 20 deletions(-) > > diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c > index b9a4e79a663f..03f171067e08 100644 > --- a/drivers/block/rbd.c > +++ b/drivers/block/rbd.c > @@ -2886,11 +2886,23 @@ static int rbd_img_obj_exists_submit(struct rbd_obj_request *obj_request) > { > struct rbd_device *rbd_dev = obj_request->img_request->rbd_dev; > struct rbd_obj_request *stat_request; > - struct page **pages = NULL; > + struct page **pages; > u32 page_count; > size_t size; > int ret; > > + stat_request = rbd_obj_request_create(obj_request->object_name, 0, 0, > + OBJ_REQUEST_PAGES); > + if (!stat_request) > + return -ENOMEM; > + > + stat_request->osd_req = rbd_osd_req_create(rbd_dev, OBJ_OP_READ, 1, > + stat_request); > + if (!stat_request->osd_req) { > + ret = -ENOMEM; > + goto fail_stat_request; > + } > + > /* > * The response data for a STAT call consists of: > * le64 length; > @@ -2902,38 +2914,28 @@ static int rbd_img_obj_exists_submit(struct rbd_obj_request *obj_request) > size = sizeof (__le64) + sizeof (__le32) + sizeof (__le32); > page_count = (u32)calc_pages_for(0, size); > pages = ceph_alloc_page_vector(page_count, GFP_KERNEL); > - if (IS_ERR(pages)) > - return PTR_ERR(pages); > + if (IS_ERR(pages)) { > + ret = PTR_ERR(pages); > + goto fail_stat_request; > + } > > - ret = -ENOMEM; > - stat_request = rbd_obj_request_create(obj_request->object_name, 0, 0, > - OBJ_REQUEST_PAGES); > - if (!stat_request) > - goto out; > + osd_req_op_init(stat_request->osd_req, 0, CEPH_OSD_OP_STAT, 0); > + osd_req_op_raw_data_in_pages(stat_request->osd_req, 0, pages, size, 0, > + false, false); > > rbd_obj_request_get(obj_request); > stat_request->obj_request = obj_request; > stat_request->pages = pages; > stat_request->page_count = page_count; > - > - stat_request->osd_req = rbd_osd_req_create(rbd_dev, OBJ_OP_READ, 1, > - stat_request); > - if (!stat_request->osd_req) > - goto out; > stat_request->callback = rbd_img_obj_exists_callback; > > - osd_req_op_init(stat_request->osd_req, 0, CEPH_OSD_OP_STAT, 0); > - osd_req_op_raw_data_in_pages(stat_request->osd_req, 0, pages, size, 0, > - false, false); > rbd_osd_req_format_read(stat_request); > > rbd_obj_request_submit(stat_request); > return 0; > > -out: > - if (ret) > - rbd_obj_request_put(obj_request); > - > +fail_stat_request: > + rbd_obj_request_put(stat_request); > return ret; > } > > -- To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html