From owner-svn-src-all@freebsd.org Sun Nov 22 02:01:03 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 18502A3514F; Sun, 22 Nov 2015 02:01:03 +0000 (UTC) (envelope-from markj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E263D1FD3; Sun, 22 Nov 2015 02:01:02 +0000 (UTC) (envelope-from markj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAM211pa070055; Sun, 22 Nov 2015 02:01:01 GMT (envelope-from markj@FreeBSD.org) Received: (from markj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAM211Bh070048; Sun, 22 Nov 2015 02:01:01 GMT (envelope-from markj@FreeBSD.org) Message-Id: <201511220201.tAM211Bh070048@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: markj set sender to markj@FreeBSD.org using -f From: Mark Johnston Date: Sun, 22 Nov 2015 02:01:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r291153 - in head/sys: amd64/linux arm/arm modules/cryptodev modules/linux64 opencrypto vm X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Nov 2015 02:01:03 -0000 Author: markj Date: Sun Nov 22 02:01:01 2015 New Revision: 291153 URL: https://svnweb.freebsd.org/changeset/base/291153 Log: Remove unneeded includes of opt_kdtrace.h. As of r258541, KDTRACE_HOOKS is defined in opt_global.h, so opt_kdtrace.h is not needed when defining SDT(9) probes. Modified: head/sys/amd64/linux/linux_dummy.c head/sys/arm/arm/exception.S head/sys/modules/cryptodev/Makefile head/sys/modules/linux64/Makefile head/sys/opencrypto/cryptodev.c head/sys/vm/vm_pageout.c Modified: head/sys/amd64/linux/linux_dummy.c ============================================================================== --- head/sys/amd64/linux/linux_dummy.c Sun Nov 22 01:20:36 2015 (r291152) +++ head/sys/amd64/linux/linux_dummy.c Sun Nov 22 02:01:01 2015 (r291153) @@ -28,7 +28,6 @@ __FBSDID("$FreeBSD$"); #include "opt_compat.h" -#include "opt_kdtrace.h" #include #include Modified: head/sys/arm/arm/exception.S ============================================================================== --- head/sys/arm/arm/exception.S Sun Nov 22 01:20:36 2015 (r291152) +++ head/sys/arm/arm/exception.S Sun Nov 22 02:01:01 2015 (r291153) @@ -48,7 +48,6 @@ #include "assym.s" -#include "opt_kdtrace.h" #include #include #include Modified: head/sys/modules/cryptodev/Makefile ============================================================================== --- head/sys/modules/cryptodev/Makefile Sun Nov 22 01:20:36 2015 (r291152) +++ head/sys/modules/cryptodev/Makefile Sun Nov 22 02:01:01 2015 (r291153) @@ -3,6 +3,6 @@ .PATH: ${.CURDIR}/../../opencrypto KMOD = cryptodev SRCS = cryptodev.c -SRCS += bus_if.h device_if.h opt_compat.h opt_kdtrace.h +SRCS += bus_if.h device_if.h opt_compat.h .include Modified: head/sys/modules/linux64/Makefile ============================================================================== --- head/sys/modules/linux64/Makefile Sun Nov 22 01:20:36 2015 (r291152) +++ head/sys/modules/linux64/Makefile Sun Nov 22 02:01:01 2015 (r291153) @@ -10,7 +10,7 @@ SRCS= linux_fork.c linux_dummy.c linux_f linux_machdep.c linux_misc.c linux_signal.c \ linux_socket.c linux_stats.c linux_sysctl.c linux_sysent.c \ linux_sysvec.c linux_time.c linux_vdso.c linux_timer.c \ - opt_inet6.h opt_compat.h opt_kdtrace.h opt_posix.h opt_usb.h \ + opt_inet6.h opt_compat.h opt_posix.h opt_usb.h \ vnode_if.h device_if.h bus_if.h assym.s \ linux_support.s DPSRCS= linux_genassym.c Modified: head/sys/opencrypto/cryptodev.c ============================================================================== --- head/sys/opencrypto/cryptodev.c Sun Nov 22 01:20:36 2015 (r291152) +++ head/sys/opencrypto/cryptodev.c Sun Nov 22 02:01:01 2015 (r291153) @@ -42,7 +42,6 @@ __FBSDID("$FreeBSD$"); #include "opt_compat.h" -#include "opt_kdtrace.h" #include #include Modified: head/sys/vm/vm_pageout.c ============================================================================== --- head/sys/vm/vm_pageout.c Sun Nov 22 01:20:36 2015 (r291152) +++ head/sys/vm/vm_pageout.c Sun Nov 22 02:01:01 2015 (r291153) @@ -76,7 +76,7 @@ __FBSDID("$FreeBSD$"); #include "opt_vm.h" -#include "opt_kdtrace.h" + #include #include #include