mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
fs/reiserfs: atomically read inode size
See i_size_read() comments in include/linux/fs.h Link: http://lkml.kernel.org/r/20170123174701.30394-1-fabf@skynet.be Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
a3f2235012
commit
b899ba7d8c
@ -1166,7 +1166,7 @@ static int reiserfs_parse_options(struct super_block *s,
|
||||
if (!strcmp(arg, "auto")) {
|
||||
/* From JFS code, to auto-get the size. */
|
||||
*blocks =
|
||||
s->s_bdev->bd_inode->i_size >> s->
|
||||
i_size_read(s->s_bdev->bd_inode) >> s->
|
||||
s_blocksize_bits;
|
||||
} else {
|
||||
*blocks = simple_strtoul(arg, &p, 0);
|
||||
|
Loading…
Reference in New Issue
Block a user