Nishad Kamdar | 508578f | 2020-05-12 16:54:17 -0700 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Dave Chinner | 95920cd | 2013-04-03 16:11:27 +1100 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013 Red Hat, Inc. |
| 4 | * All Rights Reserved. |
Dave Chinner | 95920cd | 2013-04-03 16:11:27 +1100 | [diff] [blame] | 5 | */ |
| 6 | #ifndef __XFS_ATTR_REMOTE_H__ |
| 7 | #define __XFS_ATTR_REMOTE_H__ |
| 8 | |
Dave Chinner | 7bc0dc2 | 2013-05-21 18:02:08 +1000 | [diff] [blame] | 9 | int xfs_attr3_rmt_blocks(struct xfs_mount *mp, int attrlen); |
| 10 | |
Dave Chinner | 95920cd | 2013-04-03 16:11:27 +1100 | [diff] [blame] | 11 | int xfs_attr_rmtval_get(struct xfs_da_args *args); |
| 12 | int xfs_attr_rmtval_set(struct xfs_da_args *args); |
| 13 | int xfs_attr_rmtval_remove(struct xfs_da_args *args); |
Darrick J. Wong | 8edbb26 | 2020-01-08 09:08:07 -0800 | [diff] [blame] | 14 | int xfs_attr_rmtval_stale(struct xfs_inode *ip, struct xfs_bmbt_irec *map, |
| 15 | xfs_buf_flags_t incore_flags); |
Allison Collins | 7951410 | 2020-07-20 21:47:25 -0700 | [diff] [blame] | 16 | int xfs_attr_rmtval_invalidate(struct xfs_da_args *args); |
Allison Collins | 8b8e0cc | 2020-07-20 21:47:26 -0700 | [diff] [blame] | 17 | int __xfs_attr_rmtval_remove(struct xfs_da_args *args); |
Dave Chinner | 95920cd | 2013-04-03 16:11:27 +1100 | [diff] [blame] | 18 | #endif /* __XFS_ATTR_REMOTE_H__ */ |