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