diff mbox series

[1/1] RDMA/uverbs: remove the unnecessary assignment

Message ID 20211207064607.541695-1-yanjun.zhu@linux.dev (mailing list archive)
State Accepted
Delegated to: Jason Gunthorpe
Headers show
Series [1/1] RDMA/uverbs: remove the unnecessary assignment | expand

Commit Message

Zhu Yanjun Dec. 7, 2021, 6:46 a.m. UTC
From: Zhu Yanjun <yanjun.zhu@linux.dev>

The struct member variable create_flags are assigned twice.
Remove the unnecessary assignment.

Fixes: ece9ca97ccdc8 ("RDMA/uverbs: Do not check the input length on create_cq/qp paths")
Signed-off-by: Zhu Yanjun <yanjun.zhu@linux.dev>
---
 drivers/infiniband/core/uverbs_cmd.c | 1 -
 1 file changed, 1 deletion(-)

Comments

Haakon Bugge Dec. 6, 2021, 2:27 p.m. UTC | #1
> On 7 Dec 2021, at 07:46, yanjun.zhu@linux.dev wrote:
> 
> From: Zhu Yanjun <yanjun.zhu@linux.dev>
> 
> The struct member variable create_flags are assigned twice.

may be "... is assigned twice." ?

> Remove the unnecessary assignment.
> 
> Fixes: ece9ca97ccdc8 ("RDMA/uverbs: Do not check the input length on create_cq/qp paths")
> Signed-off-by: Zhu Yanjun <yanjun.zhu@linux.dev>

LGTM, so

Reviewed-by: Håkon Bugge <haakon.bugge@oracle.com>



Thxs, Håkon

> ---
> drivers/infiniband/core/uverbs_cmd.c | 1 -
> 1 file changed, 1 deletion(-)
> 
> diff --git a/drivers/infiniband/core/uverbs_cmd.c b/drivers/infiniband/core/uverbs_cmd.c
> index d1345d76d9b1..6b6393176b3c 100644
> --- a/drivers/infiniband/core/uverbs_cmd.c
> +++ b/drivers/infiniband/core/uverbs_cmd.c
> @@ -1399,7 +1399,6 @@ static int create_qp(struct uverbs_attr_bundle *attrs,
> 	attr.sq_sig_type   = cmd->sq_sig_all ? IB_SIGNAL_ALL_WR :
> 					      IB_SIGNAL_REQ_WR;
> 	attr.qp_type       = cmd->qp_type;
> -	attr.create_flags  = 0;
> 
> 	attr.cap.max_send_wr     = cmd->max_send_wr;
> 	attr.cap.max_recv_wr     = cmd->max_recv_wr;
> -- 
> 2.27.0
>
Zhu Yanjun Dec. 6, 2021, 11:22 p.m. UTC | #2
在 2021/12/6 22:27, Haakon Bugge 写道:
> 
> 
>> On 7 Dec 2021, at 07:46, yanjun.zhu@linux.dev wrote:
>>
>> From: Zhu Yanjun <yanjun.zhu@linux.dev>
>>
>> The struct member variable create_flags are assigned twice.
> 
> may be "... is assigned twice." ?
My bad. Thanks.

Zhu Yanjun
> 
>> Remove the unnecessary assignment.
>>
>> Fixes: ece9ca97ccdc8 ("RDMA/uverbs: Do not check the input length on create_cq/qp paths")
>> Signed-off-by: Zhu Yanjun <yanjun.zhu@linux.dev>
> 
> LGTM, so
> 
> Reviewed-by: Håkon Bugge <haakon.bugge@oracle.com>
> 
> 
> 
> Thxs, Håkon
> 
>> ---
>> drivers/infiniband/core/uverbs_cmd.c | 1 -
>> 1 file changed, 1 deletion(-)
>>
>> diff --git a/drivers/infiniband/core/uverbs_cmd.c b/drivers/infiniband/core/uverbs_cmd.c
>> index d1345d76d9b1..6b6393176b3c 100644
>> --- a/drivers/infiniband/core/uverbs_cmd.c
>> +++ b/drivers/infiniband/core/uverbs_cmd.c
>> @@ -1399,7 +1399,6 @@ static int create_qp(struct uverbs_attr_bundle *attrs,
>> 	attr.sq_sig_type   = cmd->sq_sig_all ? IB_SIGNAL_ALL_WR :
>> 					      IB_SIGNAL_REQ_WR;
>> 	attr.qp_type       = cmd->qp_type;
>> -	attr.create_flags  = 0;
>>
>> 	attr.cap.max_send_wr     = cmd->max_send_wr;
>> 	attr.cap.max_recv_wr     = cmd->max_recv_wr;
>> -- 
>> 2.27.0
>>
>
Jason Gunthorpe Dec. 6, 2021, 11:52 p.m. UTC | #3
On Tue, Dec 07, 2021 at 01:46:07AM -0500, yanjun.zhu@linux.dev wrote:
> From: Zhu Yanjun <yanjun.zhu@linux.dev>
> 
> The struct member variable create_flags are assigned twice.
> Remove the unnecessary assignment.
> 
> Fixes: ece9ca97ccdc8 ("RDMA/uverbs: Do not check the input length on create_cq/qp paths")
> Signed-off-by: Zhu Yanjun <yanjun.zhu@linux.dev>
> Reviewed-by: Håkon Bugge <haakon.bugge@oracle.com>
> ---
>  drivers/infiniband/core/uverbs_cmd.c | 1 -
>  1 file changed, 1 deletion(-)

Applied to for-next, thanks

Jason
diff mbox series

Patch

diff --git a/drivers/infiniband/core/uverbs_cmd.c b/drivers/infiniband/core/uverbs_cmd.c
index d1345d76d9b1..6b6393176b3c 100644
--- a/drivers/infiniband/core/uverbs_cmd.c
+++ b/drivers/infiniband/core/uverbs_cmd.c
@@ -1399,7 +1399,6 @@  static int create_qp(struct uverbs_attr_bundle *attrs,
 	attr.sq_sig_type   = cmd->sq_sig_all ? IB_SIGNAL_ALL_WR :
 					      IB_SIGNAL_REQ_WR;
 	attr.qp_type       = cmd->qp_type;
-	attr.create_flags  = 0;
 
 	attr.cap.max_send_wr     = cmd->max_send_wr;
 	attr.cap.max_recv_wr     = cmd->max_recv_wr;