lowmem-governor: Revert "Classify apps & optimize memory cgroup" 39/309739/2
authorUnsung Lee <unsung.lee@samsung.com>
Tue, 16 Apr 2024 07:12:58 +0000 (16:12 +0900)
committerUnsung Lee <unsung.lee@samsung.com>
Tue, 16 Apr 2024 07:23:49 +0000 (16:23 +0900)
Revert partial update among patch "Classify apps & optimize memory cgroup".
It changes the criterion for determining whether a process is app or not
based on it is managed by resourced as app rather than the oom score.

This approach is based on resourced (branch: tizen_6.0).

Change-Id: I3c9a4911b96c669f8abf8facf922112afbfd2a6b
Signed-off-by: Unsung Lee <unsung.lee@samsung.com>
src/resource-limiter/memory/lowmem.c

index e3af6fe..5aad04f 100644 (file)
@@ -735,7 +735,7 @@ static GArray *lowmem_get_task_info_proc()
                 * and pid has been already included in pai,
                 * skip to append.
                 */
-               if (oom_score_adj > OOMADJ_SU && oom_score_adj <= OOMADJ_APP_MAX)
+               if (find_app_info(pid))
                        continue;
 
                appid = (char *)g_hash_table_lookup(g_lmk_kill_exception_pid_list, &pid);