svn commit: r238815 - projects/calloutng/sys/sys

Davide Italiano davide at FreeBSD.org
Thu Jul 26 18:15:48 UTC 2012


Author: davide
Date: Thu Jul 26 18:15:48 2012
New Revision: 238815
URL: http://svn.freebsd.org/changeset/base/238815

Log:
  Fix a braino.

Modified:
  projects/calloutng/sys/sys/callout.h

Modified: projects/calloutng/sys/sys/callout.h
==============================================================================
--- projects/calloutng/sys/sys/callout.h	Thu Jul 26 18:13:21 2012	(r238814)
+++ projects/calloutng/sys/sys/callout.h	Thu Jul 26 18:15:48 2012	(r238815)
@@ -48,7 +48,7 @@
 #define	CALLOUT_SHAREDLOCK	0x0020 /* callout lock held in shared mode */
 #define	CALLOUT_DFRMIGRATION	0x0040 /* callout in deferred migration mode */
 #define	CALLOUT_PROCESSED	0x0080 /* callout in wheel or processing list? */
-#define	CALLOUT_DIRECT 		0x1000 /* allow exec from hw int context */
+#define	CALLOUT_DIRECT 		0x0100 /* allow exec from hw int context */
 
 #define	C_DIRECT_EXEC		0x0001 /* direct execution of callout */
 #define	C_P1S			0x0002 /* fields related to precision */ 


More information about the svn-src-projects mailing list