[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1b02b07b-617e-bc5c-8619-7a46fba5a512@huawei.com>
Date: Sat, 16 May 2020 18:09:38 +0800
From: Yunfeng Ye <yeyunfeng@...wei.com>
To: Christoph Hellwig <hch@....de>, <m.szyprowski@...sung.com>,
<robin.murphy@....com>, <iommu@...ts.linux-foundation.org>,
<linux-kernel@...r.kernel.org>
CC: Shiyuan Hu <hushiyuan@...wei.com>,
Hewenliang <hewenliang4@...wei.com>
Subject: [PATCH] dma-coherent: switch to bitmap_zalloc() in
dma_init_coherent_memory()
Switch to bitmap_zalloc() to show clearly in dma_init_coherent_memory().
No functional change.
Signed-off-by: Yunfeng Ye <yeyunfeng@...wei.com>
---
kernel/dma/coherent.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/kernel/dma/coherent.c b/kernel/dma/coherent.c
index 2a0c4985f38e..794b31e61ca0 100644
--- a/kernel/dma/coherent.c
+++ b/kernel/dma/coherent.c
@@ -44,7 +44,6 @@ static int dma_init_coherent_memory(phys_addr_t phys_addr,
struct dma_coherent_mem *dma_mem = NULL;
void *mem_base = NULL;
int pages = size >> PAGE_SHIFT;
- int bitmap_size = BITS_TO_LONGS(pages) * sizeof(long);
int ret;
if (!size) {
@@ -62,7 +61,7 @@ static int dma_init_coherent_memory(phys_addr_t phys_addr,
ret = -ENOMEM;
goto out;
}
- dma_mem->bitmap = kzalloc(bitmap_size, GFP_KERNEL);
+ dma_mem->bitmap = bitmap_zalloc(pages, GFP_KERNEL);
if (!dma_mem->bitmap) {
ret = -ENOMEM;
goto out;
@@ -90,7 +89,7 @@ static void dma_release_coherent_memory(struct dma_coherent_mem *mem)
return;
memunmap(mem->virt_base);
- kfree(mem->bitmap);
+ bitmap_free(mem->bitmap);
kfree(mem);
}
--
1.8.3.1
Powered by blists - more mailing lists