blob: d269ef57ff0166c0ef17d0c9b58b06e59932c673 [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002/*
3 * Copyright (c) 2009, Christoph Hellwig
4 * All Rights Reserved.
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00005 */
6#include "xfs.h"
7#include "xfs_fs.h"
Dave Chinner70a98832013-10-23 10:36:05 +11008#include "xfs_shared.h"
Darrick J. Wong60e3d702020-03-11 10:51:50 -07009#include "xfs_bit.h"
Dave Chinner239880e2013-10-23 10:50:10 +110010#include "xfs_format.h"
11#include "xfs_log_format.h"
12#include "xfs_trans_resv.h"
Dave Chinner57062782013-10-15 09:17:51 +110013#include "xfs_mount.h"
Darrick J. Wong3cd48ab2016-08-03 11:13:02 +100014#include "xfs_defer.h"
Dave Chinner57062782013-10-15 09:17:51 +110015#include "xfs_da_format.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000016#include "xfs_inode.h"
17#include "xfs_btree.h"
Dave Chinnerf5ea1102013-04-24 18:58:02 +100018#include "xfs_da_btree.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000019#include "xfs_alloc.h"
20#include "xfs_bmap.h"
21#include "xfs_attr.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_trans.h"
Dave Chinner0020a192021-08-10 18:00:44 -070023#include "xfs_log.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000024#include "xfs_log_priv.h"
25#include "xfs_buf_item.h"
26#include "xfs_quota.h"
Alex Elder06f8e2d62011-08-12 13:57:55 -050027#include "xfs_dquot_item.h"
28#include "xfs_dquot.h"
Dave Chinner9abbc532010-04-13 15:06:46 +100029#include "xfs_log_recover.h"
Christoph Hellwigb94acd42014-04-23 07:11:52 +100030#include "xfs_filestream.h"
Darrick J. Wonge89c0412017-03-28 14:56:37 -070031#include "xfs_fsmap.h"
Darrick J. Wonge06536a2020-03-11 10:40:26 -070032#include "xfs_btree_staging.h"
Darrick J. Wong38899f82021-01-22 16:48:38 -080033#include "xfs_icache.h"
Dave Chinner07b64032021-06-02 10:48:24 +100034#include "xfs_ag.h"
35#include "xfs_ag_resv.h"
Darrick J. Wong7f89c832021-08-10 17:00:54 -070036#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000037
38/*
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000039 * We include this last to have the helpers above available for the trace
40 * event implementations.
41 */
42#define CREATE_TRACE_POINTS
43#include "xfs_trace.h"