mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-09 23:34:42 +08:00
db074436f4
Move the direct IO 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>
14 lines
236 B
Makefile
14 lines
236 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 += \
|
|
direct-io.o \
|
|
fiemap.o \
|
|
seek.o
|
|
|
|
iomap-$(CONFIG_SWAP) += swapfile.o
|