mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
58f386a73f
Remove the object list procfile from fscache as objects will become entirely internal to the cache. Signed-off-by: David Howells <dhowells@redhat.com> Reviewed-by: Jeff Layton <jlayton@redhat.com> cc: linux-cachefs@redhat.com Link: https://lore.kernel.org/r/162431198332.2908479.5847286163455099669.stgit@warthog.procyon.org.uk/
21 lines
316 B
Makefile
21 lines
316 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for general filesystem caching code
|
|
#
|
|
|
|
fscache-y := \
|
|
cache.o \
|
|
cookie.o \
|
|
fsdef.o \
|
|
io.o \
|
|
main.o \
|
|
netfs.o \
|
|
object.o \
|
|
operation.o \
|
|
page.o
|
|
|
|
fscache-$(CONFIG_PROC_FS) += proc.o
|
|
fscache-$(CONFIG_FSCACHE_STATS) += stats.o
|
|
|
|
obj-$(CONFIG_FSCACHE) := fscache.o
|