diff options
author | Theodore Ts'o <tytso@mit.edu> | 2017-03-25 17:33:31 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2017-03-25 17:33:31 -0400 |
commit | d67d64f423147cf4fe8212658255e1160a4ef02c (patch) | |
tree | e109d658d8d7989bae03abd83bfa7a9e1ec613f3 /fs/ext4 | |
parent | dac7a4b4b1f664934e8b713f529b629f67db313c (diff) | |
download | op-kernel-dev-d67d64f423147cf4fe8212658255e1160a4ef02c.zip op-kernel-dev-d67d64f423147cf4fe8212658255e1160a4ef02c.tar.gz |
ext4: fix two spelling nits
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/inode.c | 2 | ||||
-rw-r--r-- | fs/ext4/move_extent.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index f622d4a..f303d3a 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c @@ -5400,7 +5400,7 @@ int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry, * If there is inline data in the inode, the inode will normally not * have data blocks allocated (it may have an external xattr block). * Report at least one sector for such files, so tools like tar, rsync, - * others doen't incorrectly think the file is completely sparse. + * others don't incorrectly think the file is completely sparse. */ if (unlikely(ext4_has_inline_data(inode))) stat->blocks += (stat->size + 511) >> 9; diff --git a/fs/ext4/move_extent.c b/fs/ext4/move_extent.c index 6fc14de..615bc03 100644 --- a/fs/ext4/move_extent.c +++ b/fs/ext4/move_extent.c @@ -511,7 +511,7 @@ mext_check_arguments(struct inode *orig_inode, if ((orig_start & ~(PAGE_MASK >> orig_inode->i_blkbits)) != (donor_start & ~(PAGE_MASK >> orig_inode->i_blkbits))) { ext4_debug("ext4 move extent: orig and donor's start " - "offset are not alligned [ino:orig %lu, donor %lu]\n", + "offsets are not aligned [ino:orig %lu, donor %lu]\n", orig_inode->i_ino, donor_inode->i_ino); return -EINVAL; } |