https://source.android.com/security/bulletin/2019-11-01
CVE-2019-2213
CVE-2019-2214
CVE-2019-2215
CVE-2019-11833
BACKPORT: dm bufio: introduce a global cache replacement

This commit introduces a global cache replacement (instead of per-client
cleanup).

If one bufio client uses the cache heavily and another client is not using
it, we want to let the first client use most of the cache. The old
algorithm would partition the cache equally betwen the clients and that is
sub-optimal.

For cache replacement, we use the clock algorithm because it doesn't
require taking any lock when the buffer is accessed.

Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
(cherry picked from commit 6e913b28cd279212c4580dbd8b2cf9dcd4740cfb)

Change-Id: Iad25b7058d3da32ae07959a348fa75178ff9c860
Signed-off-by: Martijn Coenen <maco@android.com>
1 file changed