svn commit: r301040 - head/sys/kern

Edward Tomasz Napierala trasz at FreeBSD.org
Tue May 31 15:27:34 UTC 2016


Author: trasz
Date: Tue May 31 15:27:33 2016
New Revision: 301040
URL: https://svnweb.freebsd.org/changeset/base/301040

Log:
  Cosmetics - add missing space after ellipses in shutdown messages.
  
  MFC after:	1 month
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/kern/kern_shutdown.c
  head/sys/kern/vfs_subr.c

Modified: head/sys/kern/kern_shutdown.c
==============================================================================
--- head/sys/kern/kern_shutdown.c	Tue May 31 15:05:50 2016	(r301039)
+++ head/sys/kern/kern_shutdown.c	Tue May 31 15:27:33 2016	(r301040)
@@ -804,7 +804,7 @@ kproc_shutdown(void *arg, int howto)
 		return;
 
 	p = (struct proc *)arg;
-	printf("Waiting (max %d seconds) for system process `%s' to stop...",
+	printf("Waiting (max %d seconds) for system process `%s' to stop... ",
 	    kproc_shutdown_wait, p->p_comm);
 	error = kproc_suspend(p, kproc_shutdown_wait * hz);
 
@@ -824,7 +824,7 @@ kthread_shutdown(void *arg, int howto)
 		return;
 
 	td = (struct thread *)arg;
-	printf("Waiting (max %d seconds) for system thread `%s' to stop...",
+	printf("Waiting (max %d seconds) for system thread `%s' to stop... ",
 	    kproc_shutdown_wait, td->td_name);
 	error = kthread_suspend(td, kproc_shutdown_wait * hz);
 

Modified: head/sys/kern/vfs_subr.c
==============================================================================
--- head/sys/kern/vfs_subr.c	Tue May 31 15:05:50 2016	(r301039)
+++ head/sys/kern/vfs_subr.c	Tue May 31 15:27:33 2016	(r301040)
@@ -2103,7 +2103,7 @@ sched_sync(void)
 		if (syncer_state != SYNCER_RUNNING &&
 		    starttime != time_uptime) {
 			if (first_printf) {
-				printf("\nSyncing disks, vnodes remaining...");
+				printf("\nSyncing disks, vnodes remaining... ");
 				first_printf = 0;
 			}
 			printf("%d ", net_worklist_len);


More information about the svn-src-head mailing list