kernel-janitors.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fs/ntfs3: Fix spelling mistake "whitout" -> "without"
@ 2021-08-16  8:14 Colin King
  2021-08-16  9:21 ` Kari Argillander
  0 siblings, 1 reply; 4+ messages in thread
From: Colin King @ 2021-08-16  8:14 UTC (permalink / raw)
  To: Konstantin Komarov, ntfs3; +Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

There is a spelling mistake in a ntfs_err error message. Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 fs/ntfs3/run.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ntfs3/run.c b/fs/ntfs3/run.c
index 5cdf6efe67e0..f9c362ac672e 100644
--- a/fs/ntfs3/run.c
+++ b/fs/ntfs3/run.c
@@ -949,7 +949,7 @@ int run_unpack(struct runs_tree *run, struct ntfs_sb_info *sbi, CLST ino,
 		if (next_vcn > 0x100000000ull || (lcn + len) > 0x100000000ull) {
 			ntfs_err(
 				sbi->sb,
-				"This driver is compiled whitout CONFIG_NTFS3_64BIT_CLUSTER (like windows driver).\n"
+				"This driver is compiled without CONFIG_NTFS3_64BIT_CLUSTER (like windows driver).\n"
 				"Volume contains 64 bits run: vcn %llx, lcn %llx, len %llx.\n"
 				"Activate CONFIG_NTFS3_64BIT_CLUSTER to process this case",
 				vcn64, lcn, len);
-- 
2.32.0


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

* Re: [PATCH] fs/ntfs3: Fix spelling mistake "whitout" -> "without"
  2021-08-16  8:14 [PATCH] fs/ntfs3: Fix spelling mistake "whitout" -> "without" Colin King
@ 2021-08-16  9:21 ` Kari Argillander
  2021-08-16  9:41   ` Colin Ian King
  0 siblings, 1 reply; 4+ messages in thread
From: Kari Argillander @ 2021-08-16  9:21 UTC (permalink / raw)
  To: Colin King; +Cc: Konstantin Komarov, ntfs3, kernel-janitors, linux-kernel

On Mon, Aug 16, 2021 at 09:14:01AM +0100, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There is a spelling mistake in a ntfs_err error message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  fs/ntfs3/run.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/ntfs3/run.c b/fs/ntfs3/run.c
> index 5cdf6efe67e0..f9c362ac672e 100644
> --- a/fs/ntfs3/run.c
> +++ b/fs/ntfs3/run.c
> @@ -949,7 +949,7 @@ int run_unpack(struct runs_tree *run, struct ntfs_sb_info *sbi, CLST ino,
>  		if (next_vcn > 0x100000000ull || (lcn + len) > 0x100000000ull) {
>  			ntfs_err(
>  				sbi->sb,
> -				"This driver is compiled whitout CONFIG_NTFS3_64BIT_CLUSTER (like windows driver).\n"
> +				"This driver is compiled without CONFIG_NTFS3_64BIT_CLUSTER (like windows driver).\n"
>  				"Volume contains 64 bits run: vcn %llx, lcn %llx, len %llx.\n"
>  				"Activate CONFIG_NTFS3_64BIT_CLUSTER to process this case",
>  				vcn64, lcn, len);

There is still other spelling typos what codespell catch. Why you just
fix this one?

codespell -L iput,te,fo,ane,filp fs/ntfs3
	fs/ntfs3/debug.h:6: debuging ==> debugging
	fs/ntfs3/run.c:952: whitout ==> without, whiteout
	fs/ntfs3/super.c:127: formater ==> formatter
	fs/ntfs3/super.c:1211: formater ==> formatter
	fs/ntfs3/upcase.c:30: Straigth ==> Straight
	fs/ntfs3/lib/decompress_common.c:295: distingush ==> distinguish

If just this gets in then:
Reviewed-by Kari Argillander <kari.argillander@gmail.com>

If you send v2 I will tag that again.


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

* Re: [PATCH] fs/ntfs3: Fix spelling mistake "whitout" -> "without"
  2021-08-16  9:21 ` Kari Argillander
@ 2021-08-16  9:41   ` Colin Ian King
  2021-08-16  9:49     ` Kari Argillander
  0 siblings, 1 reply; 4+ messages in thread
From: Colin Ian King @ 2021-08-16  9:41 UTC (permalink / raw)
  To: Kari Argillander; +Cc: Konstantin Komarov, ntfs3, kernel-janitors, linux-kernel

