summaryrefslogtreecommitdiffstats
path: root/fs/xfs/Makefile
diff options
context:
space:
mode:
authorDave Chinner <dchinner@redhat.com>2013-08-12 06:49:32 -0400
committerBen Myers <bpm@sgi.com>2013-08-12 17:36:16 -0400
commit7fd36c4418ee86712db6871ac95ab23743224bff (patch)
tree8f449f4eba8c31a16362e8640089489aa7579eff /fs/xfs/Makefile
parentd386b32b553ce145fb40f0d9360b6e5a79b5a80c (diff)
xfs: split out transaction reservation code
The transaction reservation size calculations is used by both kernel and userspace, but most of the transaction code in xfs_trans.c is kernel specific. Split all the transaction reservation code out into it's own files to make sharing with userspace simpler. This just leaves kernel-only definitions in xfs_trans.h, so it doesn't need to be shared with userspace anymore, either. 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/Makefile')
-rw-r--r--fs/xfs/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/xfs/Makefile b/fs/xfs/Makefile
index 4a4508023a3c..dc72b6ba109c 100644
--- a/fs/xfs/Makefile
+++ b/fs/xfs/Makefile
@@ -47,6 +47,7 @@ xfs-y += xfs_aops.o \
47 xfs_mru_cache.o \ 47 xfs_mru_cache.o \
48 xfs_rename.o \ 48 xfs_rename.o \
49 xfs_super.o \ 49 xfs_super.o \
50 xfs_trans.o \
50 xfs_utils.o \ 51 xfs_utils.o \
51 xfs_vnodeops.o \ 52 xfs_vnodeops.o \
52 xfs_xattr.o \ 53 xfs_xattr.o \
@@ -76,7 +77,7 @@ xfs-y += xfs_alloc.o \
76 xfs_log_recover.o \ 77 xfs_log_recover.o \
77 xfs_mount.o \ 78 xfs_mount.o \
78 xfs_symlink.o \ 79 xfs_symlink.o \
79 xfs_trans.o 80 xfs_trans_resv.o
80 81
81# low-level transaction/log code 82# low-level transaction/log code
82xfs-y += xfs_log.o \ 83xfs-y += xfs_log.o \