8edbb26b06
Hoist the code that invalidates remote extended attribute value buffers into a separate helper function. This prepares us for a memory corruption fix in the next patch. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Christoph Hellwig <hch@lst.de>
18 lines
526 B
C
18 lines
526 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (c) 2013 Red Hat, Inc.
|
|
* All Rights Reserved.
|
|
*/
|
|
#ifndef __XFS_ATTR_REMOTE_H__
|
|
#define __XFS_ATTR_REMOTE_H__
|
|
|
|
int xfs_attr3_rmt_blocks(struct xfs_mount *mp, int attrlen);
|
|
|
|
int xfs_attr_rmtval_get(struct xfs_da_args *args);
|
|
int xfs_attr_rmtval_set(struct xfs_da_args *args);
|
|
int xfs_attr_rmtval_remove(struct xfs_da_args *args);
|
|
int xfs_attr_rmtval_stale(struct xfs_inode *ip, struct xfs_bmbt_irec *map,
|
|
xfs_buf_flags_t incore_flags);
|
|
|
|
#endif /* __XFS_ATTR_REMOTE_H__ */
|