Fixes implementation of cache cleaning, it was implemented using outdated code which cleaned valid pages as well by mistake. The fix uses the original implementation from mm layer which was tweaked to zero pages after releasing them. Also it is now invoked only when there is HW encryption (meaning that cache is unencrypted) Change-Id: If713fd17a89be6d998c1a7ba86bee4c17d2bca0f Signed-off-by: Andrey Markovytch <andreym@codeaurora.org> Conflicts: fs/ecryptfs/caches_utils.c
10 lines
272 B
Makefile
10 lines
272 B
Makefile
#
|
|
# Makefile for the Linux eCryptfs
|
|
#
|
|
|
|
obj-$(CONFIG_ECRYPT_FS) += ecryptfs.o
|
|
|
|
ecryptfs-y := dentry.o file.o inode.o main.o super.o mmap.o read_write.o events.o \
|
|
crypto.o keystore.o kthread.o debug.o
|
|
|
|
ecryptfs-$(CONFIG_ECRYPT_FS_MESSAGING) += messaging.o miscdev.o
|