projects
/
sdk
/
emulator
/
emulator-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0790b31
)
ext4: use i_size_read in ext4_unaligned_aio()
author
Theodore Ts'o
<tytso@mit.edu>
Sat, 12 Apr 2014 16:45:25 +0000
(12:45 -0400)
committer
Theodore Ts'o
<tytso@mit.edu>
Sat, 12 Apr 2014 16:45:25 +0000
(12:45 -0400)
We haven't taken i_mutex yet, so we need to use i_size_read().
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Cc: stable@vger.kernel.org
fs/ext4/file.c
patch
|
blob
|
history
diff --git
a/fs/ext4/file.c
b/fs/ext4/file.c
index 6db7f7db7777dffc4e4e0d959bf295dc0a03a6d8..bc765591101a9dfdcf3b541f8d4e8f333ab854be 100644
(file)
--- a/
fs/ext4/file.c
+++ b/
fs/ext4/file.c
@@
-82,7
+82,7
@@
ext4_unaligned_aio(struct inode *inode, const struct iovec *iov,
size_t count = iov_length(iov, nr_segs);
loff_t final_size = pos + count;
- if (pos >= i
node->i_size
)
+ if (pos >= i
_size_read(inode)
)
return 0;
if ((pos & blockmask) || (final_size & blockmask))