Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3ed97d63 authored by Ilya Dryomov's avatar Ilya Dryomov
Browse files

libceph: make ceph_osdc_put_request() accept NULL



Signed-off-by: default avatarIlya Dryomov <idryomov@gmail.com>
parent 663ae2cc
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -1099,7 +1099,6 @@ static int ceph_writepages_start(struct address_space *mapping,
		mapping->writeback_index = index;

out:
	if (req)
	ceph_osdc_put_request(req);
	ceph_put_snap_context(snapc);
	dout("writepages done, rc = %d\n", rc);
@@ -1824,9 +1823,7 @@ static int __ceph_pool_perm_get(struct ceph_inode_info *ci, u32 pool)
out_unlock:
	up_write(&mdsc->pool_perm_rwsem);

	if (rd_req)
	ceph_osdc_put_request(rd_req);
	if (wr_req)
	ceph_osdc_put_request(wr_req);
out:
	if (!err)
+5 −3
Original line number Diff line number Diff line
@@ -354,10 +354,12 @@ EXPORT_SYMBOL(ceph_osdc_get_request);

void ceph_osdc_put_request(struct ceph_osd_request *req)
{
	if (req) {
		dout("%s %p (was %d)\n", __func__, req,
		     atomic_read(&req->r_kref.refcount));
		kref_put(&req->r_kref, ceph_osdc_release_request);
	}
}
EXPORT_SYMBOL(ceph_osdc_put_request);

struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,