mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 02:21:16 +00:00
9b3f26c911
The attached patch makes the kAFS filesystem in fs/afs/ use FS-Cache, and through it any attached caches. The kAFS filesystem will use caching automatically if it's available. Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: Steve Dickson <steved@redhat.com> Acked-by: Trond Myklebust <Trond.Myklebust@netapp.com> Acked-by: Al Viro <viro@zeniv.linux.org.uk> Tested-by: Daire Byrne <Daire.Byrne@framestore.com>
32 lines
416 B
Makefile
32 lines
416 B
Makefile
#
|
|
# Makefile for Red Hat Linux AFS client.
|
|
#
|
|
|
|
afs-cache-$(CONFIG_AFS_FSCACHE) := cache.o
|
|
|
|
kafs-objs := \
|
|
$(afs-cache-y) \
|
|
callback.o \
|
|
cell.o \
|
|
cmservice.o \
|
|
dir.o \
|
|
file.o \
|
|
flock.o \
|
|
fsclient.o \
|
|
inode.o \
|
|
main.o \
|
|
misc.o \
|
|
mntpt.o \
|
|
proc.o \
|
|
rxrpc.o \
|
|
security.o \
|
|
server.o \
|
|
super.o \
|
|
netdevices.o \
|
|
vlclient.o \
|
|
vlocation.o \
|
|
vnode.o \
|
|
volume.o \
|
|
write.o
|
|
|
|
obj-$(CONFIG_AFS_FS) := kafs.o
|