2019-07-25 07:58:33 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
2019-07-15 15:50:57 +00:00
|
|
|
#
|
|
|
|
# Copyright (c) 2019 Oracle.
|
|
|
|
# All Rights Reserved.
|
|
|
|
#
|
2019-07-15 15:50:57 +00:00
|
|
|
|
2019-10-17 20:12:13 +00:00
|
|
|
ccflags-y += -I $(srctree)/$(src) # needed for trace events
|
|
|
|
|
|
|
|
obj-$(CONFIG_FS_IOMAP) += iomap.o
|
2019-07-15 15:50:58 +00:00
|
|
|
|
2019-10-17 20:12:13 +00:00
|
|
|
iomap-y += trace.o \
|
2021-11-29 10:22:02 +00:00
|
|
|
iter.o
|
|
|
|
iomap-$(CONFIG_BLOCK) += buffered-io.o \
|
2019-10-17 20:12:13 +00:00
|
|
|
direct-io.o \
|
|
|
|
fiemap.o \
|
|
|
|
seek.o
|
2019-07-15 15:50:57 +00:00
|
|
|
iomap-$(CONFIG_SWAP) += swapfile.o
|