[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20211125180915.649652-1-parav@nvidia.com>
Date: Thu, 25 Nov 2021 20:09:15 +0200
From: Parav Pandit <parav@...dia.com>
To: <virtualization@...ts.linux-foundation.org>, <mst@...hat.com>,
<jasowang@...hat.com>
CC: <edumazet@...gle.com>, <kbuild-all@...ts.01.org>, <lkp@...el.com>,
<linux-kernel@...r.kernel.org>, <kbuild@...ts.01.org>,
<elic@...dia.com>, Parav Pandit <parav@...dia.com>,
Dan Carpenter <dan.carpenter@...cle.com>
Subject: [PATCH] vdpa: Consider device id larger than 31
virtio device id value can be more than 31. Hence, use BIT_ULL in
assignment.
Fixes: 33b347503f01 ("vdpa: Define vdpa mgmt device, ops and a netlink interface")
Reported-by: kernel test robot <lkp@...el.com>
Reported-by: Dan Carpenter <dan.carpenter@...cle.com>
Signed-off-by: Parav Pandit <parav@...dia.com>
---
drivers/vdpa/vdpa.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/vdpa/vdpa.c b/drivers/vdpa/vdpa.c
index 7332a74a4b00..e91c71aeeddf 100644
--- a/drivers/vdpa/vdpa.c
+++ b/drivers/vdpa/vdpa.c
@@ -404,7 +404,7 @@ static int vdpa_mgmtdev_fill(const struct vdpa_mgmt_dev *mdev, struct sk_buff *m
goto msg_err;
while (mdev->id_table[i].device) {
- supported_classes |= BIT(mdev->id_table[i].device);
+ supported_classes |= BIT_ULL(mdev->id_table[i].device);
i++;
}
--
2.26.2
Powered by blists - more mailing lists