drm/panthor: Don't declare a queue blocked if deferred operations are pending
[drm/drm-misc.git] / fs / xfs / scrub / fscounters.h
blobbcf56e1c36f91c481897e98b9066d6da65fa1fdd
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3 * Copyright (c) 2021-2024 Oracle. All Rights Reserved.
4 * Author: Darrick J. Wong <djwong@kernel.org>
5 */
6 #ifndef __XFS_SCRUB_FSCOUNTERS_H__
7 #define __XFS_SCRUB_FSCOUNTERS_H__
9 struct xchk_fscounters {
10 struct xfs_scrub *sc;
11 uint64_t icount;
12 uint64_t ifree;
13 uint64_t fdblocks;
14 uint64_t frextents;
15 uint64_t frextents_delayed;
16 unsigned long long icount_min;
17 unsigned long long icount_max;
18 bool frozen;
21 #endif /* __XFS_SCRUB_FSCOUNTERS_H__ */