All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] btrfs: Fix a typo
@ 2021-03-26  0:59 Bhaskar Chowdhury
  2021-03-26  1:57 ` Damien Le Moal
  2021-03-26 13:47 ` David Sterba
  0 siblings, 2 replies; 4+ messages in thread
From: Bhaskar Chowdhury @ 2021-03-26  0:59 UTC (permalink / raw)
  To: clm, josef, dsterba, linux-btrfs, linux-kernel; +Cc: rdunlap, Bhaskar Chowdhury


s/reponsible/responsible/

Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
 fs/btrfs/scrub.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/btrfs/scrub.c b/fs/btrfs/scrub.c
index 3d9088eab2fc..14de898967bf 100644
--- a/fs/btrfs/scrub.c
+++ b/fs/btrfs/scrub.c
@@ -2426,7 +2426,7 @@ static void drop_csum_range(struct scrub_ctx *sctx, struct btrfs_ordered_sum *su
  * the csum into @csum.
  *
  * The search source is sctx->csum_list, which is a pre-populated list
- * storing bytenr ordered csum ranges.  We're reponsible to cleanup any range
+ * storing bytenr ordered csum ranges.  We're responsible to cleanup any range
  * that is before @logical.
  *
  * Return 0 if there is no csum for the range.
--
2.26.2


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

* Re: [PATCH] btrfs: Fix a typo
  2021-03-26  0:59 [PATCH] btrfs: Fix a typo Bhaskar Chowdhury
@ 2021-03-26  1:57 ` Damien Le Moal
  2021-03-26 13:47 ` David Sterba
  1 sibling, 0 replies; 4+ messages in thread
From: Damien Le Moal @ 2021-03-26  1:57 UTC (permalink / raw)
  To: Bhaskar Chowdhury, clm, josef, dsterba, linux-btrfs, linux-kernel; +Cc: rdunlap

On 2021/03/26 10:02, Bhaskar Chowdhury wrote:
> 
> s/reponsible/responsible/
> 
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
> ---
>  fs/btrfs/scrub.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/btrfs/scrub.c b/fs/btrfs/scrub.c
> index 3d9088eab2fc..14de898967bf 100644
> --- a/fs/btrfs/scrub.c
> +++ b/fs/btrfs/scrub.c
> @@ -2426,7 +2426,7 @@ static void drop_csum_range(struct scrub_ctx *sctx, struct btrfs_ordered_sum *su
>   * the csum into @csum.
>   *
>   * The search source is sctx->csum_list, which is a pre-populated list
> - * storing bytenr ordered csum ranges.  We're reponsible to cleanup any range
> + * storing bytenr ordered csum ranges.  We're responsible to cleanup any range

If you are at fixing typos, you may as well fix the grammar at the same time :)

We're responsible to cleanup... -> We're responsible for cleaning up...

>   * that is before @logical.
>   *
>   * Return 0 if there is no csum for the range.
> --
> 2.26.2
> 
> 


-- 
Damien Le Moal
Western Digital Research

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

* Re: [PATCH] btrfs: Fix a typo
  2021-03-26  0:59 [PATCH] btrfs: Fix a typo Bhaskar Chowdhury
  2021-03-26  1:57 ` Damien Le Moal
@ 2021-03-26 13:47 ` David Sterba
  2021-03-26 20:03   ` Bhaskar Chowdhury
  1 sibling, 1 reply; 4+ messages in thread
From: David Sterba @ 2021-03-26 13:47 UTC (permalink / raw)
  To: Bhaskar Chowdhury; +Cc: clm, josef, dsterba, linux-btrfs, linux-kernel, rdunlap

On Fri, Mar 26, 2021 at 06:29:32AM +0530, Bhaskar Chowdhury wrote:
> 
> s/reponsible/responsible/

So this is exactly what I don't want to see happen - one patch per typo.
I tried to explain it in the previous patch, please either fix all typos
under fs/btrfs or don't bother.

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

* Re: [PATCH] btrfs: Fix a typo
  2021-03-26 13:47 ` David Sterba
@ 2021-03-26 20:03   ` Bhaskar Chowdhury
  0 siblings, 0 replies; 4+ messages in thread
From: Bhaskar Chowdhury @ 2021-03-26 20:03 UTC (permalink / raw)
  To: dsterba, clm, josef, dsterba, linux-btrfs, linux-kernel, rdunlap

[-- Attachment #1: Type: text/plain, Size: 895 bytes --]

On 14:47 Fri 26 Mar 2021, David Sterba wrote:
>On Fri, Mar 26, 2021 at 06:29:32AM +0530, Bhaskar Chowdhury wrote:
>>
>> s/reponsible/responsible/
>
>So this is exactly what I don't want to see happen - one patch per typo.
>I tried to explain it in the previous patch, please either fix all typos
>under fs/btrfs or don't bother.

As I mentioned in my previous correspondence to , I have my way of doing thing
. The problem is , you are getting accustomed with some specific method and
you are thinking that is the "only way" of doing the "right thing" . Please ,
think others are also think in different way too.

The goal to make it looks good and productive...don't you think so???

..and I said I do bother ,it's just not about this specific segment but about
the whole kernel.

Or is it some sort of special flow brtfs subsystem are following , which I am
not aware off??

Please do let me.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

end of thread, other threads:[~2021-03-26 20:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-26  0:59 [PATCH] btrfs: Fix a typo Bhaskar Chowdhury
2021-03-26  1:57 ` Damien Le Moal
2021-03-26 13:47 ` David Sterba
2021-03-26 20:03   ` Bhaskar Chowdhury

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.