svn commit: r259905 - head/sys/sys

Mark Johnston markj at FreeBSD.org
Thu Dec 26 03:19:09 UTC 2013


Author: markj
Date: Thu Dec 26 03:19:08 2013
New Revision: 259905
URL: http://svnweb.freebsd.org/changeset/base/259905

Log:
  Remove some unneeded declarations which should have been removed in r257037.

Modified:
  head/sys/sys/dtrace_bsd.h

Modified: head/sys/sys/dtrace_bsd.h
==============================================================================
--- head/sys/sys/dtrace_bsd.h	Thu Dec 26 01:12:35 2013	(r259904)
+++ head/sys/sys/dtrace_bsd.h	Thu Dec 26 03:19:08 2013	(r259905)
@@ -38,8 +38,6 @@ struct thread;
 struct vattr;
 struct vnode;
 struct reg;
-struct devstat;
-struct bio;
 
 /*
  * Cyclic clock function type definition used to hook the cyclic
@@ -168,23 +166,6 @@ extern dtrace_nfsclient_nfs23_done_probe
 extern dtrace_nfsclient_nfs23_done_probe_func_t
     dtrace_nfscl_nfs234_done_probe;
 
-/* IO Provider hooks, really hook into devstat */
-typedef void (*dtrace_io_start_probe_func_t)(uint32_t, struct bio *,
-					     struct devstat *);
-extern dtrace_io_start_probe_func_t dtrace_io_start_probe;
-
-typedef void (*dtrace_io_done_probe_func_t)(uint32_t, struct bio *,
-					    struct devstat *);
-extern dtrace_io_done_probe_func_t dtrace_io_done_probe;
-
-typedef void (*dtrace_io_wait_start_probe_func_t)(uint32_t, uintptr_t *, 
-						  struct devstat *);
-extern dtrace_io_wait_start_probe_func_t dtrace_io_wait_start_probe;
-
-typedef void (*dtrace_io_wait_done_probe_func_t)(uint32_t, uintptr_t *, 
-						 struct devstat *);
-extern dtrace_io_wait_done_probe_func_t dtrace_io_wait_done_probe;
-
 /*
  * Functions which allow the dtrace module to check that the kernel 
  * hooks have been compiled with sufficient space for it's private


More information about the svn-src-all mailing list