svn commit: r214440 - projects/ofed/head/sys/kern

[ Available lists | Index of svn-src-projects | Month of Oct 2010 | Week of 27 Oct 2010 | Raw email | View thread | Wrap long lines | Reply | Tag ]
From
Jeff Roberson <jeff@FreeBSD.org>
Date
27 Oct 2010 23:55:15
Subject
svn commit: r214440 - projects/ofed/head/sys/kern
Message-ID
201010272355.o9RNtFOq046397@svn.freebsd.org


[ Hide this part ]
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;

Elapsed time: 0.264 seconds