diff options
author | Eric Sandeen <sandeen@redhat.com> | 2014-04-14 05:06:25 -0400 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-04-14 05:06:25 -0400 |
commit | bbe4c668694cb22a6016d3845c9b362c44e8341f (patch) | |
tree | 2b42798e1569747a3e45bffe8025b1c757069fee /fs/xfs/xfs_log_recover.c | |
parent | e4a1e29cb0ace3a322c5c07d33dd1f4ab50dbbb8 (diff) |
xfs: remove unused trans pointer arg from xlog_recover_unmount_trans()
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_log_recover.c')
-rw-r--r-- | fs/xfs/xfs_log_recover.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c index 780105236fc7..690a64d4444e 100644 --- a/fs/xfs/xfs_log_recover.c +++ b/fs/xfs/xfs_log_recover.c | |||
@@ -3520,8 +3520,7 @@ out: | |||
3520 | 3520 | ||
3521 | STATIC int | 3521 | STATIC int |
3522 | xlog_recover_unmount_trans( | 3522 | xlog_recover_unmount_trans( |
3523 | struct xlog *log, | 3523 | struct xlog *log) |
3524 | struct xlog_recover *trans) | ||
3525 | { | 3524 | { |
3526 | /* Do nothing now */ | 3525 | /* Do nothing now */ |
3527 | xfs_warn(log->l_mp, "%s: Unmount LR", __func__); | 3526 | xfs_warn(log->l_mp, "%s: Unmount LR", __func__); |
@@ -3595,7 +3594,7 @@ xlog_recover_process_data( | |||
3595 | trans, pass); | 3594 | trans, pass); |
3596 | break; | 3595 | break; |
3597 | case XLOG_UNMOUNT_TRANS: | 3596 | case XLOG_UNMOUNT_TRANS: |
3598 | error = xlog_recover_unmount_trans(log, trans); | 3597 | error = xlog_recover_unmount_trans(log); |
3599 | break; | 3598 | break; |
3600 | case XLOG_WAS_CONT_TRANS: | 3599 | case XLOG_WAS_CONT_TRANS: |
3601 | error = xlog_recover_add_to_cont_trans(log, | 3600 | error = xlog_recover_add_to_cont_trans(log, |