Date: Tue, 15 Aug 2017 02:21:02 +0000 (UTC) From: Conrad Meyer <cem@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r322526 - head/sys/kern Message-ID: <201708150221.v7F2L2Xg089188@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cem Date: Tue Aug 15 02:21:02 2017 New Revision: 322526 URL: https://svnweb.freebsd.org/changeset/base/322526 Log: Fix a couple of comment typos No functional change. Submitted by: Anton Rang <anton.rang AT isilon.com> Sponsored by: Dell EMC Isilon Modified: head/sys/kern/kern_ktr.c head/sys/kern/subr_smp.c Modified: head/sys/kern/kern_ktr.c ============================================================================== --- head/sys/kern/kern_ktr.c Tue Aug 15 01:22:39 2017 (r322525) +++ head/sys/kern/kern_ktr.c Tue Aug 15 02:21:02 2017 (r322526) @@ -416,7 +416,7 @@ DB_SHOW_COMMAND(ktr, db_ktr_all) tstate.first = -1; db_ktr_verbose = 0; db_ktr_verbose |= (strchr(modif, 'v') != NULL) ? 2 : 0; - db_ktr_verbose |= (strchr(modif, 'V') != NULL) ? 1 : 0; /* just timestap please */ + db_ktr_verbose |= (strchr(modif, 'V') != NULL) ? 1 : 0; /* just timestamp please */ if (strchr(modif, 'a') != NULL) { db_disable_pager(); while (cncheckc() == -1) Modified: head/sys/kern/subr_smp.c ============================================================================== --- head/sys/kern/subr_smp.c Tue Aug 15 01:22:39 2017 (r322525) +++ head/sys/kern/subr_smp.c Tue Aug 15 02:21:02 2017 (r322526) @@ -823,7 +823,7 @@ smp_no_rendezvous_barrier(void *dummy) } /* - * Wait specified idle threads to switch once. This ensures that even + * Wait for specified idle threads to switch once. This ensures that even * preempted threads have cycled through the switch function once, * exiting their codepaths. This allows us to change global pointers * with no other synchronization.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708150221.v7F2L2Xg089188>