Skip to content

Commit

Permalink
[XFS] xfs_quiesce_fs() never returns an error. Mark it void.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
David Chinner authored and Lachlan McIlroy committed Apr 18, 2008
1 parent b6ddc4e commit 3c85c36
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions fs/xfs/xfs_vfsops.c
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ xfs_unmount(
return XFS_ERROR(error);
}

STATIC int
STATIC void
xfs_quiesce_fs(
xfs_mount_t *mp)
{
Expand All @@ -661,8 +661,6 @@ xfs_quiesce_fs(
count++;
}
} while (count < 2);

return 0;
}

/*
Expand Down

0 comments on commit 3c85c36

Please sign in to comment.