mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
Move bio logic in the buffered io code into its own file and remove CONFIG_BLOCK gating for iomap read/readahead. [1] https://lore.kernel.org/linux-fsdevel/aMK2GuumUf93ep99@infradead.org/ Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Joanne Koong <joannelkoong@gmail.com> Reviewed-by: Darrick J. Wong <djwong@kernel.org> Signed-off-by: Christian Brauner <brauner@kernel.org>
20 lines
389 B
Makefile
20 lines
389 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
# Copyright (c) 2019 Oracle.
|
|
# All Rights Reserved.
|
|
#
|
|
|
|
ccflags-y += -I $(src) # needed for trace events
|
|
|
|
obj-$(CONFIG_FS_IOMAP) += iomap.o
|
|
|
|
iomap-y += trace.o \
|
|
iter.o \
|
|
buffered-io.o
|
|
iomap-$(CONFIG_BLOCK) += direct-io.o \
|
|
ioend.o \
|
|
fiemap.o \
|
|
seek.o \
|
|
bio.o
|
|
iomap-$(CONFIG_SWAP) += swapfile.o
|