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>
这个提交包含在:
Christoph Hellwig
2020-02-26 17:30:39 -08:00
提交者 Darrick J. Wong
父节点 3e7a779937
当前提交 17e1dd83ea
修改 5 个文件,包含 9 行新增9 行删除

查看文件

@@ -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;
}