svn commit: r214440 - projects/ofed/head/sys/kern
Jeff Roberson
jeff at FreeBSD.org
Wed Oct 27 23:55:15 UTC 2010
Author: jeff
Date: Wed Oct 27 23:55:15 2010
New Revision: 214440
URL: http://svn.freebsd.org/changeset/base/214440
Log:
- Correct a terrible typo in IT_WAIT.
Spotted by: jmallett
Sponsored by: Isilon Systems, iX Systems, and Panasas.
Modified:
projects/ofed/head/sys/kern/kern_intr.c
Modified: projects/ofed/head/sys/kern/kern_intr.c
==============================================================================
--- projects/ofed/head/sys/kern/kern_intr.c Wed Oct 27 23:24:37 2010 (r214439)
+++ projects/ofed/head/sys/kern/kern_intr.c Wed Oct 27 23:55:15 2010 (r214440)
@@ -74,7 +74,7 @@ struct intr_thread {
/* Interrupt thread flags kept in it_flags */
#define IT_DEAD 0x000001 /* Thread is waiting to exit. */
-#define IT_WAIT 0x000001 /* Thread is waiting for completion. */
+#define IT_WAIT 0x000002 /* Thread is waiting for completion. */
struct intr_entropy {
struct thread *td;
More information about the svn-src-projects
mailing list