summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrick J. Wong2019-07-15 17:50:57 +0200
committerDarrick J. Wong2019-07-15 17:50:57 +0200
commit1c230208f53de479352cdb7fa2f851005df7cdc9 (patch)
treec192d53730880c648a7cc5e52db4203b9c0aeedc
parentMerge tag 'for-linus-hmm' of git://git.kernel.org/pub/scm/linux/kernel/git/rd... (diff)
downloadkernel-qcow2-linux-1c230208f53de479352cdb7fa2f851005df7cdc9.tar.gz
kernel-qcow2-linux-1c230208f53de479352cdb7fa2f851005df7cdc9.tar.xz
kernel-qcow2-linux-1c230208f53de479352cdb7fa2f851005df7cdc9.zip
iomap: start moving code to fs/iomap/
Create the build infrastructure we need to start migrating iomap code to fs/iomap/ from fs/iomap.c. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Christoph Hellwig <hch@lst.de>
-rw-r--r--MAINTAINERS1
-rw-r--r--fs/Makefile1
-rw-r--r--fs/iomap/Makefile5
3 files changed, 7 insertions, 0 deletions
diff --git a/MAINTAINERS b/MAINTAINERS
index f5533d1bda2e..1086ac7b0f05 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -8362,6 +8362,7 @@ L: linux-fsdevel@vger.kernel.org
T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
S: Supported
F: fs/iomap.c
+F: fs/iomap/
F: include/linux/iomap.h
IOMMU DRIVERS
diff --git a/fs/Makefile b/fs/Makefile
index c9aea23aba56..8e61bdf9f330 100644
--- a/fs/Makefile
+++ b/fs/Makefile
@@ -53,6 +53,7 @@ obj-$(CONFIG_SYSCTL) += drop_caches.o
obj-$(CONFIG_FHANDLE) += fhandle.o
obj-$(CONFIG_FS_IOMAP) += iomap.o
+obj-y += iomap/
obj-y += quota/
diff --git a/fs/iomap/Makefile b/fs/iomap/Makefile
new file mode 100644
index 000000000000..de5a1f914b2c
--- /dev/null
+++ b/fs/iomap/Makefile
@@ -0,0 +1,5 @@
+# SPDX-License-Identifier: GPL-2.0-or-newer
+#
+# Copyright (c) 2019 Oracle.
+# All Rights Reserved.
+#