svn commit: r351023 - stable/11/sys/kern

Konstantin Belousov kib at FreeBSD.org
Wed Aug 14 09:53:30 UTC 2019


Author: kib
Date: Wed Aug 14 09:53:30 2019
New Revision: 351023
URL: https://svnweb.freebsd.org/changeset/base/351023

Log:
  MFC r350757:
  Update comment explaining create_init().

Modified:
  stable/11/sys/kern/init_main.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/kern/init_main.c
==============================================================================
--- stable/11/sys/kern/init_main.c	Wed Aug 14 09:51:44 2019	(r351022)
+++ stable/11/sys/kern/init_main.c	Wed Aug 14 09:53:30 2019	(r351023)
@@ -841,11 +841,9 @@ start_init(void *dummy)
 }
 
 /*
- * Like kproc_create(), but runs in it's own address space.
- * We do this early to reserve pid 1.
- *
- * Note special case - do not make it runnable yet.  Other work
- * in progress will change this more.
+ * Like kproc_create(), but runs in its own address space.  We do this
+ * early to reserve pid 1.  Note special case - do not make it
+ * runnable yet, init execution is started when userspace can be served.
  */
 static void
 create_init(const void *udata __unused)


More information about the svn-src-all mailing list