diff options
author | Dave Chinner <dchinner@redhat.com> | 2013-10-14 18:17:51 -0400 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-10-23 15:21:40 -0400 |
commit | 5706278758e334bf6a15f57c18dc16df19c83957 (patch) | |
tree | c7f70f138ac46b11432f3598c85244bf862194f8 /fs/xfs/xfs_file.c | |
parent | 70a9883c5f34b215b8a77665cefd0398edc5a9ef (diff) |
xfs: unify directory/attribute format definitions
The on-disk format definitions for the directory and attribute
structures are spread across 3 header files right now, only one of
which is dedicated to defining on-disk structures and their
manipulation (xfs_dir2_format.h). Pull all the format definitions
into a single header file - xfs_da_format.h - and switch all the
code over to point at that.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Ben Myers <bpm@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_file.c')
-rw-r--r-- | fs/xfs/xfs_file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_file.c b/fs/xfs/xfs_file.c index 57d95b2f8692..cc22aa1b7b3b 100644 --- a/fs/xfs/xfs_file.c +++ b/fs/xfs/xfs_file.c | |||
@@ -23,6 +23,8 @@ | |||
23 | #include "xfs_ag.h" | 23 | #include "xfs_ag.h" |
24 | #include "xfs_trans.h" | 24 | #include "xfs_trans.h" |
25 | #include "xfs_mount.h" | 25 | #include "xfs_mount.h" |
26 | #include "xfs_da_format.h" | ||
27 | #include "xfs_da_btree.h" | ||
26 | #include "xfs_bmap_btree.h" | 28 | #include "xfs_bmap_btree.h" |
27 | #include "xfs_alloc.h" | 29 | #include "xfs_alloc.h" |
28 | #include "xfs_dinode.h" | 30 | #include "xfs_dinode.h" |
@@ -31,8 +33,6 @@ | |||
31 | #include "xfs_bmap.h" | 33 | #include "xfs_bmap.h" |
32 | #include "xfs_bmap_util.h" | 34 | #include "xfs_bmap_util.h" |
33 | #include "xfs_error.h" | 35 | #include "xfs_error.h" |
34 | #include "xfs_da_btree.h" | ||
35 | #include "xfs_dir2_format.h" | ||
36 | #include "xfs_dir2.h" | 36 | #include "xfs_dir2.h" |
37 | #include "xfs_dir2_priv.h" | 37 | #include "xfs_dir2_priv.h" |
38 | #include "xfs_ioctl.h" | 38 | #include "xfs_ioctl.h" |