diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-03-26 10:29:21 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-03-26 10:29:21 -0700 |
commit | 1c23de630886e423ab298bce32a71486577bda5d (patch) | |
tree | 13fd26c68541a6a17c47f2a08f8b2bbc9508fb2a /fs/ext4/inode.c | |
parent | a643f9054c21f4fae0fbb4add663462fea7a47f0 (diff) | |
parent | d67d64f423147cf4fe8212658255e1160a4ef02c (diff) | |
download | linux-1c23de630886e423ab298bce32a71486577bda5d.tar.gz linux-1c23de630886e423ab298bce32a71486577bda5d.tar.bz2 linux-1c23de630886e423ab298bce32a71486577bda5d.zip |
Merge tag 'ext4_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4
Pull ext4 fixes from Ted Ts'o:
"Fix a memory leak on an error path, and two races when modifying
inodes relating to the inline_data and metadata checksum features"
* tag 'ext4_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4:
ext4: fix two spelling nits
ext4: lock the xattr block before checksuming it
jbd2: don't leak memory if setting up journal fails
ext4: mark inode dirty after converting inline directory
Diffstat (limited to 'fs/ext4/inode.c')
-rw-r--r-- | fs/ext4/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index 7385e6a6b6cb..4247d8d25687 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c @@ -5400,7 +5400,7 @@ int ext4_getattr(const struct path *path, struct kstat *stat, * 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; |