accel/qaic: Add AIC200 support
[drm/drm-misc.git] / fs / xfs / scrub / findparent.h
blobd998c7a88152cd18dd6386818ef3bae7ed66819b
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3 * Copyright (c) 2020-2024 Oracle. All Rights Reserved.
4 * Author: Darrick J. Wong <djwong@kernel.org>
5 */
6 #ifndef __XFS_SCRUB_FINDPARENT_H__
7 #define __XFS_SCRUB_FINDPARENT_H__
9 struct xrep_parent_scan_info {
10 struct xfs_scrub *sc;
12 /* Inode scan cursor. */
13 struct xchk_iscan iscan;
15 /* Hook to capture directory entry updates. */
16 struct xfs_dir_hook dhook;
18 /* Lock protecting parent_ino. */
19 struct mutex lock;
21 /* Parent inode that we've found. */
22 xfs_ino_t parent_ino;
24 bool lookup_parent;
27 int __xrep_findparent_scan_start(struct xfs_scrub *sc,
28 struct xrep_parent_scan_info *pscan,
29 notifier_fn_t custom_fn);
30 static inline int xrep_findparent_scan_start(struct xfs_scrub *sc,
31 struct xrep_parent_scan_info *pscan)
33 return __xrep_findparent_scan_start(sc, pscan, NULL);
35 int xrep_findparent_scan(struct xrep_parent_scan_info *pscan);
36 void xrep_findparent_scan_teardown(struct xrep_parent_scan_info *pscan);
38 static inline void
39 xrep_findparent_scan_found(
40 struct xrep_parent_scan_info *pscan,
41 xfs_ino_t ino)
43 mutex_lock(&pscan->lock);
44 pscan->parent_ino = ino;
45 mutex_unlock(&pscan->lock);
48 void xrep_findparent_scan_finish_early(struct xrep_parent_scan_info *pscan,
49 xfs_ino_t ino);
51 int xrep_findparent_confirm(struct xfs_scrub *sc, xfs_ino_t *parent_ino);
53 xfs_ino_t xrep_findparent_self_reference(struct xfs_scrub *sc);
54 xfs_ino_t xrep_findparent_from_dcache(struct xfs_scrub *sc);
56 #endif /* __XFS_SCRUB_FINDPARENT_H__ */