blob: 120398a37c2a689abdd2ded154704987d9c2186f [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2009, Christoph Hellwig
4 * All Rights Reserved.
5 */
6#include "xfs.h"
7#include "xfs_fs.h"
8#include "xfs_shared.h"
Olivier Deprez157378f2022-04-04 15:47:50 +02009#include "xfs_bit.h"
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000010#include "xfs_format.h"
11#include "xfs_log_format.h"
12#include "xfs_trans_resv.h"
13#include "xfs_mount.h"
14#include "xfs_defer.h"
15#include "xfs_da_format.h"
16#include "xfs_inode.h"
17#include "xfs_btree.h"
18#include "xfs_da_btree.h"
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000019#include "xfs_alloc.h"
20#include "xfs_bmap.h"
21#include "xfs_attr.h"
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000022#include "xfs_trans.h"
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000023#include "xfs_log_priv.h"
24#include "xfs_buf_item.h"
25#include "xfs_quota.h"
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000026#include "xfs_dquot_item.h"
27#include "xfs_dquot.h"
28#include "xfs_log_recover.h"
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000029#include "xfs_filestream.h"
30#include "xfs_fsmap.h"
Olivier Deprez157378f2022-04-04 15:47:50 +020031#include "xfs_btree_staging.h"
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000032
33/*
34 * We include this last to have the helpers above available for the trace
35 * event implementations.
36 */
37#define CREATE_TRACE_POINTS
38#include "xfs_trace.h"