summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarrick J. Wong <darrick.wong@oracle.com>2019-07-15 10:51:47 -0700
committerDarrick J. Wong <darrick.wong@oracle.com>2019-07-15 10:57:32 -0700
commit80b7faaedf662a8d6d3276e287d7cb867fe5d2d3 (patch)
tree57dd912a7e64d5c70fd429ff63705f091283f04f
parentb2ad582992b21cc5dcdcb94aeecc9320c0a02b34 (diff)
iomap: move the main iteration code into a separate file
Move the main iteration code into a separate file so that we can group related functions in a single file instead of having a single enormous source file. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
-rw-r--r--fs/Makefile1
-rw-r--r--fs/iomap/Makefile1
-rw-r--r--fs/iomap/apply.c (renamed from fs/iomap.c)15
3 files changed, 1 insertions, 16 deletions
diff --git a/fs/Makefile b/fs/Makefile
index 8e61bdf9f330..d60089fd689b 100644
--- a/fs/Makefile
+++ b/fs/Makefile
@@ -52,7 +52,6 @@ obj-$(CONFIG_COREDUMP) += coredump.o
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
index 04cbeed44248..d8112f386415 100644
--- a/fs/iomap/Makefile
+++ b/fs/iomap/Makefile
@@ -9,6 +9,7 @@ ccflags-y += -I $(srctree)/$(src)/..
obj-$(CONFIG_FS_IOMAP) += iomap.o
iomap-y += \
+ apply.o \
direct-io.o \
buffered-io.o \
fiemap.o \
diff --git a/fs/iomap.c b/fs/iomap/apply.c
index 88a3144351a9..844e56612dd2 100644
--- a/fs/iomap.c
+++ b/fs/iomap/apply.c
@@ -7,21 +7,6 @@
#include <linux/compiler.h>
#include <linux/fs.h>
#include <linux/iomap.h>
-#include <linux/uaccess.h>
-#include <linux/gfp.h>
-#include <linux/migrate.h>
-#include <linux/mm.h>
-#include <linux/mm_inline.h>
-#include <linux/swap.h>
-#include <linux/pagemap.h>
-#include <linux/pagevec.h>
-#include <linux/file.h>
-#include <linux/uio.h>
-#include <linux/backing-dev.h>
-#include <linux/buffer_head.h>
-#include <linux/task_io_accounting_ops.h>
-#include <linux/dax.h>
-#include <linux/sched/signal.h>
#include "internal.h"