diff options
author | David Chinner <dgc@sgi.com> | 2008-04-09 22:19:40 -0400 |
---|---|---|
committer | Lachlan McIlroy <lachlan@redback.melbourne.sgi.com> | 2008-04-17 21:51:46 -0400 |
commit | 3c85c36cc2e87018d38fcd033f41bbdf1360c07a (patch) | |
tree | c0beaf03831f981a6ea22aca84ccb4df2270ec54 /fs/xfs/xfs_vfsops.c | |
parent | b6ddc4e6fed9c6f4adb273c8b36e1731f90ec17e (diff) |
[XFS] xfs_quiesce_fs() never returns an error. Mark it void.
SGI-PV: 980084
SGI-Modid: xfs-linux-melb:xfs-kern:30780a
Signed-off-by: David Chinner <dgc@sgi.com>
Signed-off-by: Niv Sardi <xaiki@sgi.com>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
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 ea94593b5313..6351efb569c7 100644 --- a/fs/xfs/xfs_vfsops.c +++ b/fs/xfs/xfs_vfsops.c | |||
@@ -637,7 +637,7 @@ out: | |||
637 | return XFS_ERROR(error); | 637 | return XFS_ERROR(error); |
638 | } | 638 | } |
639 | 639 | ||
640 | STATIC int | 640 | STATIC void |
641 | xfs_quiesce_fs( | 641 | xfs_quiesce_fs( |
642 | xfs_mount_t *mp) | 642 | xfs_mount_t *mp) |
643 | { | 643 | { |
@@ -661,8 +661,6 @@ xfs_quiesce_fs( | |||
661 | count++; | 661 | count++; |
662 | } | 662 | } |
663 | } while (count < 2); | 663 | } while (count < 2); |
664 | |||
665 | return 0; | ||
666 | } | 664 | } |
667 | 665 | ||
668 | /* | 666 | /* |