diff options
author | Dave Chinner <dchinner@redhat.com> | 2013-10-15 09:17:51 +1100 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-10-23 14:21:40 -0500 |
commit | 5706278758e334bf6a15f57c18dc16df19c83957 (patch) | |
tree | c7f70f138ac46b11432f3598c85244bf862194f8 /fs/xfs/xfs_iops.c | |
parent | 70a9883c5f34b215b8a77665cefd0398edc5a9ef (diff) | |
download | blackbird-obmc-linux-5706278758e334bf6a15f57c18dc16df19c83957.tar.gz blackbird-obmc-linux-5706278758e334bf6a15f57c18dc16df19c83957.zip |
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_iops.c')
-rw-r--r-- | fs/xfs/xfs_iops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_iops.c b/fs/xfs/xfs_iops.c index 24fe333b8c41..d046dc8c1925 100644 --- a/fs/xfs/xfs_iops.c +++ b/fs/xfs/xfs_iops.c @@ -27,6 +27,7 @@ #include "xfs_alloc.h" #include "xfs_quota.h" #include "xfs_mount.h" +#include "xfs_da_format.h" #include "xfs_bmap_btree.h" #include "xfs_dinode.h" #include "xfs_inode.h" @@ -42,7 +43,6 @@ #include "xfs_icache.h" #include "xfs_symlink.h" #include "xfs_da_btree.h" -#include "xfs_dir2_format.h" #include "xfs_dir2_priv.h" #include <linux/capability.h> |