PERFORCE change 97133 for review

John Birrell jb at FreeBSD.org
Sun May 14 06:23:20 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=97133

Change 97133 by jb at jb_freebsd2 on 2006/05/14 06:23:05

	Re-enable the enable/disable of interrupts. This was not the cause of
	the lockup I was seeing.

Affected files ...

.. //depot/projects/dtrace/src/sys/cddl/i386/cyclic_machdep.c#4 edit

Differences ...

==== //depot/projects/dtrace/src/sys/cddl/i386/cyclic_machdep.c#4 (text+ko) ====

@@ -188,18 +188,12 @@
 
 static cyc_cookie_t set_level(cyb_arg_t arg, cyc_level_t level)
 {
-#ifdef DOODAD
 	return (intr_disable());
-#else
-	return (0);
-#endif
 }
 
 static void restore_level(cyb_arg_t arg, cyc_cookie_t cookie)
 {
-#ifdef DOODAD
 	intr_restore(cookie);
-#endif
 }
 
 static void xcall(cyb_arg_t arg, cpu_t *c, cyc_func_t func, void *param)


More information about the p4-projects mailing list