Skip to content

Commit 3088e5a

Browse files
unixbhaskartytso
authored andcommitted
ext4: fix various seppling typos
Signed-off-by: Bhaskar Chowdhury <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Theodore Ts'o <[email protected]>
1 parent e1262cd commit 3088e5a

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

fs/ext4/fast_commit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
* Fast Commit Ineligibility
6767
* -------------------------
6868
* Not all operations are supported by fast commits today (e.g extended
69-
* attributes). Fast commit ineligiblity is marked by calling one of the
69+
* attributes). Fast commit ineligibility is marked by calling one of the
7070
* two following functions:
7171
*
7272
* - ext4_fc_mark_ineligible(): This makes next fast commit operation to fall

fs/ext4/indirect.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ static int ext4_ind_trunc_restart_fn(handle_t *handle, struct inode *inode,
705705

706706
/*
707707
* Truncate transactions can be complex and absolutely huge. So we need to
708-
* be able to restart the transaction at a conventient checkpoint to make
708+
* be able to restart the transaction at a convenient checkpoint to make
709709
* sure we don't overflow the journal.
710710
*
711711
* Try to extend this transaction for the purposes of truncation. If

fs/ext4/inline.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -795,7 +795,7 @@ ext4_journalled_write_inline_data(struct inode *inode,
795795
* clear the inode state safely.
796796
* 2. The inode has inline data, then we need to read the data, make it
797797
* update and dirty so that ext4_da_writepages can handle it. We don't
798-
* need to start the journal since the file's metatdata isn't changed now.
798+
* need to start the journal since the file's metadata isn't changed now.
799799
*/
800800
static int ext4_da_convert_inline_data_to_extent(struct address_space *mapping,
801801
struct inode *inode,

fs/ext4/inode.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3822,7 +3822,7 @@ static int __ext4_block_zero_page_range(handle_t *handle,
38223822
* starting from file offset 'from'. The range to be zero'd must
38233823
* be contained with in one block. If the specified range exceeds
38243824
* the end of the block it will be shortened to end of the block
3825-
* that cooresponds to 'from'
3825+
* that corresponds to 'from'
38263826
*/
38273827
static int ext4_block_zero_page_range(handle_t *handle,
38283828
struct address_space *mapping, loff_t from, loff_t length)

fs/ext4/mballoc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
* by the stream allocator, which purpose is to pack requests
6060
* as close each to other as possible to produce smooth I/O traffic
6161
* We use locality group prealloc space for stream request.
62-
* We can tune the same via /proc/fs/ext4/<parition>/stream_req
62+
* We can tune the same via /proc/fs/ext4/<partition>/stream_req
6363
*/
6464
#define MB_DEFAULT_STREAM_THRESHOLD 16 /* 64K */
6565

fs/ext4/migrate.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ static int finish_range(handle_t *handle, struct inode *inode,
3232
newext.ee_block = cpu_to_le32(lb->first_block);
3333
newext.ee_len = cpu_to_le16(lb->last_block - lb->first_block + 1);
3434
ext4_ext_store_pblock(&newext, lb->first_pblock);
35-
/* Locking only for convinience since we are operating on temp inode */
35+
/* Locking only for convenience since we are operating on temp inode */
3636
down_write(&EXT4_I(inode)->i_data_sem);
3737
path = ext4_find_extent(inode, lb->first_block, NULL, 0);
3838
if (IS_ERR(path)) {
@@ -43,8 +43,8 @@ static int finish_range(handle_t *handle, struct inode *inode,
4343

4444
/*
4545
* Calculate the credit needed to inserting this extent
46-
* Since we are doing this in loop we may accumalate extra
47-
* credit. But below we try to not accumalate too much
46+
* Since we are doing this in loop we may accumulate extra
47+
* credit. But below we try to not accumulate too much
4848
* of them by restarting the journal.
4949
*/
5050
needed = ext4_ext_calc_credits_for_single_extent(inode,

fs/ext4/namei.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,7 @@ static int ext4_htree_next_block(struct inode *dir, __u32 hash,
979979
* If the hash is 1, then continue only if the next page has a
980980
* continuation hash of any value. This is used for readdir
981981
* handling. Otherwise, check to see if the hash matches the
982-
* desired contiuation hash. If it doesn't, return since
982+
* desired continuation hash. If it doesn't, return since
983983
* there's no point to read in the successive index pages.
984984
*/
985985
bhash = dx_get_hash(p->at);

fs/ext4/xattr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1617,7 +1617,7 @@ static int ext4_xattr_set_entry(struct ext4_xattr_info *i,
16171617
* If storing the value in an external inode is an option,
16181618
* reserve space for xattr entries/names in the external
16191619
* attribute block so that a long value does not occupy the
1620-
* whole space and prevent futher entries being added.
1620+
* whole space and prevent further entries being added.
16211621
*/
16221622
if (ext4_has_feature_ea_inode(inode->i_sb) &&
16231623
new_size && is_block &&

0 commit comments

Comments
 (0)