1# SPDX-License-Identifier: GPL-2.0 2 3netfs-y := \ 4 buffered_read.o \ 5 buffered_write.o \ 6 direct_read.o \ 7 direct_write.o \ 8 io.o \ 9 iterator.o \ 10 locking.o \ 11 main.o \ 12 misc.o \ 13 objects.o \ 14 write_collect.o \ 15 write_issue.o 16 17netfs-$(CONFIG_NETFS_STATS) += stats.o 18 19netfs-$(CONFIG_FSCACHE) += \ 20 fscache_cache.o \ 21 fscache_cookie.o \ 22 fscache_io.o \ 23 fscache_main.o \ 24 fscache_volume.o 25 26ifeq ($(CONFIG_PROC_FS),y) 27netfs-$(CONFIG_FSCACHE) += fscache_proc.o 28endif 29netfs-$(CONFIG_FSCACHE_STATS) += fscache_stats.o 30 31obj-$(CONFIG_NETFS_SUPPORT) += netfs.o 32