diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2020-05-01 16:00:56 -0700 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2020-05-08 08:50:01 -0700 |
commit | 6ea670ade207232d7863933bc6a834defe8b0269 (patch) | |
tree | 103f6ba5b76f066ecb4d81072e4bd5ba5c50b7ab /fs/xfs/xfs_log_recover.c | |
parent | 17d29bf271ea48b253c93969a590a11a51c19c1f (diff) | |
download | linux-6ea670ade207232d7863933bc6a834defe8b0269.tar.gz linux-6ea670ade207232d7863933bc6a834defe8b0269.tar.bz2 linux-6ea670ade207232d7863933bc6a834defe8b0269.zip |
xfs: remove unnecessary includes from xfs_log_recover.c
Remove unnecessary includes from the log recovery code.
Suggested-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Chandan Babu R <chandanrlinux@gmail.com>
Diffstat (limited to 'fs/xfs/xfs_log_recover.c')
-rw-r--r-- | fs/xfs/xfs_log_recover.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c index 572e6707362a..ec015df55b77 100644 --- a/fs/xfs/xfs_log_recover.c +++ b/fs/xfs/xfs_log_recover.c @@ -18,21 +18,13 @@ #include "xfs_log.h" #include "xfs_log_priv.h" #include "xfs_log_recover.h" -#include "xfs_inode_item.h" -#include "xfs_extfree_item.h" #include "xfs_trans_priv.h" #include "xfs_alloc.h" #include "xfs_ialloc.h" -#include "xfs_quota.h" #include "xfs_trace.h" #include "xfs_icache.h" -#include "xfs_bmap_btree.h" #include "xfs_error.h" -#include "xfs_dir2.h" -#include "xfs_rmap_item.h" #include "xfs_buf_item.h" -#include "xfs_refcount_item.h" -#include "xfs_bmap_item.h" #define BLK_AVG(blk1, blk2) ((blk1+blk2) >> 1) |