~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/fs/xfs/scrub/findparent.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /fs/xfs/scrub/findparent.h (Architecture sparc) and /fs/xfs/scrub/findparent.h (Architecture i386)


  1 /* SPDX-License-Identifier: GPL-2.0-or-later *      1 /* SPDX-License-Identifier: GPL-2.0-or-later */
  2 /*                                                  2 /*
  3  * Copyright (c) 2020-2024 Oracle.  All Rights      3  * Copyright (c) 2020-2024 Oracle.  All Rights Reserved.
  4  * Author: Darrick J. Wong <djwong@kernel.org>      4  * Author: Darrick J. Wong <djwong@kernel.org>
  5  */                                                 5  */
  6 #ifndef __XFS_SCRUB_FINDPARENT_H__                  6 #ifndef __XFS_SCRUB_FINDPARENT_H__
  7 #define __XFS_SCRUB_FINDPARENT_H__                  7 #define __XFS_SCRUB_FINDPARENT_H__
  8                                                     8 
  9 struct xrep_parent_scan_info {                      9 struct xrep_parent_scan_info {
 10         struct xfs_scrub        *sc;               10         struct xfs_scrub        *sc;
 11                                                    11 
 12         /* Inode scan cursor. */                   12         /* Inode scan cursor. */
 13         struct xchk_iscan       iscan;             13         struct xchk_iscan       iscan;
 14                                                    14 
 15         /* Hook to capture directory entry upd     15         /* Hook to capture directory entry updates. */
 16         struct xfs_dir_hook     dhook;             16         struct xfs_dir_hook     dhook;
 17                                                    17 
 18         /* Lock protecting parent_ino. */          18         /* Lock protecting parent_ino. */
 19         struct mutex            lock;              19         struct mutex            lock;
 20                                                    20 
 21         /* Parent inode that we've found. */       21         /* Parent inode that we've found. */
 22         xfs_ino_t               parent_ino;        22         xfs_ino_t               parent_ino;
 23                                                    23 
 24         bool                    lookup_parent;     24         bool                    lookup_parent;
 25 };                                                 25 };
 26                                                    26 
 27 int __xrep_findparent_scan_start(struct xfs_sc     27 int __xrep_findparent_scan_start(struct xfs_scrub *sc,
 28                 struct xrep_parent_scan_info *     28                 struct xrep_parent_scan_info *pscan,
 29                 notifier_fn_t custom_fn);          29                 notifier_fn_t custom_fn);
 30 static inline int xrep_findparent_scan_start(s     30 static inline int xrep_findparent_scan_start(struct xfs_scrub *sc,
 31                 struct xrep_parent_scan_info *     31                 struct xrep_parent_scan_info *pscan)
 32 {                                                  32 {
 33         return __xrep_findparent_scan_start(sc     33         return __xrep_findparent_scan_start(sc, pscan, NULL);
 34 }                                                  34 }
 35 int xrep_findparent_scan(struct xrep_parent_sc     35 int xrep_findparent_scan(struct xrep_parent_scan_info *pscan);
 36 void xrep_findparent_scan_teardown(struct xrep     36 void xrep_findparent_scan_teardown(struct xrep_parent_scan_info *pscan);
 37                                                    37 
 38 static inline void                                 38 static inline void
 39 xrep_findparent_scan_found(                        39 xrep_findparent_scan_found(
 40         struct xrep_parent_scan_info    *pscan     40         struct xrep_parent_scan_info    *pscan,
 41         xfs_ino_t                       ino)       41         xfs_ino_t                       ino)
 42 {                                                  42 {
 43         mutex_lock(&pscan->lock);                  43         mutex_lock(&pscan->lock);
 44         pscan->parent_ino = ino;                   44         pscan->parent_ino = ino;
 45         mutex_unlock(&pscan->lock);                45         mutex_unlock(&pscan->lock);
 46 }                                                  46 }
 47                                                    47 
 48 void xrep_findparent_scan_finish_early(struct      48 void xrep_findparent_scan_finish_early(struct xrep_parent_scan_info *pscan,
 49                 xfs_ino_t ino);                    49                 xfs_ino_t ino);
 50                                                    50 
 51 int xrep_findparent_confirm(struct xfs_scrub *     51 int xrep_findparent_confirm(struct xfs_scrub *sc, xfs_ino_t *parent_ino);
 52                                                    52 
 53 xfs_ino_t xrep_findparent_self_reference(struc     53 xfs_ino_t xrep_findparent_self_reference(struct xfs_scrub *sc);
 54 xfs_ino_t xrep_findparent_from_dcache(struct x     54 xfs_ino_t xrep_findparent_from_dcache(struct xfs_scrub *sc);
 55                                                    55 
 56 #endif /* __XFS_SCRUB_FINDPARENT_H__ */            56 #endif /* __XFS_SCRUB_FINDPARENT_H__ */
 57                                                    57 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php