scrub.h (0f28b25731f76feda1ec71671754a2b7179ee1ef) scrub.h (29b0767b8beb4c5e3fd94656d51413a4fe8d2d74)
1/*
2 * Copyright (C) 2017 Oracle. All Rights Reserved.
3 *
4 * Author: Darrick J. Wong <darrick.wong@oracle.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2

--- 73 unchanged lines hidden (view full) ---

82int xfs_scrub_inode(struct xfs_scrub_context *sc);
83int xfs_scrub_bmap_data(struct xfs_scrub_context *sc);
84int xfs_scrub_bmap_attr(struct xfs_scrub_context *sc);
85int xfs_scrub_bmap_cow(struct xfs_scrub_context *sc);
86int xfs_scrub_directory(struct xfs_scrub_context *sc);
87int xfs_scrub_xattr(struct xfs_scrub_context *sc);
88int xfs_scrub_symlink(struct xfs_scrub_context *sc);
89int xfs_scrub_parent(struct xfs_scrub_context *sc);
1/*
2 * Copyright (C) 2017 Oracle. All Rights Reserved.
3 *
4 * Author: Darrick J. Wong <darrick.wong@oracle.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2

--- 73 unchanged lines hidden (view full) ---

82int xfs_scrub_inode(struct xfs_scrub_context *sc);
83int xfs_scrub_bmap_data(struct xfs_scrub_context *sc);
84int xfs_scrub_bmap_attr(struct xfs_scrub_context *sc);
85int xfs_scrub_bmap_cow(struct xfs_scrub_context *sc);
86int xfs_scrub_directory(struct xfs_scrub_context *sc);
87int xfs_scrub_xattr(struct xfs_scrub_context *sc);
88int xfs_scrub_symlink(struct xfs_scrub_context *sc);
89int xfs_scrub_parent(struct xfs_scrub_context *sc);
90#ifdef CONFIG_XFS_RT
91int xfs_scrub_rtbitmap(struct xfs_scrub_context *sc);
92int xfs_scrub_rtsummary(struct xfs_scrub_context *sc);
93#else
94static inline int
95xfs_scrub_rtbitmap(struct xfs_scrub_context *sc)
96{
97 return -ENOENT;
98}
99static inline int
100xfs_scrub_rtsummary(struct xfs_scrub_context *sc)
101{
102 return -ENOENT;
103}
104#endif
90
91#endif /* __XFS_SCRUB_SCRUB_H__ */
105
106#endif /* __XFS_SCRUB_SCRUB_H__ */