svn commit: r238759 - projects/bhyve/sys/kern

Neel Natu neel at FreeBSD.org
Wed Jul 25 01:05:49 UTC 2012


Author: neel
Date: Wed Jul 25 01:05:49 2012
New Revision: 238759
URL: http://svn.freebsd.org/changeset/base/238759

Log:
  Fix compilation error when compiling a kernel without KDTRACE_HOOKS

Modified:
  projects/bhyve/sys/kern/subr_devstat.c

Modified: projects/bhyve/sys/kern/subr_devstat.c
==============================================================================
--- projects/bhyve/sys/kern/subr_devstat.c	Wed Jul 25 00:21:16 2012	(r238758)
+++ projects/bhyve/sys/kern/subr_devstat.c	Wed Jul 25 01:05:49 2012	(r238759)
@@ -87,8 +87,12 @@ uint32_t	dtio_wait_done_id;
 
 #define DTRACE_DEVSTAT_START()
 
+#define DTRACE_DEVSTAT_BIO_START()
+
 #define DTRACE_DEVSTAT_DONE()
 
+#define DTRACE_DEVSTAT_BIO_DONE()
+
 #define DTRACE_DEVSTAT_WAIT_START()
 
 #define DTRACE_DEVSTAT_WAIT_DONE()


More information about the svn-src-projects mailing list