Merge "sched/walt: append carriage return to not_preferred output"

This commit is contained in:
qctecmdr 2022-11-02 21:55:02 -07:00 committed by Gerrit - the friendly Code Review server
commit 749d60cba7

View File

@ -402,6 +402,7 @@ static ssize_t show_not_preferred(const struct cluster_data *state, char *buf)
count += scnprintf(buf + count, PAGE_SIZE - count,
"%u ", c->not_preferred);
}
count += scnprintf(buf + count, PAGE_SIZE - count, "\n");
spin_unlock_irqrestore(&state_lock, flags);
return count;