This commit is contained in:
Yu Watanabe 2022-03-29 01:21:51 +09:00
parent 0c6e746b86
commit 288bd40620
3 changed files with 3 additions and 3 deletions

2
TODO
View file

@ -1352,7 +1352,7 @@ Features:
- on login, if we can't fallocate initially, but rebalance is on, then allow
login in discard mode, then immediately rebalance, then turn off discard
- extend user records with optional "bulk" data. Specifically, a user
avatar/photo or so. This data should be stored along wiht the user record,
avatar/photo or so. This data should be stored along with the user record,
but probably shouldn't be part of the record itself, since it might be
large.

View file

@ -2644,7 +2644,7 @@ static int manager_dispatch_sigchld(sd_event_source *source, void *userdata) {
* We only do this for the cgroup the PID belonged to. */
(void) unit_check_oom(u1);
/* We check if systemd-oomd perfomed a kill so that we log and notify appropriately */
/* We check if systemd-oomd performed a kill so that we log and notify appropriately */
(void) unit_check_oomd_kill(u1);
manager_invoke_sigchld_event(m, u1, &si);

View file

@ -1939,7 +1939,7 @@ static void schedule_post_change(JournalFile *f) {
assert_se(e = sd_event_source_get_event(f->post_change_timer));
/* If we are aleady going down, post the change immediately. */
/* If we are already going down, post the change immediately. */
if (IN_SET(sd_event_get_state(e), SD_EVENT_EXITING, SD_EVENT_FINISHED))
goto fail;