diff options
author | Christoph Hellwig <hch@lst.de> | 2019-10-28 08:41:46 -0700 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2019-10-29 09:50:13 -0700 |
commit | 7c6b94b1b526a8b18237b80a1ac3232715eab7a5 (patch) | |
tree | e7522b7732e377d64fefb3579e3e163db8023ef8 /fs/xfs/xfs_iops.c | |
parent | 3274d00801007cccab8aec7f2ac50f6bc10d1692 (diff) | |
download | linux-7c6b94b1b526a8b18237b80a1ac3232715eab7a5.tar.gz linux-7c6b94b1b526a8b18237b80a1ac3232715eab7a5.tar.bz2 linux-7c6b94b1b526a8b18237b80a1ac3232715eab7a5.zip |
xfs: reverse the polarity of XFS_MOUNT_COMPAT_IOSIZE
Replace XFS_MOUNT_COMPAT_IOSIZE with an inverted XFS_MOUNT_LARGEIO flag
that makes the usage more clear.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/xfs_iops.c')
-rw-r--r-- | fs/xfs/xfs_iops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_iops.c b/fs/xfs/xfs_iops.c index 9e1f89cdcc82..18e45e3a3f9f 100644 --- a/fs/xfs/xfs_iops.c +++ b/fs/xfs/xfs_iops.c @@ -510,7 +510,7 @@ xfs_stat_blksize( * default buffered I/O size, return that, otherwise return the compat * default. */ - if (!(mp->m_flags & XFS_MOUNT_COMPAT_IOSIZE)) { + if (mp->m_flags & XFS_MOUNT_LARGEIO) { if (mp->m_swidth) return mp->m_swidth << mp->m_sb.sb_blocklog; if (mp->m_flags & XFS_MOUNT_ALLOCSIZE) |