Applying clang-format suggestions in PROCPRIO cmd am: 8b5a67d35a

Original change: https://android-review.googlesource.com/c/platform/system/memory/lmkd/+/3073186

Change-Id: I6fa4416ef3df2d7c05abe12a9867994f9cf6adf7
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Carlos Galo 2024-05-03 17:31:45 +00:00 committed by Automerger Merge Worker
commit a0e25cea31
1 changed files with 5 additions and 5 deletions

View File

@ -1228,8 +1228,7 @@ static void cmd_procprio(LMKD_CTRL_PACKET packet, int field_count, struct ucred*
lmkd_pack_get_procprio(packet, field_count, &params); lmkd_pack_get_procprio(packet, field_count, &params);
if (params.oomadj < OOM_SCORE_ADJ_MIN || if (params.oomadj < OOM_SCORE_ADJ_MIN || params.oomadj > OOM_SCORE_ADJ_MAX) {
params.oomadj > OOM_SCORE_ADJ_MAX) {
ALOGE("Invalid PROCPRIO oomadj argument %d", params.oomadj); ALOGE("Invalid PROCPRIO oomadj argument %d", params.oomadj);
return; return;
} }
@ -1243,7 +1242,8 @@ static void cmd_procprio(LMKD_CTRL_PACKET packet, int field_count, struct ucred*
if (read_proc_status(params.pid, buf, sizeof(buf))) { if (read_proc_status(params.pid, buf, sizeof(buf))) {
if (parse_status_tag(buf, PROC_STATUS_TGID_FIELD, &tgid) && tgid != params.pid) { if (parse_status_tag(buf, PROC_STATUS_TGID_FIELD, &tgid) && tgid != params.pid) {
ALOGE("Attempt to register a task that is not a thread group leader " ALOGE("Attempt to register a task that is not a thread group leader "
"(tid %d, tgid %" PRId64 ")", params.pid, tgid); "(tid %d, tgid %" PRId64 ")",
params.pid, tgid);
return; return;
} }
} }
@ -1254,8 +1254,8 @@ static void cmd_procprio(LMKD_CTRL_PACKET packet, int field_count, struct ucred*
snprintf(path, sizeof(path), "/proc/%d/oom_score_adj", params.pid); snprintf(path, sizeof(path), "/proc/%d/oom_score_adj", params.pid);
snprintf(val, sizeof(val), "%d", params.oomadj); snprintf(val, sizeof(val), "%d", params.oomadj);
if (!writefilestring(path, val, false)) { if (!writefilestring(path, val, false)) {
ALOGW("Failed to open %s; errno=%d: process %d might have been killed", ALOGW("Failed to open %s; errno=%d: process %d might have been killed", path, errno,
path, errno, params.pid); params.pid);
/* If this file does not exist the process is dead. */ /* If this file does not exist the process is dead. */
return; return;
} }