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:
81692a1
)
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
Ben Hutchings
<ben@decadent.org.uk>
Sun, 18 May 2014 13:58:03 +0000
(14:58 +0100)
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: Ben Hutchings <ben@decadent.org.uk>
fs/ext4/file.c
patch
|
blob
|
history
diff --git
a/fs/ext4/file.c
b/fs/ext4/file.c
index cb70f1812a70f5ca8452e98776cd309ad6638055..61999221fbfa8814605d2339aba9bc5ee940a242 100644
(file)
--- a/
fs/ext4/file.c
+++ b/
fs/ext4/file.c
@@
-80,7
+80,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))