From: Christoph Hellwig Date: Fri, 1 May 2020 21:01:33 +0000 (-0400) Subject: xfs: rename xfs_attr_list_int to xfs_attr_list X-Git-Tag: v5.7.0-rc0~38 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=63171ca8bfd13237588994065c9e32a6f70fdee9;p=thirdparty%2Fxfsprogs-dev.git xfs: rename xfs_attr_list_int to xfs_attr_list Source kernel commit: 17e1dd83ea21dc7aaf44590e5947338351b99bd0 The version taking the context structure is the main interface to list attributes, so drop the _int postfix. Signed-off-by: Christoph Hellwig Reviewed-by: Dave Chinner Reviewed-by: Chandan Rajendra Reviewed-by: Darrick J. Wong Signed-off-by: Darrick J. Wong Signed-off-by: Eric Sandeen --- diff --git a/libxfs/xfs_attr.h b/libxfs/xfs_attr.h index 0e3c213f7..8d42f5782 100644 --- a/libxfs/xfs_attr.h +++ b/libxfs/xfs_attr.h @@ -102,8 +102,8 @@ struct xfs_attr_list_context { * Overall external interface routines. */ int xfs_attr_inactive(struct xfs_inode *dp); -int xfs_attr_list_int_ilocked(struct xfs_attr_list_context *); -int xfs_attr_list_int(struct xfs_attr_list_context *); +int xfs_attr_list_ilocked(struct xfs_attr_list_context *); +int xfs_attr_list(struct xfs_attr_list_context *); int xfs_inode_hasattr(struct xfs_inode *ip); int xfs_attr_get_ilocked(struct xfs_da_args *args); int xfs_attr_get(struct xfs_da_args *args);