Skip to content

Commit

Permalink
jfs: atomically read inode size
Browse files Browse the repository at this point in the history
See i_size_read() comments in include/linux/fs.h

Signed-off-by: Fabian Frederick <[email protected]>
Signed-off-by: Dave Kleikamp <[email protected]>
  • Loading branch information
Fabian Frederick authored and kleikamp committed Feb 9, 2017
1 parent d966564 commit 684666e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions fs/jfs/resize.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ int jfs_extendfs(struct super_block *sb, s64 newLVSize, int newLogSize)
goto out;
}

VolumeSize = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
VolumeSize = i_size_read(sb->s_bdev->bd_inode) >> sb->s_blocksize_bits;

if (VolumeSize) {
if (newLVSize > VolumeSize) {
Expand Down Expand Up @@ -211,7 +211,7 @@ int jfs_extendfs(struct super_block *sb, s64 newLVSize, int newLogSize)
txQuiesce(sb);

/* Reset size of direct inode */
sbi->direct_inode->i_size = sb->s_bdev->bd_inode->i_size;
sbi->direct_inode->i_size = i_size_read(sb->s_bdev->bd_inode);

if (sbi->mntflag & JFS_INLINELOG) {
/*
Expand Down
4 changes: 2 additions & 2 deletions fs/jfs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ static int parse_options(char *options, struct super_block *sb, s64 *newLVSize,
}
case Opt_resize_nosize:
{
*newLVSize = sb->s_bdev->bd_inode->i_size >>
*newLVSize = i_size_read(sb->s_bdev->bd_inode) >>
sb->s_blocksize_bits;
if (*newLVSize == 0)
pr_err("JFS: Cannot determine volume size\n");
Expand Down Expand Up @@ -549,7 +549,7 @@ static int jfs_fill_super(struct super_block *sb, void *data, int silent)
goto out_unload;
}
inode->i_ino = 0;
inode->i_size = sb->s_bdev->bd_inode->i_size;
inode->i_size = i_size_read(sb->s_bdev->bd_inode);
inode->i_mapping->a_ops = &jfs_metapage_aops;
hlist_add_fake(&inode->i_hash);
mapping_set_gfp_mask(inode->i_mapping, GFP_NOFS);
Expand Down

0 comments on commit 684666e

Please sign in to comment.