diff options
author | Dave Chinner <dchinner@redhat.com> | 2013-10-14 18:17:56 -0400 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-10-23 18:16:32 -0400 |
commit | c963c6193a5adaec58044e238ef23516d04e5a74 (patch) | |
tree | 0e785abb7cafe10276ee8d46ecfbde5b409ba63f /fs/xfs/Makefile | |
parent | a4fbe6ab1e7abecf42b75e9c73701ed33b4ab03b (diff) |
xfs: split xfs_rtalloc.c for userspace sanity
xfs_rtalloc.c is partially shared with userspace. Split the file up
into two parts - one that is kernel private and the other which is
wholly shared with userspace.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/Makefile')
-rw-r--r-- | fs/xfs/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/fs/xfs/Makefile b/fs/xfs/Makefile index 08f11bbf56ae..33a69fabfd83 100644 --- a/fs/xfs/Makefile +++ b/fs/xfs/Makefile | |||
@@ -104,7 +104,11 @@ xfs-$(CONFIG_XFS_QUOTA) += xfs_dquot.o \ | |||
104 | xfs_qm_bhv.o \ | 104 | xfs_qm_bhv.o \ |
105 | xfs_qm.o \ | 105 | xfs_qm.o \ |
106 | xfs_quotaops.o | 106 | xfs_quotaops.o |
107 | xfs-$(CONFIG_XFS_RT) += xfs_rtalloc.o | 107 | |
108 | # xfs_rtbitmap is shared with libxfs | ||
109 | xfs-$(CONFIG_XFS_RT) += xfs_rtalloc.o \ | ||
110 | xfs_rtbitmap.o | ||
111 | |||
108 | xfs-$(CONFIG_XFS_POSIX_ACL) += xfs_acl.o | 112 | xfs-$(CONFIG_XFS_POSIX_ACL) += xfs_acl.o |
109 | xfs-$(CONFIG_PROC_FS) += xfs_stats.o | 113 | xfs-$(CONFIG_PROC_FS) += xfs_stats.o |
110 | xfs-$(CONFIG_SYSCTL) += xfs_sysctl.o | 114 | xfs-$(CONFIG_SYSCTL) += xfs_sysctl.o |