From: Christoph Hellwig Date: Wed, 18 Oct 2017 18:38:49 +0000 (-0500) Subject: xfs: rename xfs_defer_join to xfs_defer_ijoin X-Git-Tag: v4.14.0-rc1~40 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=277d3c3a7576c757205ae7777d5daac2bc164000;p=thirdparty%2Fxfsprogs-dev.git xfs: rename xfs_defer_join to xfs_defer_ijoin Source kernel commit: 882d8785fb87f691000a0b33c215364d74bd2ceb Signed-off-by: Christoph Hellwig Reviewed-by: Dave Chinner Reviewed-by: Darrick J. Wong Signed-off-by: Darrick J. Wong Signed-off-by: Eric Sandeen --- diff --git a/libxfs/xfs_bmap.c b/libxfs/xfs_bmap.c index 74fd7a021..e3bbde30e 100644 --- a/libxfs/xfs_bmap.c +++ b/libxfs/xfs_bmap.c @@ -6443,7 +6443,7 @@ __xfs_bmap_add( bi->bi_whichfork = whichfork; bi->bi_bmap = *bmap; - error = xfs_defer_join(dfops, bi->bi_owner); + error = xfs_defer_ijoin(dfops, bi->bi_owner); if (error) { kmem_free(bi); return error; diff --git a/libxfs/xfs_defer.c b/libxfs/xfs_defer.c index fa3f72d21..7345291d3 100644 --- a/libxfs/xfs_defer.c +++ b/libxfs/xfs_defer.c @@ -281,7 +281,7 @@ xfs_defer_has_unfinished_work( * to xfs_defer_finish(). */ int -xfs_defer_join( +xfs_defer_ijoin( struct xfs_defer_ops *dop, struct xfs_inode *ip) { @@ -324,7 +324,7 @@ xfs_defer_finish( trace_xfs_defer_finish((*tp)->t_mountp, dop); - xfs_defer_join(dop, ip); + xfs_defer_ijoin(dop, ip); /* Until we run out of pending work to finish... */ while (xfs_defer_has_unfinished_work(dop)) { diff --git a/libxfs/xfs_defer.h b/libxfs/xfs_defer.h index f6e93ef0b..70c944b21 100644 --- a/libxfs/xfs_defer.h +++ b/libxfs/xfs_defer.h @@ -77,7 +77,7 @@ int xfs_defer_finish(struct xfs_trans **tp, struct xfs_defer_ops *dop, void xfs_defer_cancel(struct xfs_defer_ops *dop); void xfs_defer_init(struct xfs_defer_ops *dop, xfs_fsblock_t *fbp); bool xfs_defer_has_unfinished_work(struct xfs_defer_ops *dop); -int xfs_defer_join(struct xfs_defer_ops *dop, struct xfs_inode *ip); +int xfs_defer_ijoin(struct xfs_defer_ops *dop, struct xfs_inode *ip); /* Description of a deferred type. */ struct xfs_defer_op_type {