diff options
author | Christoph Hellwig <hch@lst.de> | 2020-02-27 02:30:39 +0100 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2020-03-03 05:55:54 +0100 |
commit | 17e1dd83ea21dc7aaf44590e5947338351b99bd0 (patch) | |
tree | a9419297a97b01e6af733bd7ffed8411f4998c7c /fs/xfs/xfs_ioctl.c | |
parent | xfs: move the legacy xfs_attr_list to xfs_ioctl.c (diff) | |
download | linux-17e1dd83ea21dc7aaf44590e5947338351b99bd0.tar.xz linux-17e1dd83ea21dc7aaf44590e5947338351b99bd0.zip |
xfs: rename xfs_attr_list_int to xfs_attr_list
The version taking the context structure is the main interface to list
attributes, so drop the _int postfix.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Chandan Rajendra <chandanrlinux@gmail.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/xfs_ioctl.c')
-rw-r--r-- | fs/xfs/xfs_ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_ioctl.c b/fs/xfs/xfs_ioctl.c index 07e6dfd78b68..f1f7f1aec85d 100644 --- a/fs/xfs/xfs_ioctl.c +++ b/fs/xfs/xfs_ioctl.c @@ -394,7 +394,7 @@ xfs_ioc_attr_list( alist->al_more = 0; alist->al_offset[0] = context.bufsize; - error = xfs_attr_list_int(&context); + error = xfs_attr_list(&context); ASSERT(error <= 0); return error; } |