diff options
author | Christoph Hellwig <hch@infradead.org> | 2008-08-13 10:49:32 +0400 |
---|---|---|
committer | Lachlan McIlroy <lachlan@redback.melbourne.sgi.com> | 2008-08-13 10:49:32 +0400 |
commit | 4249023a5d14f28d4e68ba15d24d25c0e5be71a6 (patch) | |
tree | 30d3d7992dc05879835bf96a5d7a6ab437d5a54b /fs/xfs/linux-2.6 | |
parent | 77508ec8e6ed72c9ba8ca74248a7aabd664e3f57 (diff) | |
download | linux-4249023a5d14f28d4e68ba15d24d25c0e5be71a6.tar.xz |
[XFS] cleanup xfs_mountfs
Remove all the useless flags and code keyed off it in xfs_mountfs.
SGI-PV: 981498
SGI-Modid: xfs-linux-melb:xfs-kern:31831a
Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c index 9ccbb1ca277b..8fdb79046a60 100644 --- a/fs/xfs/linux-2.6/xfs_super.c +++ b/fs/xfs/linux-2.6/xfs_super.c @@ -1722,7 +1722,7 @@ xfs_fs_fill_super( if (error) goto out_free_sb; - error = xfs_mountfs(mp, flags); + error = xfs_mountfs(mp); if (error) goto out_filestream_unmount; |