blob: 35f3546b6af5237a78a9fe1bd3aa07cbb8503349 [file] [log] [blame]
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001/*
2 * Copyright (c) 2009, Christoph Hellwig
3 * All Rights Reserved.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18#include "xfs.h"
19#include "xfs_fs.h"
Dave Chinner70a98832013-10-23 10:36:05 +110020#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_format.h"
22#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Dave Chinner57062782013-10-15 09:17:51 +110024#include "xfs_mount.h"
Darrick J. Wong3cd48ab2016-08-03 11:13:02 +100025#include "xfs_defer.h"
Dave Chinner57062782013-10-15 09:17:51 +110026#include "xfs_da_format.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000027#include "xfs_inode.h"
28#include "xfs_btree.h"
Dave Chinnerf5ea1102013-04-24 18:58:02 +100029#include "xfs_da_btree.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000030#include "xfs_ialloc.h"
31#include "xfs_itable.h"
32#include "xfs_alloc.h"
33#include "xfs_bmap.h"
34#include "xfs_attr.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000035#include "xfs_attr_leaf.h"
Dave Chinner239880e2013-10-23 10:50:10 +110036#include "xfs_trans.h"
37#include "xfs_log.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000038#include "xfs_log_priv.h"
39#include "xfs_buf_item.h"
40#include "xfs_quota.h"
41#include "xfs_iomap.h"
42#include "xfs_aops.h"
Alex Elder06f8e2d2011-08-12 13:57:55 -050043#include "xfs_dquot_item.h"
44#include "xfs_dquot.h"
Dave Chinner9abbc532010-04-13 15:06:46 +100045#include "xfs_log_recover.h"
Dave Chinner9abbc532010-04-13 15:06:46 +100046#include "xfs_inode_item.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110047#include "xfs_bmap_btree.h"
Christoph Hellwigb94acd42014-04-23 07:11:52 +100048#include "xfs_filestream.h"
Darrick J. Wonge89c0412017-03-28 14:56:37 -070049#include "xfs_fsmap.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000050
51/*
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000052 * We include this last to have the helpers above available for the trace
53 * event implementations.
54 */
55#define CREATE_TRACE_POINTS
56#include "xfs_trace.h"