]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
xfs: rename xfs_defer_join to xfs_defer_ijoin
authorChristoph Hellwig <hch@lst.de>
Mon, 28 Aug 2017 17:21:03 +0000 (10:21 -0700)
committerDarrick J. Wong <darrick.wong@oracle.com>
Fri, 1 Sep 2017 17:55:30 +0000 (10:55 -0700)
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
fs/xfs/libxfs/xfs_bmap.c
fs/xfs/libxfs/xfs_defer.c
fs/xfs/libxfs/xfs_defer.h

index c09c16b1ad3b8b1f883e2ee93b9fcc275c7ed63c..dcefadd4fc3a9b1edade61fd015c5b0402412ec5 100644 (file)
@@ -6452,7 +6452,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;
index 4ea2f068d95c2bcc958e92ae36a2420df239d7d2..6c0da24c68c9bd1b2531c1fb34439607f670bd68 100644 (file)
@@ -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)) {
index f6e93ef0bffe8a4620a136b1e7f523bb1343a941..70c944b21a2a3a18f7747eb476b840bc05bc2c6e 100644 (file)
@@ -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 {