diff options
author | Dan McDonald <danmcd@joyent.com> | 2022-03-15 12:07:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-15 12:07:15 -0400 |
commit | 83decd22b44019b0fe369224fb19e1ef21263ab6 (patch) | |
tree | 0bbbaea9d4231f77a406362904280d6ba53e1d55 /usr/src/uts/common/os/exit.c | |
parent | ad491f11d9af43fd3f0d6159c9e08112de475a54 (diff) | |
download | illumos-joyent-83decd22b44019b0fe369224fb19e1ef21263ab6.tar.gz |
OS-8361 IPD 4 (man page renumbering) tracking issue
Reviewed by: Brian Bennett <brian.bennett@joyent.com>
Approved by: Brian Bennett <brian.bennett@joyent.com>
Diffstat (limited to 'usr/src/uts/common/os/exit.c')
-rw-r--r-- | usr/src/uts/common/os/exit.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/usr/src/uts/common/os/exit.c b/usr/src/uts/common/os/exit.c index c400c774d8..7ccf9b3221 100644 --- a/usr/src/uts/common/os/exit.c +++ b/usr/src/uts/common/os/exit.c @@ -191,11 +191,11 @@ restart_init(int what, int why) * zone) know that init has failed and will be restarted. */ zcmn_err(p->p_zone->zone_id, CE_WARN, - "init(1M) %s: restarting automatically", + "init(8) %s: restarting automatically", exit_reason(reason_buf, sizeof (reason_buf), what, why)); if (!INGLOBALZONE(p)) { - cmn_err(CE_WARN, "init(1M) for zone %s (pid %d) %s: " + cmn_err(CE_WARN, "init(8) for zone %s (pid %d) %s: " "restarting automatically", p->p_zone->zone_name, p->p_pid, reason_buf); } @@ -210,7 +210,7 @@ restart_init(int what, int why) /* * Grab p_lock and begin clearing miscellaneous global process - * state that needs to be reset before we exec the new init(1M). + * state that needs to be reset before we exec the new init(8). */ mutex_enter(&p->p_lock); @@ -310,7 +310,7 @@ restart_init(int what, int why) restart_init_notify(p->p_zone); /* - * Now exec() the new init(1M) on top of the current process. If we + * Now exec() the new init(8) on top of the current process. If we * succeed, the caller will treat this like a successful system call. * If we fail, we issue messages and the caller will proceed with exit. */ @@ -320,11 +320,11 @@ restart_init(int what, int why) return (0); zcmn_err(p->p_zone->zone_id, CE_WARN, - "failed to restart init(1M) (err=%d): system reboot required", err); + "failed to restart init(8) (err=%d): system reboot required", err); if (!INGLOBALZONE(p)) { - cmn_err(CE_WARN, "failed to restart init(1M) for zone %s " - "(pid %d, err=%d): zoneadm(1M) boot required", + cmn_err(CE_WARN, "failed to restart init(8) for zone %s " + "(pid %d, err=%d): zoneadm(8) boot required", p->p_zone->zone_name, p->p_pid, err); } |