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:

committed by
Darrick J. Wong

parent
3cd1d18b0d
commit
5da8a07c79
@@ -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);
|
||||
|
Reference in New Issue
Block a user