Applying clang-format suggestions in PROCPRIO cmd

Updating the cmd_procprio function with the clang-format suggestions. No logic changes.

Test: m
Bug: 325525024
Change-Id: Id6c1feb717259406d953e5e2a174398bccf65d23
Signed-off-by: Carlos Galo <carlosgalo@google.com>
This commit is contained in:
Carlos Galo 2024-05-02 20:58:57 +00:00
parent 7da353fb00
commit 8b5a67d35a
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;
} }