lmkd: Fix usage of ro.lmk.kill_heaviest_task property

lmkd should use ro.lmk.kill_heaviest_task property to select between
algorithms for victim selection. Set ro.lmk.kill_heaviest_task default
value to false in order to keep it compatible with previous versions
of lmkd (killing the heaviest task is a new mechanism).

Change-Id: I78d2dc79d9c54e636c26665605518d9c87b535b3
Signed-off-by: Suren Baghdasaryan <surenb@google.com>
This commit is contained in:
Suren Baghdasaryan 2018-04-13 11:49:54 -07:00
parent ff61afb002
commit 818b59b229
1 changed files with 3 additions and 5 deletions

View File

@ -788,10 +788,8 @@ static int find_and_kill_processes(enum vmpressure_level level,
struct proc *procp;
while (true) {
if (low_ram_device)
procp = proc_adj_lru(i);
else
procp = proc_get_heaviest(i);
procp = kill_heaviest_task ?
proc_get_heaviest(i) : proc_adj_lru(i);
if (!procp)
break;
@ -1202,7 +1200,7 @@ int main(int argc __unused, char **argv __unused) {
downgrade_pressure =
(int64_t)property_get_int32("ro.lmk.downgrade_pressure", 100);
kill_heaviest_task =
property_get_bool("ro.lmk.kill_heaviest_task", true);
property_get_bool("ro.lmk.kill_heaviest_task", false);
low_ram_device = property_get_bool("ro.config.low_ram", false);
kill_timeout_ms =
(unsigned long)property_get_int32("ro.lmk.kill_timeout_ms", 0);