Mempools created for slab caches should use
mempool_create_slab_pool().

Cc: Lars Ellenberg <drbd-...@lists.linbit.com>
Cc: Jens Axboe <ax...@fb.com>
Signed-off-by: David Rientjes <rient...@google.com>
---
 drivers/block/drbd/drbd_main.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/drivers/block/drbd/drbd_main.c b/drivers/block/drbd/drbd_main.c
--- a/drivers/block/drbd/drbd_main.c
+++ b/drivers/block/drbd/drbd_main.c
@@ -2107,13 +2107,12 @@ static int drbd_create_mempools(void)
        if (drbd_md_io_page_pool == NULL)
                goto Enomem;
 
-       drbd_request_mempool = mempool_create(number,
-               mempool_alloc_slab, mempool_free_slab, drbd_request_cache);
+       drbd_request_mempool = mempool_create_slab_pool(number,
+               drbd_request_cache);
        if (drbd_request_mempool == NULL)
                goto Enomem;
 
-       drbd_ee_mempool = mempool_create(number,
-               mempool_alloc_slab, mempool_free_slab, drbd_ee_cache);
+       drbd_ee_mempool = mempool_create_slab_pool(number, drbd_ee_cache);
        if (drbd_ee_mempool == NULL)
                goto Enomem;
 
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to