]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
xfs: move remote attr retrieval into xfs_attr3_leaf_getvalue
authorDave Chinner <dchinner@redhat.com>
Thu, 29 Aug 2019 16:04:09 +0000 (09:04 -0700)
committerDarrick J. Wong <darrick.wong@oracle.com>
Sat, 31 Aug 2019 05:43:57 +0000 (22:43 -0700)
Because we repeat exactly the same code to get the remote attribute
value after both calls to xfs_attr3_leaf_getvalue() if it's a remote
attr. Just do it in xfs_attr3_leaf_getvalue() so the callers don't
have to care about it.

Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
fs/xfs/libxfs/xfs_attr.c
fs/xfs/libxfs/xfs_attr_leaf.c

index 32879ab112905d3ef28c140ff5f1810be1109874..4773eef9d3de31812a18fd1f05579d7570a5b72e 100644 (file)
@@ -794,15 +794,7 @@ xfs_attr_leaf_get(xfs_da_args_t *args)
        }
        error = xfs_attr3_leaf_getvalue(bp, args);
        xfs_trans_brelse(args->trans, bp);
-       if (error)
-               return error;
-
-       /* check if we have to retrieve a remote attribute to get the value */
-       if (args->flags & ATTR_KERNOVAL)
-               return 0;
-       if (!args->rmtblkno)
-               return 0;
-       return xfs_attr_rmtval_get(args);
+       return error;
 }
 
 /*========================================================================
@@ -1316,12 +1308,6 @@ xfs_attr_node_get(xfs_da_args_t *args)
         */
        blk = &state->path.blk[state->path.active - 1];
        retval = xfs_attr3_leaf_getvalue(blk->bp, args);
-       if (retval)
-               goto out_release;
-       if (args->flags & ATTR_KERNOVAL)
-               goto out_release;
-       if (args->rmtblkno > 0)
-               retval = xfs_attr_rmtval_get(args);
 
        /*
         * If not in a transaction, we have to release all the buffers.
index c7378bc62d2b7ff072657b477f6c680a565e7f6c..8085c4f0e5a01b9d1057cbb37aa873308d41cfa5 100644 (file)
@@ -2410,7 +2410,7 @@ xfs_attr3_leaf_getvalue(
                return -ERANGE;
        }
        args->valuelen = args->rmtvaluelen;
-       return 0;
+       return xfs_attr_rmtval_get(args);
 }
 
 /*========================================================================