diff options
Diffstat (limited to 'src/shutdown')
-rw-r--r-- | src/shutdown/shutdown.c | 2 | ||||
-rw-r--r-- | src/shutdown/umount.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/shutdown/shutdown.c b/src/shutdown/shutdown.c index 25a538df50..35b2c2aa46 100644 --- a/src/shutdown/shutdown.c +++ b/src/shutdown/shutdown.c @@ -219,7 +219,7 @@ static void sync_with_progress(void) { BLOCK_SIGNALS(SIGCHLD); - /* Due to the possiblity of the sync operation hanging, we fork a child process and monitor the progress. If + /* Due to the possibility of the sync operation hanging, we fork a child process and monitor the progress. If * the timeout lapses, the assumption is that that particular sync stalled. */ r = asynchronous_sync(&pid); diff --git a/src/shutdown/umount.c b/src/shutdown/umount.c index 6afa512bff..e30b475c75 100644 --- a/src/shutdown/umount.c +++ b/src/shutdown/umount.c @@ -390,7 +390,7 @@ static int remount_with_timeout(MountPoint *m, int umount_log_level) { assert(m); - /* Due to the possiblity of a remount operation hanging, we + /* Due to the possibility of a remount operation hanging, we * fork a child process and set a timeout. If the timeout * lapses, the assumption is that that particular remount * failed. */ @@ -428,7 +428,7 @@ static int umount_with_timeout(MountPoint *m, int umount_log_level) { assert(m); - /* Due to the possiblity of a umount operation hanging, we + /* Due to the possibility of a umount operation hanging, we * fork a child process and set a timeout. If the timeout * lapses, the assumption is that that particular umount * failed. */ @@ -486,7 +486,7 @@ static int mount_points_list_umount(MountPoint **head, bool *changed, int umount * underlying mount. There's nothing we can do * about it for the general case, but we can * do something about it if it is aliased - * somehwere else via a bind mount. If we + * somewhere else via a bind mount. If we * explicitly remount the super block of that * alias read-only we hence should be * relatively safe regarding keeping a dirty fs |