svn commit: r350757 - head/sys/kern

Konstantin Belousov kib at FreeBSD.org
Thu Aug 8 16:42:54 UTC 2019


Author: kib
Date: Thu Aug  8 16:42:53 2019
New Revision: 350757
URL: https://svnweb.freebsd.org/changeset/base/350757

Log:
  Update comment explaining create_init().
  
  Sponsored by:	The FreeBSD Foundation
  MFC after:	3 days

Modified:
  head/sys/kern/init_main.c

Modified: head/sys/kern/init_main.c
==============================================================================
--- head/sys/kern/init_main.c	Thu Aug  8 16:37:32 2019	(r350756)
+++ head/sys/kern/init_main.c	Thu Aug  8 16:42:53 2019	(r350757)
@@ -797,11 +797,9 @@ start_init(void *dummy)
 }
 
 /*
- * 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.  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