36 lines
1.2 KiB
Diff
36 lines
1.2 KiB
Diff
|
|
From 6ee60b49872472129e26fbb4d19061e7a864a32a Mon Sep 17 00:00:00 2001
|
||
|
|
From: Chengchang Tang <tangchengchang@huawei.com>
|
||
|
|
Date: Tue, 30 Jan 2024 20:57:02 +0800
|
||
|
|
Subject: [PATCH] libhns: Fix missing flexible WQE buffer page flag
|
||
|
|
|
||
|
|
driver inclusion
|
||
|
|
category: bugfix
|
||
|
|
bugzilla: https://gitee.com/openeuler/kernel/issues/I98HIN
|
||
|
|
|
||
|
|
--------------------------------------------------------------------------
|
||
|
|
|
||
|
|
Due to the lack of this flag, this feature cannot actually take effect.
|
||
|
|
|
||
|
|
Fixes: bf57963e729c ("libhns: Support flexible WQE buffer page size")
|
||
|
|
Signed-off-by: Chengchang Tang <tangchengchang@huawei.com>
|
||
|
|
---
|
||
|
|
providers/hns/hns_roce_u.c | 2 +-
|
||
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
|
||
|
|
diff --git a/providers/hns/hns_roce_u.c b/providers/hns/hns_roce_u.c
|
||
|
|
index 7a3d1a2..c4a3ba5 100644
|
||
|
|
--- a/providers/hns/hns_roce_u.c
|
||
|
|
+++ b/providers/hns/hns_roce_u.c
|
||
|
|
@@ -342,7 +342,7 @@ static void ucontext_set_cmd(struct hns_roce_alloc_ucontext *cmd,
|
||
|
|
struct hnsdv_context_attr *attr)
|
||
|
|
{
|
||
|
|
cmd->config |= HNS_ROCE_EXSGE_FLAGS | HNS_ROCE_RQ_INLINE_FLAGS |
|
||
|
|
- HNS_ROCE_CQE_INLINE_FLAGS;
|
||
|
|
+ HNS_ROCE_CQE_INLINE_FLAGS | HNS_ROCE_UCTX_DYN_QP_PGSZ;
|
||
|
|
|
||
|
|
if (!attr || !(attr->flags & HNSDV_CONTEXT_FLAGS_DCA))
|
||
|
|
return;
|
||
|
|
--
|
||
|
|
2.33.0
|
||
|
|
|