From b706be23b495ad8aed1cefdcf7cfdece305f8ed1 Mon Sep 17 00:00:00 2001
From: Konstantin Belousov <kib@FreeBSD.org>
Date: Thu, 8 Aug 2019 16:42:53 +0000
Subject: [PATCH] Update comment explaining create_init().

Sponsored by:	The FreeBSD Foundation
MFC after:	3 days
---
 sys/kern/init_main.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c
index 6a18850f1107..8758c55d965c 100644
--- a/sys/kern/init_main.c
+++ b/sys/kern/init_main.c
@@ -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)