diff options
author | Allison Henderson <allison.henderson@oracle.com> | 2021-05-29 01:15:05 +0300 |
---|---|---|
committer | Allison Henderson <allison.henderson@oracle.com> | 2021-06-09 19:34:05 +0300 |
commit | 816c8e39b7ea0875640312c9ed3be0d5a68d7183 (patch) | |
tree | d5d7fe49c95bcd230851fe85ab03f30af356a13d /fs/xfs/libxfs/xfs_attr_leaf.c | |
parent | 4a4957c16dc674d1306a3b43d6b07ed93a7b7a14 (diff) | |
download | linux-816c8e39b7ea0875640312c9ed3be0d5a68d7183.tar.xz |
xfs: Make attr name schemes consistent
This patch renames the following functions to make the nameing scheme more consistent:
xfs_attr_shortform_remove -> xfs_attr_sf_removename
xfs_attr_node_remove_name -> xfs_attr_node_removename
xfs_attr_set_fmt -> xfs_attr_sf_addname
Suggested-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Allison Henderson <allison.henderson@oracle.com>
Reviewed-by: Chandan Babu R <chandanrlinux@gmail.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Diffstat (limited to 'fs/xfs/libxfs/xfs_attr_leaf.c')
-rw-r--r-- | fs/xfs/libxfs/xfs_attr_leaf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_attr_leaf.c b/fs/xfs/libxfs/xfs_attr_leaf.c index d97de2083feb..5a3d261d901f 100644 --- a/fs/xfs/libxfs/xfs_attr_leaf.c +++ b/fs/xfs/libxfs/xfs_attr_leaf.c @@ -773,7 +773,7 @@ xfs_attr_fork_remove( * Remove an attribute from the shortform attribute list structure. */ int -xfs_attr_shortform_remove( +xfs_attr_sf_removename( struct xfs_da_args *args) { struct xfs_attr_shortform *sf; |