diff options
author | Christoph Hellwig <hch@lst.de> | 2009-03-16 03:19:29 -0400 |
---|---|---|
committer | Christoph Hellwig <hch@brick.lst.de> | 2009-03-16 03:19:29 -0400 |
commit | 21b699c89545ed94d9a1c6fcc8ac704784f68f40 (patch) | |
tree | 5a7f9de57f445859f0b30c5f6ee5816d544224b1 /fs/xfs/xfs_log.c | |
parent | da5309cd28ffda6ed8a4147bd14f1e4fbbd6503d (diff) |
xfs: cleanup log unmount handling
Kill the current xfs_log_unmount wrapper and opencode the two function
calls in the only caller. Rename the current xfs_log_unmount_dealloc to
xfs_log_unmount as it undoes xfs_log_mount and the new name makes that
more clear.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_log.c')
-rw-r--r-- | fs/xfs/xfs_log.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/fs/xfs/xfs_log.c b/fs/xfs/xfs_log.c index c8f300897728..25faa3fe83d2 100644 --- a/fs/xfs/xfs_log.c +++ b/fs/xfs/xfs_log.c | |||
@@ -635,19 +635,6 @@ xfs_log_mount_finish(xfs_mount_t *mp) | |||
635 | } | 635 | } |
636 | 636 | ||
637 | /* | 637 | /* |
638 | * Unmount processing for the log. | ||
639 | */ | ||
640 | int | ||
641 | xfs_log_unmount(xfs_mount_t *mp) | ||
642 | { | ||
643 | int error; | ||
644 | |||
645 | error = xfs_log_unmount_write(mp); | ||
646 | xfs_log_unmount_dealloc(mp); | ||
647 | return error; | ||
648 | } | ||
649 | |||
650 | /* | ||
651 | * Final log writes as part of unmount. | 638 | * Final log writes as part of unmount. |
652 | * | 639 | * |
653 | * Mark the filesystem clean as unmount happens. Note that during relocation | 640 | * Mark the filesystem clean as unmount happens. Note that during relocation |
@@ -797,7 +784,7 @@ xfs_log_unmount_write(xfs_mount_t *mp) | |||
797 | * and deallocate the log as the aild references the log. | 784 | * and deallocate the log as the aild references the log. |
798 | */ | 785 | */ |
799 | void | 786 | void |
800 | xfs_log_unmount_dealloc(xfs_mount_t *mp) | 787 | xfs_log_unmount(xfs_mount_t *mp) |
801 | { | 788 | { |
802 | xfs_trans_ail_destroy(mp); | 789 | xfs_trans_ail_destroy(mp); |
803 | xlog_dealloc_log(mp->m_log); | 790 | xlog_dealloc_log(mp->m_log); |