diff options
author | David Chinner <dgc@sgi.com> | 2008-04-10 12:19:40 +1000 |
---|---|---|
committer | Lachlan McIlroy <lachlan@redback.melbourne.sgi.com> | 2008-04-18 11:51:46 +1000 |
commit | 3c85c36cc2e87018d38fcd033f41bbdf1360c07a (patch) | |
tree | c0beaf03831f981a6ea22aca84ccb4df2270ec54 /fs/xfs/xfs_vfsops.c | |
parent | b6ddc4e6fed9c6f4adb273c8b36e1731f90ec17e (diff) | |
download | linux-3.10-3c85c36cc2e87018d38fcd033f41bbdf1360c07a.tar.gz linux-3.10-3c85c36cc2e87018d38fcd033f41bbdf1360c07a.tar.bz2 linux-3.10-3c85c36cc2e87018d38fcd033f41bbdf1360c07a.zip |
[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 ea94593b531..6351efb569c 100644 --- a/fs/xfs/xfs_vfsops.c +++ b/fs/xfs/xfs_vfsops.c @@ -637,7 +637,7 @@ out: return XFS_ERROR(error); } -STATIC int +STATIC void xfs_quiesce_fs( xfs_mount_t *mp) { @@ -661,8 +661,6 @@ xfs_quiesce_fs( count++; } } while (count < 2); - - return 0; } /* |