On 16/08/2021 10:21, Kari Argillander wrote:
> On Mon, Aug 16, 2021 at 09:14:01AM +0100, Colin King wrote:
>> From: Colin Ian King <colin.king@canonical.com>
>>
>> There is a spelling mistake in a ntfs_err error message. Fix it.
>>
>> Signed-off-by: Colin Ian King <colin.king@canonical.com>
>> ---
>>  fs/ntfs3/run.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/fs/ntfs3/run.c b/fs/ntfs3/run.c
>> index 5cdf6efe67e0..f9c362ac672e 100644
>> --- a/fs/ntfs3/run.c
>> +++ b/fs/ntfs3/run.c
>> @@ -949,7 +949,7 @@ int run_unpack(struct runs_tree *run, struct ntfs_sb_info *sbi, CLST ino,
>>  		if (next_vcn > 0x100000000ull || (lcn + len) > 0x100000000ull) {
>>  			ntfs_err(
>>  				sbi->sb,
>> -				"This driver is compiled whitout CONFIG_NTFS3_64BIT_CLUSTER (like windows driver).\n"
>> +				"This driver is compiled without CONFIG_NTFS3_64BIT_CLUSTER (like windows driver).\n"
>>  				"Volume contains 64 bits run: vcn %llx, lcn %llx, len %llx.\n"
>>  				"Activate CONFIG_NTFS3_64BIT_CLUSTER to process this case",
>>  				vcn64, lcn, len);
> 
> There is still other spelling typos what codespell catch. Why you just
> fix this one?

Normally there are so many spelling mistakes in comments in the kernel I
ignore these, as life it too short. I'm trying to first fix the
user-facing text messages in errors and warnings etc..

> 
> codespell -L iput,te,fo,ane,filp fs/ntfs3
> 	fs/ntfs3/debug.h:6: debuging ==> debugging
> 	fs/ntfs3/run.c:952: whitout ==> without, whiteout
> 	fs/ntfs3/super.c:127: formater ==> formatter
> 	fs/ntfs3/super.c:1211: formater ==> formatter
> 	fs/ntfs3/upcase.c:30: Straigth ==> Straight
> 	fs/ntfs3/lib/decompress_common.c:295: distingush ==> distinguish
> 

Yep, I'll fix these later in a V2.

> If just this gets in then:
> Reviewed-by Kari Argillander <kari.argillander@gmail.com>
> 
> If you send v2 I will tag that again.
> 


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

* Re: [PATCH] fs/ntfs3: Fix spelling mistake "whitout" -> "without"
  2021-08-16  9:41   ` Colin Ian King
@ 2021-08-16  9:49     ` Kari Argillander
  0 siblings, 0 replies; 4+ messages in thread
From: Kari Argillander @ 2021-08-16  9:49 UTC (permalink / raw)
  To: Colin Ian King; +Cc: Konstantin Komarov, ntfs3, kernel-janitors, linux-kernel

On Mon, Aug 16, 2021 at 10:41:07AM +0100, Colin Ian King wrote:
> On 16/08/2021 10:21, Kari Argillander wrote:
> > On Mon, Aug 16, 2021 at 09:14:01AM +0100, Colin King wrote:
> >> From: Colin Ian King <colin.king@canonical.com>
> >>
> >> There is a spelling mistake in a ntfs_err error message. Fix it.
> >>
> >> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> >> ---
> >>  fs/ntfs3/run.c | 2 +-
> >>  1 file changed, 1 insertion(+), 1 deletion(-)
> >>
> >> diff --git a/fs/ntfs3/run.c b/fs/ntfs3/run.c
> >> index 5cdf6efe67e0..f9c362ac672e 100644
> >> --- a/fs/ntfs3/run.c
> >> +++ b/fs/ntfs3/run.c
> >> @@ -949,7 +949,7 @@ int run_unpack(struct runs_tree *run, struct ntfs_sb_info *sbi, CLST ino,
> >>  		if (next_vcn > 0x100000000ull || (lcn + len) > 0x100000000ull) {
> >>  			ntfs_err(
> >>  				sbi->sb,
> >> -				"This driver is compiled whitout CONFIG_NTFS3_64BIT_CLUSTER (like windows driver).\n"
> >> +				"This driver is compiled without CONFIG_NTFS3_64BIT_CLUSTER (like windows driver).\n"
> >>  				"Volume contains 64 bits run: vcn %llx, lcn %llx, len %llx.\n"
> >>  				"Activate CONFIG_NTFS3_64BIT_CLUSTER to process this case",
> >>  				vcn64, lcn, len);
> > 
> > There is still other spelling typos what codespell catch. Why you just
> > fix this one?
> 
> Normally there are so many spelling mistakes in comments in the kernel I
> ignore these, as life it too short. I'm trying to first fix the
> user-facing text messages in errors and warnings etc..

Good point.

> > codespell -L iput,te,fo,ane,filp fs/ntfs3
> > 	fs/ntfs3/debug.h:6: debuging ==> debugging
> > 	fs/ntfs3/run.c:952: whitout ==> without, whiteout
> > 	fs/ntfs3/super.c:127: formater ==> formatter
> > 	fs/ntfs3/super.c:1211: formater ==> formatter
> > 	fs/ntfs3/upcase.c:30: Straigth ==> Straight
> > 	fs/ntfs3/lib/decompress_common.c:295: distingush ==> distinguish
> > 
> 
> Yep, I'll fix these later in a V2.

Thanks :)

> > If just this gets in then:
> > Reviewed-by Kari Argillander <kari.argillander@gmail.com>
> > 
> > If you send v2 I will tag that again.


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

end of thread, other threads:[~2021-08-16  9:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-16  8:14 [PATCH] fs/ntfs3: Fix spelling mistake "whitout" -> "without" Colin King
2021-08-16  9:21 ` Kari Argillander
2021-08-16  9:41   ` Colin Ian King
2021-08-16  9:49     ` Kari Argillander

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