diff options
| author | Dave Chinner <[email protected]> | 2013-10-22 23:36:05 +0000 |
|---|---|---|
| committer | Ben Myers <[email protected]> | 2013-10-23 19:11:30 +0000 |
| commit | 70a9883c5f34b215b8a77665cefd0398edc5a9ef (patch) | |
| tree | 482f6d16e0d4ca17a974320e07f0e1fa20bca334 /fs/xfs/xfs_rtalloc.c | |
| parent | xfs: fold xfs_change_file_space into xfs_ioc_space (diff) | |
| download | kernel-70a9883c5f34b215b8a77665cefd0398edc5a9ef.tar.gz kernel-70a9883c5f34b215b8a77665cefd0398edc5a9ef.zip | |
xfs: create a shared header file for format-related information
All of the buffer operations structures are needed to be exported
for xfs_db, so move them all to a common location rather than
spreading them all over the place. They are verifying the on-disk
format, so while xfs_format.h might be a good place, it is not part
of the on disk format.
Hence we need to create a new header file that we centralise these
related definitions. Start by moving the bffer operations
structures, and then also move all the other definitions that have
crept into xfs_log_format.h and xfs_format.h as there was no other
shared header file to put them in.
Signed-off-by: Dave Chinner <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Signed-off-by: Ben Myers <[email protected]>
Diffstat (limited to 'fs/xfs/xfs_rtalloc.c')
| -rw-r--r-- | fs/xfs/xfs_rtalloc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/xfs_rtalloc.c b/fs/xfs/xfs_rtalloc.c index 6f9e63c9fc26..6f63de303e8e 100644 --- a/fs/xfs/xfs_rtalloc.c +++ b/fs/xfs/xfs_rtalloc.c @@ -18,6 +18,7 @@ #include "xfs.h" #include "xfs_fs.h" #include "xfs_format.h" +#include "xfs_shared.h" #include "xfs_bit.h" #include "xfs_log.h" #include "xfs_trans.h" |
