diff options
| -rw-r--r-- | fs/xfs/xfs_inode.c | 4 | ||||
| -rw-r--r-- | fs/xfs/xfs_inode_fork.c | 3 | ||||
| -rw-r--r-- | fs/xfs/xfs_inode_fork.h | 3 |
3 files changed, 4 insertions, 6 deletions
diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c index 5e7a38fa6ee6..b6825d01bedc 100644 --- a/fs/xfs/xfs_inode.c +++ b/fs/xfs/xfs_inode.c | |||
| @@ -3371,9 +3371,9 @@ xfs_iflush_int( | |||
| 3371 | } | 3371 | } |
| 3372 | } | 3372 | } |
| 3373 | 3373 | ||
| 3374 | xfs_iflush_fork(ip, dip, iip, XFS_DATA_FORK, bp); | 3374 | xfs_iflush_fork(ip, dip, iip, XFS_DATA_FORK); |
| 3375 | if (XFS_IFORK_Q(ip)) | 3375 | if (XFS_IFORK_Q(ip)) |
| 3376 | xfs_iflush_fork(ip, dip, iip, XFS_ATTR_FORK, bp); | 3376 | xfs_iflush_fork(ip, dip, iip, XFS_ATTR_FORK); |
| 3377 | xfs_inobp_check(mp, bp); | 3377 | xfs_inobp_check(mp, bp); |
| 3378 | 3378 | ||
| 3379 | /* | 3379 | /* |
diff --git a/fs/xfs/xfs_inode_fork.c b/fs/xfs/xfs_inode_fork.c index 73514c0486b7..b031e8d0d928 100644 --- a/fs/xfs/xfs_inode_fork.c +++ b/fs/xfs/xfs_inode_fork.c | |||
| @@ -798,8 +798,7 @@ xfs_iflush_fork( | |||
| 798 | xfs_inode_t *ip, | 798 | xfs_inode_t *ip, |
| 799 | xfs_dinode_t *dip, | 799 | xfs_dinode_t *dip, |
| 800 | xfs_inode_log_item_t *iip, | 800 | xfs_inode_log_item_t *iip, |
| 801 | int whichfork, | 801 | int whichfork) |
| 802 | xfs_buf_t *bp) | ||
| 803 | { | 802 | { |
| 804 | char *cp; | 803 | char *cp; |
| 805 | xfs_ifork_t *ifp; | 804 | xfs_ifork_t *ifp; |
diff --git a/fs/xfs/xfs_inode_fork.h b/fs/xfs/xfs_inode_fork.h index eb329a1ea888..7d3b1ed6dcbe 100644 --- a/fs/xfs/xfs_inode_fork.h +++ b/fs/xfs/xfs_inode_fork.h | |||
| @@ -127,8 +127,7 @@ typedef struct xfs_ifork { | |||
| 127 | 127 | ||
| 128 | int xfs_iformat_fork(struct xfs_inode *, struct xfs_dinode *); | 128 | int xfs_iformat_fork(struct xfs_inode *, struct xfs_dinode *); |
| 129 | void xfs_iflush_fork(struct xfs_inode *, struct xfs_dinode *, | 129 | void xfs_iflush_fork(struct xfs_inode *, struct xfs_dinode *, |
| 130 | struct xfs_inode_log_item *, int, | 130 | struct xfs_inode_log_item *, int); |
| 131 | struct xfs_buf *); | ||
| 132 | void xfs_idestroy_fork(struct xfs_inode *, int); | 131 | void xfs_idestroy_fork(struct xfs_inode *, int); |
| 133 | void xfs_idata_realloc(struct xfs_inode *, int, int); | 132 | void xfs_idata_realloc(struct xfs_inode *, int, int); |
| 134 | void xfs_iroot_realloc(struct xfs_inode *, int, int); | 133 | void xfs_iroot_realloc(struct xfs_inode *, int, int); |
