1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Copyright (C) 2019-2023 Oracle. All Rights Reserved.
6 #ifndef __XFS_SCRUB_ATTR_H__
7 #define __XFS_SCRUB_ATTR_H__
10 * Temporary storage for online scrub and repair of extended attributes.
12 struct xchk_xattr_buf {
13 /* Bitmap of used space in xattr leaf blocks and shortform forks. */
14 unsigned long *usedmap;
16 /* Bitmap of free space in xattr leaf blocks. */
17 unsigned long *freemap;
19 /* Memory buffer used to extract xattr values. */
24 #endif /* __XFS_SCRUB_ATTR_H__ */