All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next] RDMA/erdma: remove unneeded semicolon
@ 2022-06-08  0:55 Yang Li
  2022-06-08  3:36 ` Cheng Xu
  0 siblings, 1 reply; 5+ messages in thread
From: Yang Li @ 2022-06-08  0:55 UTC (permalink / raw)
  To: chengyou
  Cc: kaishen, jgg, leon, linux-rdma, linux-kernel, Yang Li, Abaci Robot

Eliminate the following coccicheck warning:
./drivers/infiniband/hw/erdma/erdma_qp.c:254:3-4: Unneeded semicolon

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
 drivers/infiniband/hw/erdma/erdma_qp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/infiniband/hw/erdma/erdma_qp.c b/drivers/infiniband/hw/erdma/erdma_qp.c
index 6d49095662c8..a33b29ef11a5 100644
--- a/drivers/infiniband/hw/erdma/erdma_qp.c
+++ b/drivers/infiniband/hw/erdma/erdma_qp.c
@@ -251,7 +251,7 @@ static int fill_inline_data(struct erdma_qp *qp,
 					       qp->attrs.sq_size, SQEBB_SHIFT);
 			if (!remain_size)
 				break;
-		};
+		}
 
 		i++;
 	}
-- 
2.20.1.7.g153144c


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH -next] RDMA/erdma: remove unneeded semicolon
  2022-06-08  0:55 [PATCH -next] RDMA/erdma: remove unneeded semicolon Yang Li
@ 2022-06-08  3:36 ` Cheng Xu
  2022-06-08  7:58   ` Leon Romanovsky
  2022-06-08 11:51   ` Jason Gunthorpe
  0 siblings, 2 replies; 5+ messages in thread
From: Cheng Xu @ 2022-06-08  3:36 UTC (permalink / raw)
  To: Yang Li, jgg, Leon Romanovsky
  Cc: kaishen, linux-rdma, linux-kernel, Abaci Robot



On 6/8/22 8:55 AM, Yang Li wrote:
> Eliminate the following coccicheck warning:
> ./drivers/infiniband/hw/erdma/erdma_qp.c:254:3-4: Unneeded semicolon
> 
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>

Reviewed-by: Cheng Xu <chengyou@linux.alibaba.com>

Thanks.


Jason,

BTW, are this and other two patches for erdma posted today parts of
the static checker reports which you mentioned in [1] ? If so, I think I
should re-post the v10 patches including the fixes ?

Thanks,
Cheng Xu

[1] https://lore.kernel.org/linux-rdma/20220606154754.GA645238@nvidia.com/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH -next] RDMA/erdma: remove unneeded semicolon
  2022-06-08  3:36 ` Cheng Xu
@ 2022-06-08  7:58   ` Leon Romanovsky
  2022-06-08 10:41     ` Cheng Xu
  2022-06-08 11:51   ` Jason Gunthorpe
  1 sibling, 1 reply; 5+ messages in thread
From: Leon Romanovsky @ 2022-06-08  7:58 UTC (permalink / raw)
  To: Cheng Xu; +Cc: Yang Li, jgg, kaishen, linux-rdma, linux-kernel, Abaci Robot

On Wed, Jun 08, 2022 at 11:36:07AM +0800, Cheng Xu wrote:
> 
> 
> On 6/8/22 8:55 AM, Yang Li wrote:
> > Eliminate the following coccicheck warning:
> > ./drivers/infiniband/hw/erdma/erdma_qp.c:254:3-4: Unneeded semicolon
> > 
> > Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> > Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
> 
> Reviewed-by: Cheng Xu <chengyou@linux.alibaba.com>
> 
> Thanks.
> 
> 
> Jason,
> 
> BTW, are this and other two patches for erdma posted today parts of
> the static checker reports which you mentioned in [1] ? If so, I think I
> should re-post the v10 patches including the fixes ?

Yes, the fixes need to be squashed into the relevant patches.

Thanks

> 
> Thanks,
> Cheng Xu
> 
> [1] https://lore.kernel.org/linux-rdma/20220606154754.GA645238@nvidia.com/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH -next] RDMA/erdma: remove unneeded semicolon
  2022-06-08  7:58   ` Leon Romanovsky
@ 2022-06-08 10:41     ` Cheng Xu
  0 siblings, 0 replies; 5+ messages in thread
From: Cheng Xu @ 2022-06-08 10:41 UTC (permalink / raw)
  To: Leon Romanovsky
  Cc: Yang Li, jgg, kaishen, linux-rdma, linux-kernel, Abaci Robot



On 6/8/22 3:58 PM, Leon Romanovsky wrote:
> On Wed, Jun 08, 2022 at 11:36:07AM +0800, Cheng Xu wrote:
>>
>>
>> On 6/8/22 8:55 AM, Yang Li wrote:
>>> Eliminate the following coccicheck warning:
>>> ./drivers/infiniband/hw/erdma/erdma_qp.c:254:3-4: Unneeded semicolon
>>>
>>> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
>>> Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
>>
>> Reviewed-by: Cheng Xu <chengyou@linux.alibaba.com>
>>
>> Thanks.
>>
>>
>> Jason,
>>
>> BTW, are this and other two patches for erdma posted today parts of
>> the static checker reports which you mentioned in [1] ? If so, I think I
>> should re-post the v10 patches including the fixes ?
> 
> Yes, the fixes need to be squashed into the relevant patches.
> 
> Thanks
> 

Get it, thanks.
Cheng Xu

>>
>> Thanks,
>> Cheng Xu
>>
>> [1] https://lore.kernel.org/linux-rdma/20220606154754.GA645238@nvidia.com/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH -next] RDMA/erdma: remove unneeded semicolon
  2022-06-08  3:36 ` Cheng Xu
  2022-06-08  7:58   ` Leon Romanovsky
@ 2022-06-08 11:51   ` Jason Gunthorpe
  1 sibling, 0 replies; 5+ messages in thread
From: Jason Gunthorpe @ 2022-06-08 11:51 UTC (permalink / raw)
  To: Cheng Xu
  Cc: Yang Li, Leon Romanovsky, kaishen, linux-rdma, linux-kernel, Abaci Robot

On Wed, Jun 08, 2022 at 11:36:07AM +0800, Cheng Xu wrote:
> 
> 
> On 6/8/22 8:55 AM, Yang Li wrote:
> > Eliminate the following coccicheck warning:
> > ./drivers/infiniband/hw/erdma/erdma_qp.c:254:3-4: Unneeded semicolon
> > 
> > Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> > Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
> 
> Reviewed-by: Cheng Xu <chengyou@linux.alibaba.com>
> 
> Thanks.
> 
> 
> Jason,
> 
> BTW, are this and other two patches for erdma posted today parts of
> the static checker reports which you mentioned in [1] ? If so, I think I
> should re-post the v10 patches including the fixes ?

Yes, and I would wait for a week or so because this is just the first
day.

Jason

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-06-08 11:51 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-08  0:55 [PATCH -next] RDMA/erdma: remove unneeded semicolon Yang Li
2022-06-08  3:36 ` Cheng Xu
2022-06-08  7:58   ` Leon Romanovsky
2022-06-08 10:41     ` Cheng Xu
2022-06-08 11:51   ` Jason Gunthorpe

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.