diff options
author | Dave Chinner <dchinner@redhat.com> | 2013-08-12 14:49:26 +0400 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-08-13 01:09:52 +0400 |
commit | 6ca1c9063d1952b20c61136e01e6a8987371616b (patch) | |
tree | a20a77fef2438674b52562f7e156cb5a9ea789d3 /fs/xfs/xfs_inode.c | |
parent | 9fbe24d95ea36205a71195b378a163aa829dfe40 (diff) | |
download | linux-6ca1c9063d1952b20c61136e01e6a8987371616b.tar.xz |
xfs: separate dquot on disk format definitions out of xfs_quota.h
The on disk format definitions of the on-disk dquot, log formats and
quota off log formats are all intertwined with other definitions for
quotas. Separate them out into their own header file so they can
easily be shared with userspace.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Mark Tinguely <tinguely@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_inode.c')
-rw-r--r-- | fs/xfs/xfs_inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c index bb262c25c8de..516a70a5a45d 100644 --- a/fs/xfs/xfs_inode.c +++ b/fs/xfs/xfs_inode.c @@ -19,7 +19,7 @@ #include "xfs.h" #include "xfs_fs.h" -#include "xfs_types.h" +#include "xfs_format.h" #include "xfs_log.h" #include "xfs_inum.h" #include "xfs_trans.h" |