linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dm: Fix spelling mistake in comments
@ 2022-08-31  3:29 zhoun
  2022-09-19 18:52 ` Song Liu
  0 siblings, 1 reply; 5+ messages in thread
From: zhoun @ 2022-08-31  3:29 UTC (permalink / raw)
  To: song; +Cc: linux-raid, linux-kernel, zhounan

From: zhounan <zhounan@nfschina.com>

Fix spelling of dones't in comments.

Signed-off-by: zhounan <zhounan@nfschina.com>
---
 drivers/md/raid5-cache.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/md/raid5-cache.c b/drivers/md/raid5-cache.c
index f4e1cc1ece43..683fd4adde17 100644
--- a/drivers/md/raid5-cache.c
+++ b/drivers/md/raid5-cache.c
@@ -125,7 +125,7 @@ struct r5l_log {
 					 * reclaimed.  if it's 0, reclaim spaces
 					 * used by io_units which are in
 					 * IO_UNIT_STRIPE_END state (eg, reclaim
-					 * dones't wait for specific io_unit
+					 * doesn't wait for specific io_unit
 					 * switching to IO_UNIT_STRIPE_END
 					 * state) */
 	wait_queue_head_t iounit_wait;
-- 
2.27.0


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

* Re: [PATCH] dm: Fix spelling mistake in comments
  2022-08-31  3:29 [PATCH] dm: Fix spelling mistake in comments zhoun
@ 2022-09-19 18:52 ` Song Liu
  2022-09-20  1:28   ` Zhou nan
  0 siblings, 1 reply; 5+ messages in thread
From: Song Liu @ 2022-09-19 18:52 UTC (permalink / raw)
  To: zhoun; +Cc: linux-raid, open list

On Tue, Aug 30, 2022 at 8:30 PM zhoun <zhounan@nfschina.com> wrote:
>
> From: zhounan <zhounan@nfschina.com>
>
> Fix spelling of dones't in comments.
>
> Signed-off-by: zhounan <zhounan@nfschina.com>

Please use your full name in the commit log. Also, please update the commit
message with more specific information, like:

md: Fix spelling mistake in comments of r5l_log

Fix spelling of "dones't" in comments.

Thanks,
Song

> ---
>  drivers/md/raid5-cache.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/md/raid5-cache.c b/drivers/md/raid5-cache.c
> index f4e1cc1ece43..683fd4adde17 100644
> --- a/drivers/md/raid5-cache.c
> +++ b/drivers/md/raid5-cache.c
> @@ -125,7 +125,7 @@ struct r5l_log {
>                                          * reclaimed.  if it's 0, reclaim spaces
>                                          * used by io_units which are in
>                                          * IO_UNIT_STRIPE_END state (eg, reclaim
> -                                        * dones't wait for specific io_unit
> +                                        * doesn't wait for specific io_unit
>                                          * switching to IO_UNIT_STRIPE_END
>                                          * state) */
>         wait_queue_head_t iounit_wait;
> --
> 2.27.0
>

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

* Re: [PATCH] dm: Fix spelling mistake in comments
  2022-09-19 18:52 ` Song Liu
@ 2022-09-20  1:28   ` Zhou nan
  2022-09-20  1:28     ` Zhou nan
  0 siblings, 1 reply; 5+ messages in thread
From: Zhou nan @ 2022-09-20  1:28 UTC (permalink / raw)
  To: song; +Cc: linux-kernel, linux-raid, zhounan

Thank you for your suggestion and I will send a fixed version again.


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

* [PATCH] dm: Fix spelling mistake in comments
  2022-09-20  1:28   ` Zhou nan
@ 2022-09-20  1:28     ` Zhou nan
  2022-09-20 12:04       ` Paul Menzel
  0 siblings, 1 reply; 5+ messages in thread
From: Zhou nan @ 2022-09-20  1:28 UTC (permalink / raw)
  To: song; +Cc: linux-kernel, linux-raid, zhounan

From: zhounan <zhounan@nfschina.com>

Fix spelling of dones't in comments.

Signed-off-by: zhounan <zhounan@nfschina.com>
---
 drivers/md/raid5-cache.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/md/raid5-cache.c b/drivers/md/raid5-cache.c
index f4e1cc1ece43..683fd4adde17 100644
--- a/drivers/md/raid5-cache.c
+++ b/drivers/md/raid5-cache.c
@@ -125,7 +125,7 @@ struct r5l_log {
 					 * reclaimed.  if it's 0, reclaim spaces
 					 * used by io_units which are in
 					 * IO_UNIT_STRIPE_END state (eg, reclaim
-					 * dones't wait for specific io_unit
+					 * doesn't wait for specific io_unit
 					 * switching to IO_UNIT_STRIPE_END
 					 * state) */
 	wait_queue_head_t iounit_wait;
-- 
2.27.0


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

* Re: [PATCH] dm: Fix spelling mistake in comments
  2022-09-20  1:28     ` Zhou nan
@ 2022-09-20 12:04       ` Paul Menzel
  0 siblings, 0 replies; 5+ messages in thread
From: Paul Menzel @ 2022-09-20 12:04 UTC (permalink / raw)
  To: Zhou Nan; +Cc: song, linux-kernel, linux-raid

Dear Zhou,


Am 20.09.22 um 03:28 schrieb Zhou nan:
> From: zhounan <zhounan@nfschina.com>

You missed the comment about using your full name.

     $ git config --global user.name "Zhou Nan"
     $ git commit --amend --author="Zhou Nan <zhounan@nfschina.com>"

> Fix spelling of dones't in comments.

… in one comment.

(Also in summary.)

> Signed-off-by: zhounan <zhounan@nfschina.com>
> ---
>   drivers/md/raid5-cache.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/md/raid5-cache.c b/drivers/md/raid5-cache.c
> index f4e1cc1ece43..683fd4adde17 100644
> --- a/drivers/md/raid5-cache.c
> +++ b/drivers/md/raid5-cache.c
> @@ -125,7 +125,7 @@ struct r5l_log {
>   					 * reclaimed.  if it's 0, reclaim spaces
>   					 * used by io_units which are in
>   					 * IO_UNIT_STRIPE_END state (eg, reclaim
> -					 * dones't wait for specific io_unit
> +					 * doesn't wait for specific io_unit
>   					 * switching to IO_UNIT_STRIPE_END
>   					 * state) */
>   	wait_queue_head_t iounit_wait;

The rest looks good.


Kind regards,

Paul

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

end of thread, other threads:[~2022-09-20 12:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-31  3:29 [PATCH] dm: Fix spelling mistake in comments zhoun
2022-09-19 18:52 ` Song Liu
2022-09-20  1:28   ` Zhou nan
2022-09-20  1:28     ` Zhou nan
2022-09-20 12:04       ` Paul Menzel

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).