xref: /linux/fs/xfs/libxfs/xfs_attr_remote.h (revision 0be3ff0c)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Copyright (c) 2013 Red Hat, Inc.
4  * All Rights Reserved.
5  */
6 #ifndef __XFS_ATTR_REMOTE_H__
7 #define	__XFS_ATTR_REMOTE_H__
8 
9 int xfs_attr3_rmt_blocks(struct xfs_mount *mp, int attrlen);
10 
11 int xfs_attr_rmtval_get(struct xfs_da_args *args);
12 int xfs_attr_rmtval_stale(struct xfs_inode *ip, struct xfs_bmbt_irec *map,
13 		xfs_buf_flags_t incore_flags);
14 int xfs_attr_rmtval_invalidate(struct xfs_da_args *args);
15 int xfs_attr_rmtval_remove(struct xfs_delattr_context *dac);
16 int xfs_attr_rmt_find_hole(struct xfs_da_args *args);
17 int xfs_attr_rmtval_set_value(struct xfs_da_args *args);
18 int xfs_attr_rmtval_set_blk(struct xfs_delattr_context *dac);
19 int xfs_attr_rmtval_find_space(struct xfs_delattr_context *dac);
20 #endif /* __XFS_ATTR_REMOTE_H__ */
21