2021-03-27 10:33:19

by Bhaskar Chowdhury

[permalink] [raw]
Subject: [PATCH 0/8] EXT4: Trivial typo fixes

This patch series fixed few mundane typos in the below specific files.

Bhaskar Chowdhury (8):
EXT4: migrate.c: Fixed few typos
EXT4: namei.c: Fixed a typo
EXT4: inline.c: A typo fixed
Fix a typo
EXT4: indirect.c: A trivial typo fix
EXT4: xattr.c: Mundane typo fix
EXT4: fast_commit.c: A mere typo fix
EXT4: mballoc.h: Single typo fix

fs/ext4/fast_commit.c | 2 +-
fs/ext4/indirect.c | 2 +-
fs/ext4/inline.c | 2 +-
fs/ext4/inode.c | 2 +-
fs/ext4/mballoc.h | 2 +-
fs/ext4/migrate.c | 6 +++---
fs/ext4/namei.c | 8 ++++----
fs/ext4/xattr.c | 2 +-
8 files changed, 13 insertions(+), 13 deletions(-)

--
2.26.2


2021-03-27 10:33:31

by Bhaskar Chowdhury

[permalink] [raw]
Subject: [PATCH 2/8] EXT4: namei.c: Fixed a typo

s/contiuation/continuation/

Signed-off-by: Bhaskar Chowdhury <[email protected]>
---
fs/ext4/namei.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
index 883e2a7cd4ab..3eb07053ca3c 100644
--- a/fs/ext4/namei.c
+++ b/fs/ext4/namei.c
@@ -956,7 +956,7 @@ static int ext4_htree_next_block(struct inode *dir, __u32 hash,
* If the hash is 1, then continue only if the next page has a
* continuation hash of any value. This is used for readdir
* handling. Otherwise, check to see if the hash matches the
- * desired contiuation hash. If it doesn't, return since
+ * desired continuation hash. If it doesn't, return since
* there's no point to read in the successive index pages.
*/
bhash = dx_get_hash(p->at);
--
2.26.2

2021-03-27 10:33:35

by Bhaskar Chowdhury

[permalink] [raw]
Subject: [PATCH 3/8] EXT4: inline.c: A typo fixed

s/metatdata/metadata/

Signed-off-by: Bhaskar Chowdhury <[email protected]>
---
fs/ext4/inline.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ext4/inline.c b/fs/ext4/inline.c
index b41512d1badc..fbc5086461e1 100644
--- a/fs/ext4/inline.c
+++ b/fs/ext4/inline.c
@@ -795,7 +795,7 @@ ext4_journalled_write_inline_data(struct inode *inode,
* clear the inode state safely.
* 2. The inode has inline data, then we need to read the data, make it
* update and dirty so that ext4_da_writepages can handle it. We don't
- * need to start the journal since the file's metatdata isn't changed now.
+ * need to start the journal since the file's metadata isn't changed now.
*/
static int ext4_da_convert_inline_data_to_extent(struct address_space *mapping,
struct inode *inode,
--
2.26.2

2021-03-27 10:33:41

by Bhaskar Chowdhury

[permalink] [raw]
Subject: [PATCH 4/8] Fix a typo

s/cooresponds/corresponds/

Signed-off-by: Bhaskar Chowdhury <[email protected]>
---
fs/ext4/inode.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c
index 0948a43f1b3d..470d310b9b77 100644
--- a/fs/ext4/inode.c
+++ b/fs/ext4/inode.c
@@ -3824,7 +3824,7 @@ static int __ext4_block_zero_page_range(handle_t *handle,
* starting from file offset 'from'. The range to be zero'd must
* be contained with in one block. If the specified range exceeds
* the end of the block it will be shortened to end of the block
- * that cooresponds to 'from'
+ * that corresponds to 'from'
*/
static int ext4_block_zero_page_range(handle_t *handle,
struct address_space *mapping, loff_t from, loff_t length)
--
2.26.2

2021-03-28 21:05:35

by Bhaskar Chowdhury

[permalink] [raw]
Subject: Re: [PATCH 0/8] EXT4: Trivial typo fixes

On 01:07 Mon 29 Mar 2021, Ritesh Harjani wrote:
>On 21/03/27 04:00PM, Bhaskar Chowdhury wrote:
>> This patch series fixed few mundane typos in the below specific files.
>>
>> Bhaskar Chowdhury (8):
>> EXT4: migrate.c: Fixed few typos
>> EXT4: namei.c: Fixed a typo
>> EXT4: inline.c: A typo fixed
>> Fix a typo
>> EXT4: indirect.c: A trivial typo fix
>> EXT4: xattr.c: Mundane typo fix
>> EXT4: fast_commit.c: A mere typo fix
>> EXT4: mballoc.h: Single typo fix
>>
>> fs/ext4/fast_commit.c | 2 +-
>> fs/ext4/indirect.c | 2 +-
>> fs/ext4/inline.c | 2 +-
>> fs/ext4/inode.c | 2 +-
>> fs/ext4/mballoc.h | 2 +-
>> fs/ext4/migrate.c | 6 +++---
>> fs/ext4/namei.c | 8 ++++----
>> fs/ext4/xattr.c | 2 +-
>> 8 files changed, 13 insertions(+), 13 deletions(-)
>
>Thanks,
>since these are trivial typo fixes, why not just 1 patch for fs/ext4/
>IMO, that way it is easier for sender, reviewer and maintainer.
>

I have got the other vibes too ..hence the decision to send it like this way..

~Bhaskar
>-ritesh


Attachments:
(No filename) (1.07 kB)
signature.asc (499.00 B)
Download all attachments

2021-04-10 03:20:45

by Theodore Ts'o

[permalink] [raw]
Subject: Re: [PATCH 0/8] EXT4: Trivial typo fixes

On Sat, Mar 27, 2021 at 04:00:04PM +0530, Bhaskar Chowdhury wrote:
> This patch series fixed few mundane typos in the below specific files.
>
> Bhaskar Chowdhury (8):
> EXT4: migrate.c: Fixed few typos
> EXT4: namei.c: Fixed a typo
> EXT4: inline.c: A typo fixed
> Fix a typo
> EXT4: indirect.c: A trivial typo fix
> EXT4: xattr.c: Mundane typo fix
> EXT4: fast_commit.c: A mere typo fix
> EXT4: mballoc.h: Single typo fix
>
> fs/ext4/fast_commit.c | 2 +-
> fs/ext4/indirect.c | 2 +-
> fs/ext4/inline.c | 2 +-
> fs/ext4/inode.c | 2 +-
> fs/ext4/mballoc.h | 2 +-
> fs/ext4/migrate.c | 6 +++---
> fs/ext4/namei.c | 8 ++++----
> fs/ext4/xattr.c | 2 +-
> 8 files changed, 13 insertions(+), 13 deletions(-)

I've applied this patch series folded together into a single patch.

- Ted