linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] net/mlx5: add the missing space character
@ 2020-04-03  4:26 Hu Haowen
  2020-04-08 19:42 ` Saeed Mahameed
  0 siblings, 1 reply; 7+ messages in thread
From: Hu Haowen @ 2020-04-03  4:26 UTC (permalink / raw)
  To: saeedm, leon, davem
  Cc: moshe, lsahlber, kw, wqu, xiubli, xianfengting221, chris,
	stfrench, airlied, yamada.masahiro, cai, netdev, linux-rdma,
	linux-kernel

Commit 91b56d8462a9 ("net/mlx5: improve some comments") did not add
that missing space character and this commit is used to fix it up.

Fixes: 91b56d8462a9 ("net/mlx5: improve some comments")
Signed-off-by: Hu Haowen <xianfengting221@163.com>
---
 drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c b/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c
index c9c9b479bda5..31bddb48e5c3 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c
@@ -676,7 +676,7 @@ static void mlx5_fw_tracer_handle_traces(struct work_struct *work)
 	block_count = tracer->buff.size / TRACER_BLOCK_SIZE_BYTE;
 	start_offset = tracer->buff.consumer_index * TRACER_BLOCK_SIZE_BYTE;
 
-	/* Copy the block to local buffer to avoid HW override while being processed*/
+	/* Copy the block to local buffer to avoid HW override while being processed */
 	memcpy(tmp_trace_block, tracer->buff.log_buf + start_offset,
 	       TRACER_BLOCK_SIZE_BYTE);
 
-- 
2.20.1



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

* Re: [PATCH v2] net/mlx5: add the missing space character
  2020-04-03  4:26 [PATCH v2] net/mlx5: add the missing space character Hu Haowen
@ 2020-04-08 19:42 ` Saeed Mahameed
  2020-04-16 14:44   ` Hu Haowen
  0 siblings, 1 reply; 7+ messages in thread
From: Saeed Mahameed @ 2020-04-08 19:42 UTC (permalink / raw)
  To: davem, xianfengting221, leon
  Cc: cai, linux-rdma, lsahlber, kw, xiubli, airlied, Moshe Shemesh,
	linux-kernel, wqu, chris, yamada.masahiro, stfrench, netdev

On Fri, 2020-04-03 at 12:26 +0800, Hu Haowen wrote:
> Commit 91b56d8462a9 ("net/mlx5: improve some comments") did not add
> that missing space character and this commit is used to fix it up.
> 
> Fixes: 91b56d8462a9 ("net/mlx5: improve some comments")
> 

Please re-spin and submit to net-next once net-next re-opens, 
avoid referencing the above commit since this patch is a stand alone
and has nothing to do with that patch.. just have a stand alone commit
message explaining the space fix.

i fixed the commit message of the previous patch, so the Fixes tag is
unnecessary 

> Signed-off-by: Hu Haowen <xianfengting221@163.com>


> ---
>  drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c
> b/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c
> index c9c9b479bda5..31bddb48e5c3 100644
> --- a/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c
> +++ b/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c
> @@ -676,7 +676,7 @@ static void mlx5_fw_tracer_handle_traces(struct
> work_struct *work)
>  	block_count = tracer->buff.size / TRACER_BLOCK_SIZE_BYTE;
>  	start_offset = tracer->buff.consumer_index *
> TRACER_BLOCK_SIZE_BYTE;
>  
> -	/* Copy the block to local buffer to avoid HW override while
> being processed*/
> +	/* Copy the block to local buffer to avoid HW override while
> being processed */
>  	memcpy(tmp_trace_block, tracer->buff.log_buf + start_offset,
>  	       TRACER_BLOCK_SIZE_BYTE);
>  

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

* Re: [PATCH v2] net/mlx5: add the missing space character
  2020-04-08 19:42 ` Saeed Mahameed
@ 2020-04-16 14:44   ` Hu Haowen
  2020-04-17  3:44     ` Saeed Mahameed
  0 siblings, 1 reply; 7+ messages in thread
From: Hu Haowen @ 2020-04-16 14:44 UTC (permalink / raw)
  To: Saeed Mahameed, davem, leon
  Cc: cai, linux-rdma, lsahlber, kw, xiubli, airlied, Moshe Shemesh,
	linux-kernel, wqu, chris, yamada.masahiro, stfrench, netdev


