diff options
author | Nathan Scott <nathans@sgi.com> | 2005-11-01 23:00:48 -0500 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2005-11-01 23:00:48 -0500 |
commit | fa7e7d71e05f12921fefdc23386183578d3ed8c7 (patch) | |
tree | d6af37553544dc3d26c8d239b4d1a3e78583a552 /fs/xfs | |
parent | da087bad810b48dd889a504e6af0a582ba18df0d (diff) |
[XFS] Show additional mount options in /proc/mounts, fix up some debug
code.
SGI-PV: 941645
SGI-Modid: xfs-linux:xfs-kern:23926a
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/xfs_vfsops.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/xfs/xfs_vfsops.c b/fs/xfs/xfs_vfsops.c index 4b8b54dfe876..d3c99ac64afc 100644 --- a/fs/xfs/xfs_vfsops.c +++ b/fs/xfs/xfs_vfsops.c | |||
@@ -1883,6 +1883,7 @@ xfs_showargs( | |||
1883 | { XFS_MOUNT_OSYNCISOSYNC, "," MNTOPT_OSYNCISOSYNC }, | 1883 | { XFS_MOUNT_OSYNCISOSYNC, "," MNTOPT_OSYNCISOSYNC }, |
1884 | { XFS_MOUNT_BARRIER, "," MNTOPT_BARRIER }, | 1884 | { XFS_MOUNT_BARRIER, "," MNTOPT_BARRIER }, |
1885 | { XFS_MOUNT_IDELETE, "," MNTOPT_NOIKEEP }, | 1885 | { XFS_MOUNT_IDELETE, "," MNTOPT_NOIKEEP }, |
1886 | { XFS_MOUNT_COMPAT_ATTR, "," MNTOPT_NOATTR2 }, | ||
1886 | { 0, NULL } | 1887 | { 0, NULL } |
1887 | }; | 1888 | }; |
1888 | struct proc_xfs_info *xfs_infop; | 1889 | struct proc_xfs_info *xfs_infop; |
@@ -1923,6 +1924,9 @@ xfs_showargs( | |||
1923 | if (!(mp->m_flags & XFS_MOUNT_32BITINOOPT)) | 1924 | if (!(mp->m_flags & XFS_MOUNT_32BITINOOPT)) |
1924 | seq_printf(m, "," MNTOPT_64BITINODE); | 1925 | seq_printf(m, "," MNTOPT_64BITINODE); |
1925 | 1926 | ||
1927 | if (!(mp->m_flags & XFS_MOUNT_COMPAT_IOSIZE)) | ||
1928 | seq_printf(m, "," MNTOPT_LARGEIO); | ||
1929 | |||
1926 | if (vfsp->vfs_flag & VFS_GRPID) | 1930 | if (vfsp->vfs_flag & VFS_GRPID) |
1927 | seq_printf(m, "," MNTOPT_GRPID); | 1931 | seq_printf(m, "," MNTOPT_GRPID); |
1928 | 1932 | ||