Linux Audio

Check our new training course

Loading...
Note: File does not exist in v3.5.6.
 1// SPDX-License-Identifier: GPL-2.0-or-later
 2/*
 3 * Copyright (C) 2017-2023 Oracle.  All Rights Reserved.
 4 * Author: Darrick J. Wong <djwong@kernel.org>
 5 */
 6#include "xfs.h"
 7#include "xfs_fs.h"
 8#include "xfs_shared.h"
 9#include "xfs_format.h"
10#include "xfs_log_format.h"
11#include "xfs_trans_resv.h"
12#include "xfs_mount.h"
13#include "xfs_inode.h"
14#include "xfs_btree.h"
15#include "xfs_ag.h"
16#include "xfs_rtbitmap.h"
17#include "xfs_quota.h"
18#include "xfs_quota_defs.h"
19#include "scrub/scrub.h"
20#include "scrub/xfile.h"
21#include "scrub/xfarray.h"
22#include "scrub/quota.h"
23
24/* Figure out which block the btree cursor was pointing to. */
25static inline xfs_fsblock_t
26xchk_btree_cur_fsbno(
27	struct xfs_btree_cur	*cur,
28	int			level)
29{
30	if (level < cur->bc_nlevels && cur->bc_levels[level].bp)
31		return XFS_DADDR_TO_FSB(cur->bc_mp,
32				xfs_buf_daddr(cur->bc_levels[level].bp));
33
34	if (level == cur->bc_nlevels - 1 &&
35	    (cur->bc_flags & XFS_BTREE_ROOT_IN_INODE))
36		return XFS_INO_TO_FSB(cur->bc_mp, cur->bc_ino.ip->i_ino);
37
38	return NULLFSBLOCK;
39}
40
41/*
42 * We include this last to have the helpers above available for the trace
43 * event implementations.
44 */
45#define CREATE_TRACE_POINTS
46#include "scrub/trace.h"