forked from luck/tmp_suning_uos_patched
cb7181ff4b
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> Reviewed-by: Christoph Hellwig <hch@lst.de>
16 lines
272 B
Makefile
16 lines
272 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-newer
|
|
#
|
|
# Copyright (c) 2019 Oracle.
|
|
# All Rights Reserved.
|
|
#
|
|
obj-$(CONFIG_FS_IOMAP) += iomap.o
|
|
|
|
iomap-y += \
|
|
apply.o \
|
|
buffered-io.o \
|
|
direct-io.o \
|
|
fiemap.o \
|
|
seek.o
|
|
|
|
iomap-$(CONFIG_SWAP) += swapfile.o
|