diff options
author | Eric Sandeen <sandeen@redhat.com> | 2014-04-14 05:01:34 -0400 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-04-14 05:01:34 -0400 |
commit | 72b0636bb7aca50978da60dfbaefc44020e1600e (patch) | |
tree | 14e6fa38c9782618e71afc7c25a1d9d9028e8f30 | |
parent | 87937bf8cae495d4eafdae226e0726c25c3ff9f9 (diff) |
xfs: remove unused bip arg from xfs_buf_item_log_segment()
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
-rw-r--r-- | fs/xfs/xfs_buf_item.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/xfs/xfs_buf_item.c b/fs/xfs/xfs_buf_item.c index 8752821443be..64b17f5bed9a 100644 --- a/fs/xfs/xfs_buf_item.c +++ b/fs/xfs/xfs_buf_item.c | |||
@@ -812,7 +812,6 @@ xfs_buf_item_init( | |||
812 | */ | 812 | */ |
813 | static void | 813 | static void |
814 | xfs_buf_item_log_segment( | 814 | xfs_buf_item_log_segment( |
815 | struct xfs_buf_log_item *bip, | ||
816 | uint first, | 815 | uint first, |
817 | uint last, | 816 | uint last, |
818 | uint *map) | 817 | uint *map) |
@@ -920,7 +919,7 @@ xfs_buf_item_log( | |||
920 | if (end > last) | 919 | if (end > last) |
921 | end = last; | 920 | end = last; |
922 | 921 | ||
923 | xfs_buf_item_log_segment(bip, first, end, | 922 | xfs_buf_item_log_segment(first, end, |
924 | &bip->bli_formats[i].blf_data_map[0]); | 923 | &bip->bli_formats[i].blf_data_map[0]); |
925 | 924 | ||
926 | start += bp->b_maps[i].bm_len; | 925 | start += bp->b_maps[i].bm_len; |