* [PATCH 1/4] RDMA/siw: Move tx_cpu ahead
2023-11-29 3:24 [PATCH 0/4] Misc changes for siw Guoqing Jiang
@ 2023-11-29 3:24 ` Guoqing Jiang
2023-12-01 15:43 ` Bernard Metzler
2023-11-29 3:24 ` [PATCH 2/4] RDMA/siw: Reduce memory usage of struct siw_rx_stream Guoqing Jiang
` (2 subsequent siblings)
3 siblings, 1 reply; 11+ messages in thread
From: Guoqing Jiang @ 2023-11-29 3:24 UTC (permalink / raw)
To: bmt, jgg, leon; +Cc: linux-rdma, guoqing.jiang
We can reduce one cacheline for the usage of struct siw_qp.
Before,
/* size: 1928, cachelines: 31, members: 38 */
/* sum members: 1920, holes: 2, sum holes: 8 */
/* paddings: 4, sum paddings: 13 */
/* forced alignments: 3 */
after
/* size: 1920, cachelines: 30, members: 38 */
/* paddings: 4, sum paddings: 13 */
/* forced alignments: 3 */
Signed-off-by: Guoqing Jiang <guoqing.jiang@linux.dev>
---
drivers/infiniband/sw/siw/siw.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/infiniband/sw/siw/siw.h b/drivers/infiniband/sw/siw/siw.h
index b36d1ec25327..d14bb965af75 100644
--- a/drivers/infiniband/sw/siw/siw.h
+++ b/drivers/infiniband/sw/siw/siw.h
@@ -417,10 +417,10 @@ struct siw_iwarp_tx {
struct siw_qp {
struct ib_qp base_qp;
struct siw_device *sdev;
+ int tx_cpu;
struct kref ref;
struct completion qp_free;
struct list_head devq;
- int tx_cpu;
struct siw_qp_attrs attrs;
struct siw_cep *cep;
--
2.35.3
^ permalink raw reply related [flat|nested] 11+ messages in thread* RE: [PATCH 1/4] RDMA/siw: Move tx_cpu ahead
2023-11-29 3:24 ` [PATCH 1/4] RDMA/siw: Move tx_cpu ahead Guoqing Jiang
@ 2023-12-01 15:43 ` Bernard Metzler
0 siblings, 0 replies; 11+ messages in thread
From: Bernard Metzler @ 2023-12-01 15:43 UTC (permalink / raw)
To: Guoqing Jiang, jgg@ziepe.ca, leon@kernel.org; +Cc: linux-rdma@vger.kernel.org
> -----Original Message-----
> From: Guoqing Jiang <guoqing.jiang@linux.dev>
> Sent: Wednesday, November 29, 2023 4:24 AM
> To: Bernard Metzler <BMT@zurich.ibm.com>; jgg@ziepe.ca; leon@kernel.org
> Cc: linux-rdma@vger.kernel.org; guoqing.jiang@linux.dev
> Subject: [EXTERNAL] [PATCH 1/4] RDMA/siw: Move tx_cpu ahead
>
> We can reduce one cacheline for the usage of struct siw_qp.
>
> Before,
>
> /* size: 1928, cachelines: 31, members: 38 */
> /* sum members: 1920, holes: 2, sum holes: 8 */
> /* paddings: 4, sum paddings: 13 */
> /* forced alignments: 3 */
>
> after
>
> /* size: 1920, cachelines: 30, members: 38 */
> /* paddings: 4, sum paddings: 13 */
> /* forced alignments: 3 */
>
> Signed-off-by: Guoqing Jiang <guoqing.jiang@linux.dev>
> ---
> drivers/infiniband/sw/siw/siw.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/infiniband/sw/siw/siw.h
> b/drivers/infiniband/sw/siw/siw.h
> index b36d1ec25327..d14bb965af75 100644
> --- a/drivers/infiniband/sw/siw/siw.h
> +++ b/drivers/infiniband/sw/siw/siw.h
> @@ -417,10 +417,10 @@ struct siw_iwarp_tx {
> struct siw_qp {
> struct ib_qp base_qp;
> struct siw_device *sdev;
> + int tx_cpu;
> struct kref ref;
> struct completion qp_free;
> struct list_head devq;
> - int tx_cpu;
> struct siw_qp_attrs attrs;
>
> struct siw_cep *cep;
> --
> 2.35.3
Looks good.
Acked-by: Bernard Metzler <bmt@zurich.ibm.com>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 2/4] RDMA/siw: Reduce memory usage of struct siw_rx_stream
2023-11-29 3:24 [PATCH 0/4] Misc changes for siw Guoqing Jiang
2023-11-29 3:24 ` [PATCH 1/4] RDMA/siw: Move tx_cpu ahead Guoqing Jiang
@ 2023-11-29 3:24 ` Guoqing Jiang
2023-12-01 15:43 ` Bernard Metzler
2023-11-29 3:24 ` [PATCH 3/4] RDMA/siw: Set qp_state in siw_query_qp Guoqing Jiang
2023-11-29 3:24 ` [PATCH 4/4] RDMA/siw: Call orq_get_current if possible Guoqing Jiang
3 siblings, 1 reply; 11+ messages in thread
From: Guoqing Jiang @ 2023-11-29 3:24 UTC (permalink / raw)
To: bmt, jgg, leon; +Cc: linux-rdma, guoqing.jiang
We can reduce the memory of the struct by move some of it's
member.
Before,
/* size: 144, cachelines: 3, members: 17 */
/* sum members: 124, holes: 3, sum holes: 12 */
/* sum bitfield members: 7 bits (0 bytes) */
/* padding: 7 */
/* bit_padding: 1 bits */
After
/* size: 128, cachelines: 2, members: 17 */
/* padding: 3 */
/* bit_padding: 1 bits */
Signed-off-by: Guoqing Jiang <guoqing.jiang@linux.dev>
---
drivers/infiniband/sw/siw/siw.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/infiniband/sw/siw/siw.h b/drivers/infiniband/sw/siw/siw.h
index d14bb965af75..2edba2a864bb 100644
--- a/drivers/infiniband/sw/siw/siw.h
+++ b/drivers/infiniband/sw/siw/siw.h
@@ -288,10 +288,11 @@ struct siw_rx_stream {
int skb_offset; /* offset in skb */
int skb_copied; /* processed bytes in skb */
+ enum siw_rx_state state;
+
union iwarp_hdr hdr;
struct mpa_trailer trailer;
-
- enum siw_rx_state state;
+ struct shash_desc *mpa_crc_hd;
/*
* For each FPDU, main RX loop runs through 3 stages:
@@ -313,7 +314,6 @@ struct siw_rx_stream {
u64 ddp_to;
u32 inval_stag; /* Stag to be invalidated */
- struct shash_desc *mpa_crc_hd;
u8 rx_suspend : 1;
u8 pad : 2; /* # of pad bytes expected */
u8 rdmap_op : 4; /* opcode of current frame */
--
2.35.3
^ permalink raw reply related [flat|nested] 11+ messages in thread* RE: [PATCH 2/4] RDMA/siw: Reduce memory usage of struct siw_rx_stream
2023-11-29 3:24 ` [PATCH 2/4] RDMA/siw: Reduce memory usage of struct siw_rx_stream Guoqing Jiang
@ 2023-12-01 15:43 ` Bernard Metzler
0 siblings, 0 replies; 11+ messages in thread
From: Bernard Metzler @ 2023-12-01 15:43 UTC (permalink / raw)
To: Guoqing Jiang, jgg@ziepe.ca, leon@kernel.org; +Cc: linux-rdma@vger.kernel.org
> -----Original Message-----
> From: Guoqing Jiang <guoqing.jiang@linux.dev>
> Sent: Wednesday, November 29, 2023 4:24 AM
> To: Bernard Metzler <BMT@zurich.ibm.com>; jgg@ziepe.ca; leon@kernel.org
> Cc: linux-rdma@vger.kernel.org; guoqing.jiang@linux.dev
> Subject: [EXTERNAL] [PATCH 2/4] RDMA/siw: Reduce memory usage of struct
> siw_rx_stream
>
> We can reduce the memory of the struct by move some of it's
> member.
>
> Before,
>
> /* size: 144, cachelines: 3, members: 17 */
> /* sum members: 124, holes: 3, sum holes: 12 */
> /* sum bitfield members: 7 bits (0 bytes) */
> /* padding: 7 */
> /* bit_padding: 1 bits */
>
> After
>
> /* size: 128, cachelines: 2, members: 17 */
> /* padding: 3 */
> /* bit_padding: 1 bits */
>
> Signed-off-by: Guoqing Jiang <guoqing.jiang@linux.dev>
> ---
> drivers/infiniband/sw/siw/siw.h | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/infiniband/sw/siw/siw.h
> b/drivers/infiniband/sw/siw/siw.h
> index d14bb965af75..2edba2a864bb 100644
> --- a/drivers/infiniband/sw/siw/siw.h
> +++ b/drivers/infiniband/sw/siw/siw.h
> @@ -288,10 +288,11 @@ struct siw_rx_stream {
> int skb_offset; /* offset in skb */
> int skb_copied; /* processed bytes in skb */
>
> + enum siw_rx_state state;
> +
> union iwarp_hdr hdr;
> struct mpa_trailer trailer;
> -
> - enum siw_rx_state state;
> + struct shash_desc *mpa_crc_hd;
>
> /*
> * For each FPDU, main RX loop runs through 3 stages:
> @@ -313,7 +314,6 @@ struct siw_rx_stream {
> u64 ddp_to;
> u32 inval_stag; /* Stag to be invalidated */
>
> - struct shash_desc *mpa_crc_hd;
> u8 rx_suspend : 1;
> u8 pad : 2; /* # of pad bytes expected */
> u8 rdmap_op : 4; /* opcode of current frame */
> --
> 2.35.3
Looks good.
Acked-by: Bernard Metzler <bmt@zurich.ibm.com>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 3/4] RDMA/siw: Set qp_state in siw_query_qp
2023-11-29 3:24 [PATCH 0/4] Misc changes for siw Guoqing Jiang
2023-11-29 3:24 ` [PATCH 1/4] RDMA/siw: Move tx_cpu ahead Guoqing Jiang
2023-11-29 3:24 ` [PATCH 2/4] RDMA/siw: Reduce memory usage of struct siw_rx_stream Guoqing Jiang
@ 2023-11-29 3:24 ` Guoqing Jiang
2023-11-30 18:09 ` Bernard Metzler
2023-11-29 3:24 ` [PATCH 4/4] RDMA/siw: Call orq_get_current if possible Guoqing Jiang
3 siblings, 1 reply; 11+ messages in thread
From: Guoqing Jiang @ 2023-11-29 3:24 UTC (permalink / raw)
To: bmt, jgg, leon; +Cc: linux-rdma, guoqing.jiang
Run test_query_rc_qp against siw failed since siw didn't set qp_state
accordingly. To address it, introduce siw_qp_state_to_ib_qp_state
which convert SIW_QP_STATE_IDLE to IB_QPS_INIT which is similar as
in cxgb4.
rdma-core# ./build/bin/run_tests.py --dev siw0 tests.test_qp.QPTest.test_query_rc_qp -v
test_query_rc_qp (tests.test_qp.QPTest)
Queries an RC QP after creation. Verifies that its properties are as ... FAIL
======================================================================
FAIL: test_query_rc_qp (tests.test_qp.QPTest)
Queries an RC QP after creation. Verifies that its properties are as
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/gjiang/rdma-core/tests/test_qp.py", line 284, in test_query_rc_qp
self.query_qp_common_test(e.IBV_QPT_RC)
File "/home/gjiang/rdma-core/tests/test_qp.py", line 265, in query_qp_common_test
self.verify_qp_attrs(caps, e.IBV_QPS_INIT, qp_init_attr, qp_attr)
File "/home/gjiang/rdma-core/tests/test_qp.py", line 239, in verify_qp_attrs
self.assertEqual(state, attr.qp_state)
AssertionError: <ibv_qp_state.IBV_QPS_INIT: 1> != 0
----------------------------------------------------------------------
Ran 1 test in 0.057s
FAILED (failures=1)
Signed-off-by: Guoqing Jiang <guoqing.jiang@linux.dev>
---
drivers/infiniband/sw/siw/siw_verbs.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/drivers/infiniband/sw/siw/siw_verbs.c b/drivers/infiniband/sw/siw/siw_verbs.c
index dca6a155523d..233985434cfd 100644
--- a/drivers/infiniband/sw/siw/siw_verbs.c
+++ b/drivers/infiniband/sw/siw/siw_verbs.c
@@ -19,6 +19,15 @@
#include "siw_verbs.h"
#include "siw_mem.h"
+static int siw_qp_state_to_ib_qp_state[IB_QPS_ERR] = {
+ [SIW_QP_STATE_IDLE] = IB_QPS_INIT,
+ [SIW_QP_STATE_RTR] = IB_QPS_RTR,
+ [SIW_QP_STATE_RTS] = IB_QPS_RTS,
+ [SIW_QP_STATE_CLOSING] = IB_QPS_SQD,
+ [SIW_QP_STATE_TERMINATE] = IB_QPS_SQE,
+ [SIW_QP_STATE_ERROR] = IB_QPS_ERR
+};
+
static int ib_qp_state_to_siw_qp_state[IB_QPS_ERR + 1] = {
[IB_QPS_RESET] = SIW_QP_STATE_IDLE,
[IB_QPS_INIT] = SIW_QP_STATE_IDLE,
@@ -504,6 +513,7 @@ int siw_query_qp(struct ib_qp *base_qp, struct ib_qp_attr *qp_attr,
} else {
return -EINVAL;
}
+ qp_attr->qp_state = siw_qp_state_to_ib_qp_state[qp->attrs.state];
qp_attr->cap.max_inline_data = SIW_MAX_INLINE;
qp_attr->cap.max_send_wr = qp->attrs.sq_size;
qp_attr->cap.max_send_sge = qp->attrs.sq_max_sges;
--
2.35.3
^ permalink raw reply related [flat|nested] 11+ messages in thread* RE: [PATCH 3/4] RDMA/siw: Set qp_state in siw_query_qp
2023-11-29 3:24 ` [PATCH 3/4] RDMA/siw: Set qp_state in siw_query_qp Guoqing Jiang
@ 2023-11-30 18:09 ` Bernard Metzler
2023-12-01 1:29 ` Guoqing Jiang
0 siblings, 1 reply; 11+ messages in thread
From: Bernard Metzler @ 2023-11-30 18:09 UTC (permalink / raw)
To: Guoqing Jiang, jgg@ziepe.ca, leon@kernel.org; +Cc: linux-rdma@vger.kernel.org
> -----Original Message-----
> From: Guoqing Jiang <guoqing.jiang@linux.dev>
> Sent: Wednesday, November 29, 2023 4:24 AM
> To: Bernard Metzler <BMT@zurich.ibm.com>; jgg@ziepe.ca; leon@kernel.org
> Cc: linux-rdma@vger.kernel.org; guoqing.jiang@linux.dev
> Subject: [EXTERNAL] [PATCH 3/4] RDMA/siw: Set qp_state in siw_query_qp
>
> Run test_query_rc_qp against siw failed since siw didn't set qp_state
> accordingly. To address it, introduce siw_qp_state_to_ib_qp_state
> which convert SIW_QP_STATE_IDLE to IB_QPS_INIT which is similar as
> in cxgb4.
>
> rdma-core# ./build/bin/run_tests.py --dev siw0
> tests.test_qp.QPTest.test_query_rc_qp -v
> test_query_rc_qp (tests.test_qp.QPTest)
> Queries an RC QP after creation. Verifies that its properties are as ...
> FAIL
>
> ======================================================================
> FAIL: test_query_rc_qp (tests.test_qp.QPTest)
> Queries an RC QP after creation. Verifies that its properties are as
> ----------------------------------------------------------------------
> Traceback (most recent call last):
> File "/home/gjiang/rdma-core/tests/test_qp.py", line 284, in
> test_query_rc_qp
> self.query_qp_common_test(e.IBV_QPT_RC)
> File "/home/gjiang/rdma-core/tests/test_qp.py", line 265, in
> query_qp_common_test
> self.verify_qp_attrs(caps, e.IBV_QPS_INIT, qp_init_attr, qp_attr)
> File "/home/gjiang/rdma-core/tests/test_qp.py", line 239, in
> verify_qp_attrs
> self.assertEqual(state, attr.qp_state)
> AssertionError: <ibv_qp_state.IBV_QPS_INIT: 1> != 0
>
> ----------------------------------------------------------------------
> Ran 1 test in 0.057s
>
> FAILED (failures=1)
>
> Signed-off-by: Guoqing Jiang <guoqing.jiang@linux.dev>
Very nice finding! How could that remain undetected.
Probably no real application checks QP state 😉
> ---
> drivers/infiniband/sw/siw/siw_verbs.c | 10 ++++++++++
> 1 file changed, 10 insertions(+)
>
> diff --git a/drivers/infiniband/sw/siw/siw_verbs.c
> b/drivers/infiniband/sw/siw/siw_verbs.c
> index dca6a155523d..233985434cfd 100644
> --- a/drivers/infiniband/sw/siw/siw_verbs.c
> +++ b/drivers/infiniband/sw/siw/siw_verbs.c
> @@ -19,6 +19,15 @@
> #include "siw_verbs.h"
> #include "siw_mem.h"
>
> +static int siw_qp_state_to_ib_qp_state[IB_QPS_ERR] = {
You may better use SIW_QP_STATE_COUNT for the size
of the array
> + [SIW_QP_STATE_IDLE] = IB_QPS_INIT,
> + [SIW_QP_STATE_RTR] = IB_QPS_RTR,
> + [SIW_QP_STATE_RTS] = IB_QPS_RTS,
> + [SIW_QP_STATE_CLOSING] = IB_QPS_SQD,
> + [SIW_QP_STATE_TERMINATE] = IB_QPS_SQE,
> + [SIW_QP_STATE_ERROR] = IB_QPS_ERR
> +};
> +
> static int ib_qp_state_to_siw_qp_state[IB_QPS_ERR + 1] = {
> [IB_QPS_RESET] = SIW_QP_STATE_IDLE,
> [IB_QPS_INIT] = SIW_QP_STATE_IDLE,
> @@ -504,6 +513,7 @@ int siw_query_qp(struct ib_qp *base_qp, struct
> ib_qp_attr *qp_attr,
> } else {
> return -EINVAL;
> }
> + qp_attr->qp_state = siw_qp_state_to_ib_qp_state[qp->attrs.state];
> qp_attr->cap.max_inline_data = SIW_MAX_INLINE;
> qp_attr->cap.max_send_wr = qp->attrs.sq_size;
> qp_attr->cap.max_send_sge = qp->attrs.sq_max_sges;
> --
> 2.35.3
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [PATCH 3/4] RDMA/siw: Set qp_state in siw_query_qp
2023-11-30 18:09 ` Bernard Metzler
@ 2023-12-01 1:29 ` Guoqing Jiang
0 siblings, 0 replies; 11+ messages in thread
From: Guoqing Jiang @ 2023-12-01 1:29 UTC (permalink / raw)
To: Bernard Metzler, jgg@ziepe.ca, leon@kernel.org; +Cc: linux-rdma@vger.kernel.org
Hi Bernard,
On 12/1/23 02:09, Bernard Metzler wrote:
>> -----Original Message-----
>> From: Guoqing Jiang <guoqing.jiang@linux.dev>
>> Sent: Wednesday, November 29, 2023 4:24 AM
>> To: Bernard Metzler <BMT@zurich.ibm.com>; jgg@ziepe.ca; leon@kernel.org
>> Cc: linux-rdma@vger.kernel.org; guoqing.jiang@linux.dev
>> Subject: [EXTERNAL] [PATCH 3/4] RDMA/siw: Set qp_state in siw_query_qp
>>
>> Run test_query_rc_qp against siw failed since siw didn't set qp_state
>> accordingly. To address it, introduce siw_qp_state_to_ib_qp_state
>> which convert SIW_QP_STATE_IDLE to IB_QPS_INIT which is similar as
>> in cxgb4.
>>
>> rdma-core# ./build/bin/run_tests.py --dev siw0
>> tests.test_qp.QPTest.test_query_rc_qp -v
>> test_query_rc_qp (tests.test_qp.QPTest)
>> Queries an RC QP after creation. Verifies that its properties are as ...
>> FAIL
>>
>> ======================================================================
>> FAIL: test_query_rc_qp (tests.test_qp.QPTest)
>> Queries an RC QP after creation. Verifies that its properties are as
>> ----------------------------------------------------------------------
>> Traceback (most recent call last):
>> File "/home/gjiang/rdma-core/tests/test_qp.py", line 284, in
>> test_query_rc_qp
>> self.query_qp_common_test(e.IBV_QPT_RC)
>> File "/home/gjiang/rdma-core/tests/test_qp.py", line 265, in
>> query_qp_common_test
>> self.verify_qp_attrs(caps, e.IBV_QPS_INIT, qp_init_attr, qp_attr)
>> File "/home/gjiang/rdma-core/tests/test_qp.py", line 239, in
>> verify_qp_attrs
>> self.assertEqual(state, attr.qp_state)
>> AssertionError: <ibv_qp_state.IBV_QPS_INIT: 1> != 0
>>
>> ----------------------------------------------------------------------
>> Ran 1 test in 0.057s
>>
>> FAILED (failures=1)
>>
>> Signed-off-by: Guoqing Jiang <guoqing.jiang@linux.dev>
> Very nice finding! How could that remain undetected.
> Probably no real application checks QP state 😉
My guess is no one run the test after the commit 😉.
698f2ae80476 tests: Fix comparing qp_state for iWARP providers.
>> ---
>> drivers/infiniband/sw/siw/siw_verbs.c | 10 ++++++++++
>> 1 file changed, 10 insertions(+)
>>
>> diff --git a/drivers/infiniband/sw/siw/siw_verbs.c
>> b/drivers/infiniband/sw/siw/siw_verbs.c
>> index dca6a155523d..233985434cfd 100644
>> --- a/drivers/infiniband/sw/siw/siw_verbs.c
>> +++ b/drivers/infiniband/sw/siw/siw_verbs.c
>> @@ -19,6 +19,15 @@
>> #include "siw_verbs.h"
>> #include "siw_mem.h"
>>
>> +static int siw_qp_state_to_ib_qp_state[IB_QPS_ERR] = {
> You may better use SIW_QP_STATE_COUNT for the size
> of the array
Right, fully agree, will change it in next version after you finish
review this version.
Thanks,
Guoqing
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 4/4] RDMA/siw: Call orq_get_current if possible
2023-11-29 3:24 [PATCH 0/4] Misc changes for siw Guoqing Jiang
` (2 preceding siblings ...)
2023-11-29 3:24 ` [PATCH 3/4] RDMA/siw: Set qp_state in siw_query_qp Guoqing Jiang
@ 2023-11-29 3:24 ` Guoqing Jiang
2023-12-01 15:47 ` Bernard Metzler
3 siblings, 1 reply; 11+ messages in thread
From: Guoqing Jiang @ 2023-11-29 3:24 UTC (permalink / raw)
To: bmt, jgg, leon; +Cc: linux-rdma, guoqing.jiang
We can call it in siw_orq_empty.
Signed-off-by: Guoqing Jiang <guoqing.jiang@linux.dev>
---
drivers/infiniband/sw/siw/siw.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/infiniband/sw/siw/siw.h b/drivers/infiniband/sw/siw/siw.h
index 2edba2a864bb..75253f2b3e3d 100644
--- a/drivers/infiniband/sw/siw/siw.h
+++ b/drivers/infiniband/sw/siw/siw.h
@@ -657,7 +657,7 @@ static inline struct siw_sqe *orq_get_free(struct siw_qp *qp)
static inline int siw_orq_empty(struct siw_qp *qp)
{
- return qp->orq[qp->orq_get % qp->attrs.orq_size].flags == 0 ? 1 : 0;
+ return orq_get_current(qp)->flags == 0 ? 1 : 0;
}
static inline struct siw_sqe *irq_alloc_free(struct siw_qp *qp)
--
2.35.3
^ permalink raw reply related [flat|nested] 11+ messages in thread* RE: [PATCH 4/4] RDMA/siw: Call orq_get_current if possible
2023-11-29 3:24 ` [PATCH 4/4] RDMA/siw: Call orq_get_current if possible Guoqing Jiang
@ 2023-12-01 15:47 ` Bernard Metzler
2023-12-03 9:15 ` Guoqing Jiang
0 siblings, 1 reply; 11+ messages in thread
From: Bernard Metzler @ 2023-12-01 15:47 UTC (permalink / raw)
To: Guoqing Jiang, jgg@ziepe.ca, leon@kernel.org; +Cc: linux-rdma@vger.kernel.org
> -----Original Message-----
> From: Guoqing Jiang <guoqing.jiang@linux.dev>
> Sent: Wednesday, November 29, 2023 4:24 AM
> To: Bernard Metzler <BMT@zurich.ibm.com>; jgg@ziepe.ca; leon@kernel.org
> Cc: linux-rdma@vger.kernel.org; guoqing.jiang@linux.dev
> Subject: [EXTERNAL] [PATCH 4/4] RDMA/siw: Call orq_get_current if possible
>
> We can call it in siw_orq_empty.
>
> Signed-off-by: Guoqing Jiang <guoqing.jiang@linux.dev>
> ---
> drivers/infiniband/sw/siw/siw.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/infiniband/sw/siw/siw.h
> b/drivers/infiniband/sw/siw/siw.h
> index 2edba2a864bb..75253f2b3e3d 100644
> --- a/drivers/infiniband/sw/siw/siw.h
> +++ b/drivers/infiniband/sw/siw/siw.h
> @@ -657,7 +657,7 @@ static inline struct siw_sqe *orq_get_free(struct
> siw_qp *qp)
>
> static inline int siw_orq_empty(struct siw_qp *qp)
> {
> - return qp->orq[qp->orq_get % qp->attrs.orq_size].flags == 0 ? 1 : 0;
> + return orq_get_current(qp)->flags == 0 ? 1 : 0;
> }
>
> static inline struct siw_sqe *irq_alloc_free(struct siw_qp *qp)
> --
> 2.35.3
Please change the commit message. Something like
'Use orq_get_current() in siw_orq_empty()'.
Otherwise looks good!
Acked-by: Bernard Metzler <bmt@zurich.ibm.com>
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [PATCH 4/4] RDMA/siw: Call orq_get_current if possible
2023-12-01 15:47 ` Bernard Metzler
@ 2023-12-03 9:15 ` Guoqing Jiang
0 siblings, 0 replies; 11+ messages in thread
From: Guoqing Jiang @ 2023-12-03 9:15 UTC (permalink / raw)
To: Bernard Metzler, jgg@ziepe.ca, leon@kernel.org; +Cc: linux-rdma@vger.kernel.org
On 12/1/23 23:47, Bernard Metzler wrote:
>
>> -----Original Message-----
>> From: Guoqing Jiang <guoqing.jiang@linux.dev>
>> Sent: Wednesday, November 29, 2023 4:24 AM
>> To: Bernard Metzler <BMT@zurich.ibm.com>; jgg@ziepe.ca; leon@kernel.org
>> Cc: linux-rdma@vger.kernel.org; guoqing.jiang@linux.dev
>> Subject: [EXTERNAL] [PATCH 4/4] RDMA/siw: Call orq_get_current if possible
>>
>> We can call it in siw_orq_empty.
>>
>> Signed-off-by: Guoqing Jiang <guoqing.jiang@linux.dev>
>> ---
>> drivers/infiniband/sw/siw/siw.h | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/infiniband/sw/siw/siw.h
>> b/drivers/infiniband/sw/siw/siw.h
>> index 2edba2a864bb..75253f2b3e3d 100644
>> --- a/drivers/infiniband/sw/siw/siw.h
>> +++ b/drivers/infiniband/sw/siw/siw.h
>> @@ -657,7 +657,7 @@ static inline struct siw_sqe *orq_get_free(struct
>> siw_qp *qp)
>>
>> static inline int siw_orq_empty(struct siw_qp *qp)
>> {
>> - return qp->orq[qp->orq_get % qp->attrs.orq_size].flags == 0 ? 1 : 0;
>> + return orq_get_current(qp)->flags == 0 ? 1 : 0;
>> }
>>
>> static inline struct siw_sqe *irq_alloc_free(struct siw_qp *qp)
>> --
>> 2.35.3
> Please change the commit message. Something like
> 'Use orq_get_current() in siw_orq_empty()'.
Ok, will do.
> Otherwise looks good!
>
> Acked-by: Bernard Metzler <bmt@zurich.ibm.com>
Thanks for your review!
Guoqing
^ permalink raw reply [flat|nested] 11+ messages in thread