On 2020/4/9 3:42 AM, Saeed Mahameed wrote:
> On Fri, 2020-04-03 at 12:26 +0800, Hu Haowen wrote:
>> Commit 91b56d8462a9 ("net/mlx5: improve some comments") did not add
>> that missing space character and this commit is used to fix it up.
>>
>> Fixes: 91b56d8462a9 ("net/mlx5: improve some comments")
>>
> Please re-spin and submit to net-next once net-next re-opens,
> avoid referencing the above commit since this patch is a stand alone
> and has nothing to do with that patch.. just have a stand alone commit
> message explaining the space fix.

Sorry for my late reply. Because I'm a kernel newbie, I know nothing
about the basic methods and manners in the kernel development. Thanks
a lot for your patience on my mistake, pointing it out and fixing it
up.

Btw, did net-next re-open and did my changes get into the mainline?


>
> i fixed the commit message of the previous patch, so the Fixes tag is
> unnecessary
>
>> Signed-off-by: Hu Haowen <xianfengting221@163.com>
>
>> ---
>>   drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c
>> b/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c
>> index c9c9b479bda5..31bddb48e5c3 100644
>> --- a/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c
>> +++ b/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c
>> @@ -676,7 +676,7 @@ static void mlx5_fw_tracer_handle_traces(struct
>> work_struct *work)
>>   	block_count = tracer->buff.size / TRACER_BLOCK_SIZE_BYTE;
>>   	start_offset = tracer->buff.consumer_index *
>> TRACER_BLOCK_SIZE_BYTE;
>>   
>> -	/* Copy the block to local buffer to avoid HW override while
>> being processed*/
>> +	/* Copy the block to local buffer to avoid HW override while
>> being processed */
>>   	memcpy(tmp_trace_block, tracer->buff.log_buf + start_offset,
>>   	       TRACER_BLOCK_SIZE_BYTE);
>>   


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

* Re: [PATCH v2] net/mlx5: add the missing space character
  2020-04-16 14:44   ` Hu Haowen
@ 2020-04-17  3:44     ` Saeed Mahameed
  2020-04-17  4:34       ` Hu Haowen
  0 siblings, 1 reply; 7+ messages in thread
From: Saeed Mahameed @ 2020-04-17  3:44 UTC (permalink / raw)
  To: davem, xianfengting221, leon
  Cc: cai, linux-rdma, lsahlber, kw, xiubli, airlied, Moshe Shemesh,
	linux-kernel, wqu, chris, yamada.masahiro, stfrench, netdev

On Thu, 2020-04-16 at 22:44 +0800, Hu Haowen wrote:
> On 2020/4/9 3:42 AM, Saeed Mahameed wrote:
> > On Fri, 2020-04-03 at 12:26 +0800, Hu Haowen wrote:
> > > Commit 91b56d8462a9 ("net/mlx5: improve some comments") did not
> > > add
> > > that missing space character and this commit is used to fix it
> > > up.
> > > 
> > > Fixes: 91b56d8462a9 ("net/mlx5: improve some comments")
> > > 
> > Please re-spin and submit to net-next once net-next re-opens,
> > avoid referencing the above commit since this patch is a stand
> > alone
> > and has nothing to do with that patch.. just have a stand alone
> > commit
> > message explaining the space fix.
> 
> Sorry for my late reply. Because I'm a kernel newbie, I know nothing
> about the basic methods and manners in the kernel development. Thanks
> a lot for your patience on my mistake, pointing it out and fixing it
> up.
> 
> Btw, did net-next re-open and did my changes get into the mainline?
> 
> 

Normally net-next closes once merge window is open at the end of
rc7/rc8 kernel cycle.

and reopens on the week of the kernel release, after the merge window
is closed (2 weeks after rc7/8 is closed).

you can use this link.
http://vger.kernel.org/~davem/net-next.html

Or just monitor netdev mailing list for an email announcement from
David Miller.

Thanks and welcome to the netdev family.


 


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

* Re: [PATCH v2] net/mlx5: add the missing space character
  2020-04-17  3:44     ` Saeed Mahameed
