mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 14:42:37 +02:00
RDMA/hns: Validate the pkey index
[ Upstream commit2a67fcfa0d] Before query pkey, make sure that the queried index is valid. Fixes:9a4435375c("IB/hns: Add driver files for hns RoCE driver") Link: https://lore.kernel.org/r/20211117145954.123893-1-kamalheib1@gmail.com Signed-off-by: Kamal Heib <kamalheib1@gmail.com> Signed-off-by: Jason Gunthorpe <jgg@nvidia.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
04a032ea24
commit
c5f414d69a
|
|
@ -279,6 +279,9 @@ static enum rdma_link_layer hns_roce_get_link_layer(struct ib_device *device,
|
||||||
static int hns_roce_query_pkey(struct ib_device *ib_dev, u8 port, u16 index,
|
static int hns_roce_query_pkey(struct ib_device *ib_dev, u8 port, u16 index,
|
||||||
u16 *pkey)
|
u16 *pkey)
|
||||||
{
|
{
|
||||||
|
if (index > 0)
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
*pkey = PKEY_ID;
|
*pkey = PKEY_ID;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user