summaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/irdma/pble.h
diff options
context:
space:
mode:
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>2021-12-04 20:51:34 +0100
committerJason Gunthorpe <jgg@nvidia.com>2021-12-06 19:55:19 -0400
commitb6fa6f229f7364782799e5105d8d353e389033e4 (patch)
tree989b7350c2f5b7c8c98e754d163f5b03ed95b77f /drivers/infiniband/hw/irdma/pble.h
parent1eb23d04320a0b538fb5613fad10334214a0aa2b (diff)
downloadlinux-stable-b6fa6f229f7364782799e5105d8d353e389033e4.tar.gz
linux-stable-b6fa6f229f7364782799e5105d8d353e389033e4.tar.bz2
linux-stable-b6fa6f229f7364782799e5105d8d353e389033e4.zip
RDMA/irdma: Fix the type used to declare a bitmap
'bitmapbuf' is really used as a bitmap, so it should be defined as a 'unsigned long *' to be more consistent with the bitmap API. Link: https://lore.kernel.org/r/574b773fe7ced0cc87f1e1832350b38374815bd4.1638647428.git.christophe.jaillet@wanadoo.fr Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Diffstat (limited to 'drivers/infiniband/hw/irdma/pble.h')
-rw-r--r--drivers/infiniband/hw/irdma/pble.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/irdma/pble.h b/drivers/infiniband/hw/irdma/pble.h
index e1b3b8118a2c..faf71c99e12e 100644
--- a/drivers/infiniband/hw/irdma/pble.h
+++ b/drivers/infiniband/hw/irdma/pble.h
@@ -69,7 +69,7 @@ struct irdma_add_page_info {
struct irdma_chunk {
struct list_head list;
struct irdma_dma_info dmainfo;
- void *bitmapbuf;
+ unsigned long *bitmapbuf;
u32 sizeofbitmap;
u64 size;