fs/reiserfs: atomically read inode size
authorFabian Frederick <[email protected]>
Mon, 27 Feb 2017 22:27:22 +0000 (14:27 -0800)
committerLinus Torvalds <[email protected]>
Tue, 28 Feb 2017 02:43:45 +0000 (18:43 -0800)
See i_size_read() comments in include/linux/fs.h

Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Fabian Frederick <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
fs/reiserfs/super.c

index e314cb30a181e1017f7df769f7faf1bef89bdef1..feabcde0290d27103a11813682091abd1a191661 100644 (file)
@@ -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);