projects
/
unionfs-2.6.39.y.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
afeeb03
)
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
Jiri Slaby
<jslaby@suse.cz>
Thu, 15 May 2014 07:55:44 +0000
(09:55 +0200)
commit
6e6358fc3c3c862bfe9a5bc029d3f8ce43dc9765
upstream.
We haven't taken i_mutex yet, so we need to use i_size_read().
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
fs/ext4/file.c
patch
|
blob
|
history
diff --git
a/fs/ext4/file.c
b/fs/ext4/file.c
index 3da21945ff1fff3e16b8b70b332a0a6ee330c93e..1b890101397ba4a70d9bec7a4dcff42b503b1616 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))