aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_inode_item.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2011-07-13 07:43:49 -0400
committerChristoph Hellwig <hch@lst.de>2011-07-13 07:43:49 -0400
commitadadbeefb34f755a3477da51035eeeec2c1fde38 (patch)
treebb5e9b79572004667ff6cdcbff0acd5d426ee774 /fs/xfs/xfs_inode_item.c
parentbf9d9013a2a559858efb590bf922377be9d6d969 (diff)
xfs: remove wrappers around b_fspriv
Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Alex Elder <aelder@sgi.com> Reviewed-by: Dave Chinner <dchinner@redhat.com>
Diffstat (limited to 'fs/xfs/xfs_inode_item.c')
-rw-r--r--fs/xfs/xfs_inode_item.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_inode_item.c b/fs/xfs/xfs_inode_item.c
index a49811a3e5a4..588406dc6a35 100644
--- a/fs/xfs/xfs_inode_item.c
+++ b/fs/xfs/xfs_inode_item.c
@@ -874,7 +874,7 @@ xfs_iflush_done(
874 * Scan the buffer IO completions for other inodes being completed and 874 * Scan the buffer IO completions for other inodes being completed and
875 * attach them to the current inode log item. 875 * attach them to the current inode log item.
876 */ 876 */
877 blip = XFS_BUF_FSPRIVATE(bp, xfs_log_item_t *); 877 blip = bp->b_fspriv;
878 prev = NULL; 878 prev = NULL;
879 while (blip != NULL) { 879 while (blip != NULL) {
880 if (lip->li_cb != xfs_iflush_done) { 880 if (lip->li_cb != xfs_iflush_done) {
@@ -886,7 +886,7 @@ xfs_iflush_done(
886 /* remove from list */ 886 /* remove from list */
887 next = blip->li_bio_list; 887 next = blip->li_bio_list;
888 if (!prev) { 888 if (!prev) {
889 XFS_BUF_SET_FSPRIVATE(bp, next); 889 bp->b_fspriv = next;
890 } else { 890 } else {
891 prev->li_bio_list = next; 891 prev->li_bio_list = next;
892 } 892 }