diff options
author | Dave Chinner <dchinner@redhat.com> | 2011-01-27 13:23:28 +1100 |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2011-01-28 09:05:36 -0600 |
commit | c6f990d1ff8e4e53b12f4175eb7d7ea710c3ca73 (patch) | |
tree | 109e8d588a9a04ef52b97e751450fe0fffa88a23 /fs/xfs/xfs_log.h | |
parent | 5315837daee7ed76c31ef643915f7d76ef8c1aa3 (diff) | |
download | linux-c6f990d1ff8e4e53b12f4175eb7d7ea710c3ca73.tar.bz2 |
xfs: handle CIl transaction commit failures correctly
Failure to commit a transaction into the CIL is not handled
correctly. This currently can only happen when racing with a
shutdown and requires an explicit shutdown check, so it rare and can
be avoided. Remove the shutdown check and make the CIL commit a void
function to indicate it will always succeed, thereby removing the
incorrectly handled failure case.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_log.h')
-rw-r--r-- | fs/xfs/xfs_log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_log.h b/fs/xfs/xfs_log.h index 916eb7db14d9..3bd3291ef8d2 100644 --- a/fs/xfs/xfs_log.h +++ b/fs/xfs/xfs_log.h @@ -191,7 +191,7 @@ void xfs_log_ticket_put(struct xlog_ticket *ticket); xlog_tid_t xfs_log_get_trans_ident(struct xfs_trans *tp); -int xfs_log_commit_cil(struct xfs_mount *mp, struct xfs_trans *tp, +void xfs_log_commit_cil(struct xfs_mount *mp, struct xfs_trans *tp, struct xfs_log_vec *log_vector, xfs_lsn_t *commit_lsn, int flags); bool xfs_log_item_in_current_chkpt(struct xfs_log_item *lip); |