mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
8d04fbe71f
Now that we've moved iomap to the iterator model, rename this file to be in sync with the functions contained inside of it. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Dave Chinner <dchinner@redhat.com>
17 lines
351 B
Makefile
17 lines
351 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
# Copyright (c) 2019 Oracle.
|
|
# All Rights Reserved.
|
|
#
|
|
|
|
ccflags-y += -I $(srctree)/$(src) # needed for trace events
|
|
|
|
obj-$(CONFIG_FS_IOMAP) += iomap.o
|
|
|
|
iomap-y += trace.o \
|
|
buffered-io.o \
|
|
direct-io.o \
|
|
fiemap.o \
|
|
iter.o \
|
|
seek.o
|
|
iomap-$(CONFIG_SWAP) += swapfile.o
|