svn commit: r303590 - stable/11/sys/sys

Konstantin Belousov kib at FreeBSD.org
Sun Jul 31 15:13:52 UTC 2016


Author: kib
Date: Sun Jul 31 15:13:51 2016
New Revision: 303590
URL: https://svnweb.freebsd.org/changeset/base/303590

Log:
  MFC r303424:
  Fix typo in comment.
  
  Approved by:	re (gjb)

Modified:
  stable/11/sys/sys/proc.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/sys/proc.h
==============================================================================
--- stable/11/sys/sys/proc.h	Sun Jul 31 15:03:31 2016	(r303589)
+++ stable/11/sys/sys/proc.h	Sun Jul 31 15:13:51 2016	(r303590)
@@ -739,7 +739,7 @@ struct proc {
 #define	SW_TYPE_MASK		0xff	/* First 8 bits are switch type */
 #define	SWT_NONE		0	/* Unspecified switch. */
 #define	SWT_PREEMPT		1	/* Switching due to preemption. */
-#define	SWT_OWEPREEMPT		2	/* Switching due to opepreempt. */
+#define	SWT_OWEPREEMPT		2	/* Switching due to owepreempt. */
 #define	SWT_TURNSTILE		3	/* Turnstile contention. */
 #define	SWT_SLEEPQ		4	/* Sleepq wait. */
 #define	SWT_SLEEPQTIMO		5	/* Sleepq timeout wait. */


More information about the svn-src-stable mailing list