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

Commit 9e767adb authored by Ilya Dryomov's avatar Ilya Dryomov
Browse files

libceph: osdc->req_mempool should be backed by a slab pool



ceph_osd_request_cache was introduced a long time ago.  Also, osd_req
is about to get a flexible array member, which ceph_osd_request_cache
is going to be aware of.

Signed-off-by: default avatarIlya Dryomov <idryomov@gmail.com>
parent ae458f5a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2648,8 +2648,8 @@ int ceph_osdc_init(struct ceph_osd_client *osdc, struct ceph_client *client)
	    round_jiffies_relative(osdc->client->options->osd_idle_ttl));

	err = -ENOMEM;
	osdc->req_mempool = mempool_create_kmalloc_pool(10,
					sizeof(struct ceph_osd_request));
	osdc->req_mempool = mempool_create_slab_pool(10,
						     ceph_osd_request_cache);
	if (!osdc->req_mempool)
		goto out;