From patchwork Fri Jul 8 17:37:12 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christophe JAILLET X-Patchwork-Id: 12911570 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 39CA3C43334 for ; Fri, 8 Jul 2022 17:37:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238513AbiGHRhU (ORCPT ); Fri, 8 Jul 2022 13:37:20 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41252 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238447AbiGHRhT (ORCPT ); Fri, 8 Jul 2022 13:37:19 -0400 Received: from smtp.smtpout.orange.fr (smtp07.smtpout.orange.fr [80.12.242.129]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EF9DD606A4 for ; Fri, 8 Jul 2022 10:37:17 -0700 (PDT) Received: from pop-os.home ([90.11.190.129]) by smtp.orange.fr with ESMTPA id 9rukoBmwMvNzH9ruko3RGi; Fri, 08 Jul 2022 19:37:16 +0200 X-ME-Helo: pop-os.home X-ME-Auth: YWZlNiIxYWMyZDliZWIzOTcwYTEyYzlhMmU3ZiQ1M2U2MzfzZDfyZTMxZTBkMTYyNDBjNDJlZmQ3ZQ== X-ME-Date: Fri, 08 Jul 2022 19:37:16 +0200 X-ME-IP: 90.11.190.129 From: Christophe JAILLET To: Cheng Xu , Kai Shen , Jason Gunthorpe , Leon Romanovsky Cc: linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, Christophe JAILLET , linux-rdma@vger.kernel.org Subject: [PATCH 1/2] RDMA/erdma: Use the bitmap API to allocate bitmaps Date: Fri, 8 Jul 2022 19:37:12 +0200 Message-Id: <2764b6e204b32ef8c198a5efaf6c6bc4119f7665.1657301795.git.christophe.jaillet@wanadoo.fr> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org Use [devm_]bitmap_zalloc()/bitmap_free() instead of hand-writing them. It is less verbose and it improves the semantic. Signed-off-by: Christophe JAILLET --- drivers/infiniband/hw/erdma/erdma_cmdq.c | 7 +++---- drivers/infiniband/hw/erdma/erdma_main.c | 9 ++++----- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/drivers/infiniband/hw/erdma/erdma_cmdq.c b/drivers/infiniband/hw/erdma/erdma_cmdq.c index 0cf5032d4b78..0489838d9717 100644 --- a/drivers/infiniband/hw/erdma/erdma_cmdq.c +++ b/drivers/infiniband/hw/erdma/erdma_cmdq.c @@ -78,10 +78,9 @@ static int erdma_cmdq_wait_res_init(struct erdma_dev *dev, return -ENOMEM; spin_lock_init(&cmdq->lock); - cmdq->comp_wait_bitmap = - devm_kcalloc(&dev->pdev->dev, - BITS_TO_LONGS(cmdq->max_outstandings), - sizeof(unsigned long), GFP_KERNEL); + cmdq->comp_wait_bitmap = devm_bitmap_zalloc(&dev->pdev->dev, + cmdq->max_outstandings, + GFP_KERNEL); if (!cmdq->comp_wait_bitmap) { devm_kfree(&dev->pdev->dev, cmdq->wait_pool); return -ENOMEM; diff --git a/drivers/infiniband/hw/erdma/erdma_main.c b/drivers/infiniband/hw/erdma/erdma_main.c index 27484bea51d9..7e1e27acb404 100644 --- a/drivers/infiniband/hw/erdma/erdma_main.c +++ b/drivers/infiniband/hw/erdma/erdma_main.c @@ -423,9 +423,8 @@ static int erdma_res_cb_init(struct erdma_dev *dev) for (i = 0; i < ERDMA_RES_CNT; i++) { dev->res_cb[i].next_alloc_idx = 1; spin_lock_init(&dev->res_cb[i].lock); - dev->res_cb[i].bitmap = - kcalloc(BITS_TO_LONGS(dev->res_cb[i].max_cap), - sizeof(unsigned long), GFP_KERNEL); + dev->res_cb[i].bitmap = bitmap_zalloc(dev->res_cb[i].max_cap, + GFP_KERNEL); /* We will free the memory in erdma_res_cb_free */ if (!dev->res_cb[i].bitmap) goto err; @@ -435,7 +434,7 @@ static int erdma_res_cb_init(struct erdma_dev *dev) err: for (j = 0; j < i; j++) - kfree(dev->res_cb[j].bitmap); + bitmap_free(dev->res_cb[j].bitmap); return -ENOMEM; } @@ -445,7 +444,7 @@ static void erdma_res_cb_free(struct erdma_dev *dev) int i; for (i = 0; i < ERDMA_RES_CNT; i++) - kfree(dev->res_cb[i].bitmap); + bitmap_free(dev->res_cb[i].bitmap); } static const struct ib_device_ops erdma_device_ops = {