diff options
Diffstat (limited to 'fs/xfs/xfs_vfsops.c')
-rw-r--r-- | fs/xfs/xfs_vfsops.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/xfs/xfs_vfsops.c b/fs/xfs/xfs_vfsops.c index 0f237f9f0c3a..57be2f7b034c 100644 --- a/fs/xfs/xfs_vfsops.c +++ b/fs/xfs/xfs_vfsops.c | |||
@@ -449,8 +449,6 @@ xfs_mount( | |||
449 | if (error) | 449 | if (error) |
450 | return error; | 450 | return error; |
451 | 451 | ||
452 | mp->m_io_ops = xfs_iocore_xfs; | ||
453 | |||
454 | if (args->flags & XFSMNT_QUIET) | 452 | if (args->flags & XFSMNT_QUIET) |
455 | flags |= XFS_MFSI_QUIET; | 453 | flags |= XFS_MFSI_QUIET; |
456 | 454 | ||
@@ -544,7 +542,7 @@ xfs_mount( | |||
544 | if ((error = xfs_filestream_mount(mp))) | 542 | if ((error = xfs_filestream_mount(mp))) |
545 | goto error2; | 543 | goto error2; |
546 | 544 | ||
547 | error = XFS_IOINIT(mp, args, flags); | 545 | error = xfs_mountfs(mp, flags); |
548 | if (error) | 546 | if (error) |
549 | goto error2; | 547 | goto error2; |
550 | 548 | ||