diff options
author | Christoph Hellwig <hch@infradead.org> | 2008-08-13 02:49:57 -0400 |
---|---|---|
committer | Lachlan McIlroy <lachlan@redback.melbourne.sgi.com> | 2008-08-13 02:49:57 -0400 |
commit | 41b5c2e77a0221cf07ac127afa122add67ac5418 (patch) | |
tree | 7ba8db919624d68c5db2b2dd022d4742cc9ea104 /fs/xfs/xfs_mount.c | |
parent | 4249023a5d14f28d4e68ba15d24d25c0e5be71a6 (diff) |
[XFS] xfs_unmountfs should return void
xfs_unmounts can't and shouldn't return errors so declare it as returning
void.
SGI-PV: 981498
SGI-Modid: xfs-linux-melb:xfs-kern:31833a
Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_mount.c')
-rw-r--r-- | fs/xfs/xfs_mount.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c index 06f0a73bc93f..7f5027266ea0 100644 --- a/fs/xfs/xfs_mount.c +++ b/fs/xfs/xfs_mount.c | |||
@@ -1229,16 +1229,15 @@ xfs_mountfs( | |||
1229 | } | 1229 | } |
1230 | 1230 | ||
1231 | /* | 1231 | /* |
1232 | * xfs_unmountfs | ||
1233 | * | ||
1234 | * This flushes out the inodes,dquots and the superblock, unmounts the | 1232 | * This flushes out the inodes,dquots and the superblock, unmounts the |
1235 | * log and makes sure that incore structures are freed. | 1233 | * log and makes sure that incore structures are freed. |
1236 | */ | 1234 | */ |
1237 | int | 1235 | void |
1238 | xfs_unmountfs(xfs_mount_t *mp) | 1236 | xfs_unmountfs( |
1237 | struct xfs_mount *mp) | ||
1239 | { | 1238 | { |
1240 | __uint64_t resblks; | 1239 | __uint64_t resblks; |
1241 | int error = 0; | 1240 | int error; |
1242 | 1241 | ||
1243 | IRELE(mp->m_rootip); | 1242 | IRELE(mp->m_rootip); |
1244 | 1243 | ||
@@ -1311,7 +1310,6 @@ xfs_unmountfs(xfs_mount_t *mp) | |||
1311 | xfs_errortag_clearall(mp, 0); | 1310 | xfs_errortag_clearall(mp, 0); |
1312 | #endif | 1311 | #endif |
1313 | xfs_mount_free(mp); | 1312 | xfs_mount_free(mp); |
1314 | return 0; | ||
1315 | } | 1313 | } |
1316 | 1314 | ||
1317 | STATIC void | 1315 | STATIC void |