svn commit: r299864 - in head/sys: cam/scsi modules/cam modules/tcp/fastpath netinet/tcp_stacks

Mark Johnston markj at FreeBSD.org
Sun May 15 20:04:44 UTC 2016


Author: markj
Date: Sun May 15 20:04:43 2016
New Revision: 299864
URL: https://svnweb.freebsd.org/changeset/base/299864

Log:
  opt_kdtrace.h is not needed for SDT probes as of r258541.

Modified:
  head/sys/cam/scsi/scsi_pass.c
  head/sys/modules/cam/Makefile
  head/sys/modules/tcp/fastpath/Makefile
  head/sys/netinet/tcp_stacks/fastpath.c

Modified: head/sys/cam/scsi/scsi_pass.c
==============================================================================
--- head/sys/cam/scsi/scsi_pass.c	Sun May 15 17:25:31 2016	(r299863)
+++ head/sys/cam/scsi/scsi_pass.c	Sun May 15 20:04:43 2016	(r299864)
@@ -28,8 +28,6 @@
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 
-#include "opt_kdtrace.h"
-
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/kernel.h>

Modified: head/sys/modules/cam/Makefile
==============================================================================
--- head/sys/modules/cam/Makefile	Sun May 15 17:25:31 2016	(r299863)
+++ head/sys/modules/cam/Makefile	Sun May 15 20:04:43 2016	(r299864)
@@ -11,7 +11,6 @@ SRCS=	opt_cam.h
 SRCS+=	opt_ada.h
 SRCS+=	opt_scsi.h
 SRCS+=	opt_cd.h
-SRCS+=	opt_kdtrace.h
 SRCS+=	opt_pt.h
 SRCS+=	opt_sa.h
 SRCS+=	opt_ses.h

Modified: head/sys/modules/tcp/fastpath/Makefile
==============================================================================
--- head/sys/modules/tcp/fastpath/Makefile	Sun May 15 17:25:31 2016	(r299863)
+++ head/sys/modules/tcp/fastpath/Makefile	Sun May 15 20:04:43 2016	(r299864)
@@ -7,7 +7,7 @@
 KMOD=	fastpath
 SRCS=	fastpath.c
 
-SRCS+=	opt_ipfw.h opt_inet.h opt_inet6.h opt_ipsec.h opt_kdtrace.h
+SRCS+=	opt_ipfw.h opt_inet.h opt_inet6.h opt_ipsec.h
 SRCS+=	opt_tcpdebug.h
 
 #

Modified: head/sys/netinet/tcp_stacks/fastpath.c
==============================================================================
--- head/sys/netinet/tcp_stacks/fastpath.c	Sun May 15 17:25:31 2016	(r299863)
+++ head/sys/netinet/tcp_stacks/fastpath.c	Sun May 15 20:04:43 2016	(r299864)
@@ -58,7 +58,6 @@ __FBSDID("$FreeBSD$");
 #include "opt_inet.h"
 #include "opt_inet6.h"
 #include "opt_ipsec.h"
-#include "opt_kdtrace.h"
 #include "opt_tcpdebug.h"
 
 #include <sys/param.h>


More information about the svn-src-head mailing list