@ 2020-04-17  4:34       ` Hu Haowen
  2020-04-17 22:40         ` Saeed Mahameed
  0 siblings, 1 reply; 7+ messages in thread
From: Hu Haowen @ 2020-04-17  4:34 UTC (permalink / raw)
  To: Saeed Mahameed, davem, leon
  Cc: cai, linux-rdma, lsahlber, kw, xiubli, airlied, Moshe Shemesh,
	linux-kernel, wqu, chris, yamada.masahiro, stfrench, netdev


On 2020/4/17 11:44 AM, Saeed Mahameed wrote:
> On Thu, 2020-04-16 at 22:44 +0800, Hu Haowen wrote:
>> On 2020/4/9 3:42 AM, Saeed Mahameed wrote:
>>> On Fri, 2020-04-03 at 12:26 +0800, Hu Haowen wrote:
>>>> Commit 91b56d8462a9 ("net/mlx5: improve some comments") did not
>>>> add
>>>> that missing space character and this commit is used to fix it
>>>> up.
>>>>
>>>> Fixes: 91b56d8462a9 ("net/mlx5: improve some comments")
>>>>
>>> Please re-spin and submit to net-next once net-next re-opens,
>>> avoid referencing the above commit since this patch is a stand
>>> alone
>>> and has nothing to do with that patch.. just have a stand alone
>>> commit
>>> message explaining the space fix.
>> Sorry for my late reply. Because I'm a kernel newbie, I know nothing
>> about the basic methods and manners in the kernel development. Thanks
>> a lot for your patience on my mistake, pointing it out and fixing it
>> up.
>>
>> Btw, did net-next re-open and did my changes get into the mainline?
>>
>>
> Normally net-next closes once merge window is open at the end of
> rc7/rc8 kernel cycle.
>
> and reopens on the week of the kernel release, after the merge window
> is closed (2 weeks after rc7/8 is closed).
>
> you can use this link.
> http://vger.kernel.org/~davem/net-next.html


Oh... Thanks.

But it's more than 2 weeks since Linux 5.6 was released, so net-next
should be open now according to your words. But it's still closed.

Is my idea wrong? Does "kernel release" mean an -rc release or a formal
release?


>
> Or just monitor netdev mailing list for an email announcement from
> David Miller.
>
> Thanks and welcome to the netdev family.
>
>
>   
>


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

* Re: [PATCH v2] net/mlx5: add the missing space character
  2020-04-17  4:34       ` Hu Haowen
@ 2020-04-17 22:40         ` Saeed Mahameed
  2020-04-18 12:54           ` Hu Haowen
  0 siblings, 1 reply; 7+ messages in thread
From: Saeed Mahameed @ 2020-04-17 22:40 UTC (permalink / raw)
  To: davem, xianfengting221, leon
  Cc: cai, linux-rdma, lsahlber, kw, xiubli, airlied, Moshe Shemesh,
	linux-kernel, wqu, chris, yamada.masahiro, stfrench, netdev

On Fri, 2020-04-17 at 12:34 +0800, Hu Haowen wrote:
> On 2020/4/17 11:44 AM, Saeed Mahameed wrote:
> > On Thu, 2020-04-16 at 22:44 +0800, Hu Haowen wrote:
> > > On 2020/4/9 3:42 AM, Saeed Mahameed wrote:
> > > > On Fri, 2020-04-03 at 12:26 +0800, Hu Haowen wrote:
> > > > > Commit 91b56d8462a9 ("net/mlx5: improve some comments") did
> > > > > not
> > > > > add
> > > > > that missing space character and this commit is used to fix
> > > > > it
> > > > > up.
> > > > > 
> > > > > Fixes: 91b56d8462a9 ("net/mlx5: improve some comments")
> > > > > 
> > > > Please re-spin and submit to net-next once net-next re-opens,
> > > > avoid referencing the above commit since this patch is a stand
> > > > alone
> > > > and has nothing to do with that patch.. just have a stand alone
> > > > commit
> > > > message explaining the space fix.
> > > Sorry for my late reply. Because I'm a kernel newbie, I know
> > > nothing
> > > about the basic methods and manners in the kernel development.
> > > Thanks
> > > a lot for your patience on my mistake, pointing it out and fixing
> > > it
> > > up.
> > > 
> > > Btw, did net-next re-open and did my changes get into the
> > > mainline?
> > > 
> > > 
> > Normally net-next closes once merge window is open at the end of
> > rc7/rc8 kernel cycle.
> > 
> > and reopens on the week of the kernel release, after the merge
> > window
> > is closed (2 weeks after rc7/8 is closed).
> > 
> > you can use this link.
> > http://vger.kernel.org/~davem/net-next.html
> 
> Oh... Thanks.
> 
> But it's more than 2 weeks since Linux 5.6 was released, so net-next
> should be open now according to your words. But it's still closed.
> 
> Is my idea wrong? Does "kernel release" mean an -rc release or a
> formal
> release?

Oh, my bad, 
yes release means a kernel release .. 5.x
what i meant is when the rc1 is out two weeks after the kernel release.


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

* Re: [PATCH v2] net/mlx5: add the missing space character
  2020-04-17 22:40         ` Saeed Mahameed
