
driver inclusion category: bugfix bugzilla: https://gitee.com/openeuler/kernel/issues/IBV8UW ---------------------------------------------------------------------- die_info is allocated with kzalloc() and should be freed with kfree() instead of kvfree(). Fixes: 2004b3f9092a ("RDMA/hns: Support RoCE bonding") Signed-off-by: Junxian Huang <huangjunxian6@hisilicon.com> Signed-off-by: Xinghai Cen <cenxinghai@h-partners.com> --- drivers/infiniband/hw/hns/hns_roce_bond.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/infiniband/hw/hns/hns_roce_bond.c b/drivers/infiniband/hw/hns/hns_roce_bond.c index f76667335189..1f5eb0eca246 100644 --- a/drivers/infiniband/hw/hns/hns_roce_bond.c +++ b/drivers/infiniband/hw/hns/hns_roce_bond.c @@ -606,7 +606,7 @@ static struct hns_roce_die_info *alloc_die_info(int bus_num) static void dealloc_die_info(struct hns_roce_die_info *die_info, u8 bus_num) { xa_erase(&roce_bond_xa, bus_num); - kvfree(die_info); + kfree(die_info); } static int alloc_bond_id(struct hns_roce_bond_group *bond_grp) -- 2.33.0