diff options
author | Dave Chinner <dchinner@redhat.com> | 2012-04-29 10:39:43 +0000 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2012-05-14 16:20:55 -0500 |
commit | efc27b52594e322d4c94e379489fa3690bf74739 (patch) | |
tree | 02f154dd6b74b02cc07c2f7bae91d5b4b222b6cd /fs/xfs/Makefile | |
parent | 60a34607b26b60d6b5c5c928ede7fc84b0f06b85 (diff) | |
download | linux-exynos-efc27b52594e322d4c94e379489fa3690bf74739.tar.gz linux-exynos-efc27b52594e322d4c94e379489fa3690bf74739.tar.bz2 linux-exynos-efc27b52594e322d4c94e379489fa3690bf74739.zip |
xfs: move busy extent handling to it's own file
To make it easier to handle userspace code merges, move all the busy
extent handling out of the allocation code and into it's own file.
The userspace code does not need the busy extent code, so this
simplifies the merging of the kernel code into the userspace
xfsprogs library.
Because the busy extent code has been almost completely rewritten
over the past couple of years, also update the copyright on this new
file to include the authors that made all those changes.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
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/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/Makefile b/fs/xfs/Makefile index 0a9977983f92..ca9229ff8ac0 100644 --- a/fs/xfs/Makefile +++ b/fs/xfs/Makefile @@ -33,6 +33,7 @@ xfs-y += xfs_aops.o \ xfs_discard.o \ xfs_error.o \ xfs_export.o \ + xfs_extent_busy.o \ xfs_file.o \ xfs_filestream.o \ xfs_fsops.o \ |