// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (c) 2023-2024 Oracle. All Rights Reserved. * Author: Darrick J. Wong <[email protected]> */ #ifndef __XFS_SCRUB_INO_BITMAP_H__ #define __XFS_SCRUB_INO_BITMAP_H__ /* Bitmaps, but for type-checked for xfs_ino_t */ struct xino_bitmap { … }; static inline void xino_bitmap_init(struct xino_bitmap *bitmap) { … } static inline void xino_bitmap_destroy(struct xino_bitmap *bitmap) { … } static inline int xino_bitmap_set(struct xino_bitmap *bitmap, xfs_ino_t ino) { … } static inline int xino_bitmap_test(struct xino_bitmap *bitmap, xfs_ino_t ino) { … } #endif /* __XFS_SCRUB_INO_BITMAP_H__ */