diff options
author | Dave Chinner <dchinner@redhat.com> | 2012-04-23 07:58:58 +0200 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2012-05-14 23:20:54 +0200 |
commit | 60a34607b26b60d6b5c5c928ede7fc84b0f06b85 (patch) | |
tree | 5f6b7570d81f6d3ed82ca34f1645f14d23ce6893 /fs/xfs/xfs_rtalloc.c | |
parent | xfs: use iolock on XFS_IOC_ALLOCSP calls (diff) | |
download | linux-60a34607b26b60d6b5c5c928ede7fc84b0f06b85.tar.xz linux-60a34607b26b60d6b5c5c928ede7fc84b0f06b85.zip |
xfs: move xfsagino_t to xfs_types.h
Untangle the header file includes a bit by moving the definition of
xfs_agino_t to xfs_types.h. This removes the dependency that xfs_ag.h has on
xfs_inum.h, meaning we don't need to include xfs_inum.h everywhere we include
xfs_ag.h.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Mark Tinguely <tinguely@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_rtalloc.c')
-rw-r--r-- | fs/xfs/xfs_rtalloc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/xfs/xfs_rtalloc.c b/fs/xfs/xfs_rtalloc.c index 7434d3fd483a..b6ef74dd7417 100644 --- a/fs/xfs/xfs_rtalloc.c +++ b/fs/xfs/xfs_rtalloc.c @@ -20,7 +20,6 @@ #include "xfs_types.h" #include "xfs_bit.h" #include "xfs_log.h" -#include "xfs_inum.h" #include "xfs_trans.h" #include "xfs_sb.h" #include "xfs_ag.h" |