xfs: rename the m_writeio_* fields in struct xfs_mount

Use the allocsize name to match the mount option and usage instead.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
This commit is contained in:
Christoph Hellwig
2019-10-28 08:41:44 -07:00
committed by Darrick J. Wong
parent 3cd1d18b0d
commit 5da8a07c79
6 changed files with 18 additions and 18 deletions

View File

@@ -405,7 +405,7 @@ done:
}
mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
mp->m_writeio_log = iosizelog;
mp->m_allocsize_log = iosizelog;
}
return 0;
@@ -456,7 +456,7 @@ xfs_showargs(
if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
seq_printf(m, ",allocsize=%dk",
(int)(1 << mp->m_writeio_log) >> 10);
(int)(1 << mp->m_allocsize_log) >> 10);
if (mp->m_logbufs > 0)
seq_printf(m, ",logbufs=%d", mp->m_logbufs);