@ 2020-04-18 12:54           ` Hu Haowen
  0 siblings, 0 replies; 7+ messages in thread
From: Hu Haowen @ 2020-04-18 12:54 UTC (permalink / raw)
  To: Saeed Mahameed, davem, leon
  Cc: cai, linux-rdma, lsahlber, kw, xiubli, airlied, Moshe Shemesh,
	linux-kernel, wqu, chris, yamada.masahiro, stfrench, netdev


On 2020/4/18 6:40 AM, Saeed Mahameed wrote:
> On Fri, 2020-04-17 at 12:34 +0800, Hu Haowen wrote:
>> On 2020/4/17 11:44 AM, Saeed Mahameed wrote:
>>> On Thu, 2020-04-16 at 22:44 +0800, Hu Haowen wrote:
>>>> On 2020/4/9 3:42 AM, Saeed Mahameed wrote:
>>>>> On Fri, 2020-04-03 at 12:26 +0800, Hu Haowen wrote:
>>>>>> Commit 91b56d8462a9 ("net/mlx5: improve some comments") did
>>>>>> not
>>>>>> add
>>>>>> that missing space character and this commit is used to fix
>>>>>> it
>>>>>> up.
>>>>>>
>>>>>> Fixes: 91b56d8462a9 ("net/mlx5: improve some comments")
>>>>>>
>>>>> Please re-spin and submit to net-next once net-next re-opens,
>>>>> avoid referencing the above commit since this patch is a stand
>>>>> alone
>>>>> and has nothing to do with that patch.. just have a stand alone
>>>>> commit
>>>>> message explaining the space fix.
>>>> Sorry for my late reply. Because I'm a kernel newbie, I know
>>>> nothing
>>>> about the basic methods and manners in the kernel development.
>>>> Thanks
>>>> a lot for your patience on my mistake, pointing it out and fixing
>>>> it
>>>> up.
>>>>
>>>> Btw, did net-next re-open and did my changes get into the
>>>> mainline?
>>>>
>>>>
>>> Normally net-next closes once merge window is open at the end of
>>> rc7/rc8 kernel cycle.
>>>
>>> and reopens on the week of the kernel release, after the merge
>>> window
>>> is closed (2 weeks after rc7/8 is closed).
>>>
>>> you can use this link.
>>> http://vger.kernel.org/~davem/net-next.html
>> Oh... Thanks.
>>
>> But it's more than 2 weeks since Linux 5.6 was released, so net-next
>> should be open now according to your words. But it's still closed.
>>
>> Is my idea wrong? Does "kernel release" mean an -rc release or a
>> formal
>> release?
> Oh, my bad,
> yes release means a kernel release .. 5.x
> what i meant is when the rc1 is out two weeks after the kernel release.


So... Is net-next open now? It was closed when I checked yesterday.


>


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

end of thread, other threads:[~2020-04-18 12:57 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-03  4:26 [PATCH v2] net/mlx5: add the missing space character Hu Haowen
2020-04-08 19:42 ` Saeed Mahameed
2020-04-16 14:44   ` Hu Haowen
2020-04-17  3:44     ` Saeed Mahameed
2020-04-17  4:34       ` Hu Haowen
2020-04-17 22:40         ` Saeed Mahameed
2020-04-18 12:54           ` Hu Haowen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).