From owner-svn-src-all@freebsd.org Tue May 21 20:38:54 2019 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 12A4A158CC61; Tue, 21 May 2019 20:38:54 +0000 (UTC) (envelope-from cem@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AC27E77DFA; Tue, 21 May 2019 20:38:53 +0000 (UTC) (envelope-from cem@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9428BAE4C; Tue, 21 May 2019 20:38:53 +0000 (UTC) (envelope-from cem@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4LKcrIw016102; Tue, 21 May 2019 20:38:53 GMT (envelope-from cem@FreeBSD.org) Received: (from cem@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4LKcmoq016080; Tue, 21 May 2019 20:38:48 GMT (envelope-from cem@FreeBSD.org) Message-Id: <201905212038.x4LKcmoq016080@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cem set sender to cem@FreeBSD.org using -f From: Conrad Meyer Date: Tue, 21 May 2019 20:38:48 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r348064 - in head/sys: arm64/arm64 dev/acpica dev/ixgbe fs/unionfs kern mips/mips riscv/riscv ufs/ffs ufs/ufs vm X-SVN-Group: head X-SVN-Commit-Author: cem X-SVN-Commit-Paths: in head/sys: arm64/arm64 dev/acpica dev/ixgbe fs/unionfs kern mips/mips riscv/riscv ufs/ffs ufs/ufs vm X-SVN-Commit-Revision: 348064 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AC27E77DFA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.962,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.29 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: Tue, 21 May 2019 20:38:54 -0000 Author: cem Date: Tue May 21 20:38:48 2019 New Revision: 348064 URL: https://svnweb.freebsd.org/changeset/base/348064 Log: Include ktr.h in more compilation units Similar to r348026, exhaustive search for uses of CTRn() and cross reference ktr.h includes. Where it was obvious that an OS compat header of some kind included ktr.h indirectly, .c files were left alone. Some of these files clearly got ktr.h via header pollution in some scenarios, or tinderbox would not be passing prior to this revision, but go ahead and explicitly include it in files using it anyway. Like r348026, these CUs did not show up in tinderbox as missing the include. Reported by: peterj (arm64/mp_machdep.c) X-MFC-With: r347984 Sponsored by: Dell EMC Isilon Modified: head/sys/arm64/arm64/mp_machdep.c head/sys/arm64/arm64/trap.c head/sys/dev/acpica/acpi_ec.c head/sys/dev/ixgbe/if_sriov.c head/sys/fs/unionfs/union_subr.c head/sys/kern/kern_exit.c head/sys/kern/subr_eventhandler.c head/sys/kern/sys_process.c head/sys/kern/vfs_bio.c head/sys/kern/vfs_cache.c head/sys/kern/vfs_mount.c head/sys/kern/vfs_subr.c head/sys/kern/vfs_vnops.c head/sys/mips/mips/freebsd32_machdep.c head/sys/mips/mips/pm_machdep.c head/sys/mips/mips/trap.c head/sys/riscv/riscv/trap.c head/sys/ufs/ffs/ffs_vfsops.c head/sys/ufs/ufs/ufs_extattr.c head/sys/vm/vnode_pager.c Modified: head/sys/arm64/arm64/mp_machdep.c ============================================================================== --- head/sys/arm64/arm64/mp_machdep.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/arm64/arm64/mp_machdep.c Tue May 21 20:38:48 2019 (r348064) @@ -40,6 +40,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/arm64/arm64/trap.c ============================================================================== --- head/sys/arm64/arm64/trap.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/arm64/arm64/trap.c Tue May 21 20:38:48 2019 (r348064) @@ -31,6 +31,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/dev/acpica/acpi_ec.c ============================================================================== --- head/sys/dev/acpica/acpi_ec.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/dev/acpica/acpi_ec.c Tue May 21 20:38:48 2019 (r348064) @@ -32,6 +32,7 @@ __FBSDID("$FreeBSD$"); #include "opt_acpi.h" #include #include +#include #include #include #include Modified: head/sys/dev/ixgbe/if_sriov.c ============================================================================== --- head/sys/dev/ixgbe/if_sriov.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/dev/ixgbe/if_sriov.c Tue May 21 20:38:48 2019 (r348064) @@ -37,6 +37,8 @@ #ifdef PCI_IOV +#include + MALLOC_DEFINE(M_IXGBE_SRIOV, "ix_sriov", "ix SR-IOV allocations"); /************************************************************************ Modified: head/sys/fs/unionfs/union_subr.c ============================================================================== --- head/sys/fs/unionfs/union_subr.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/fs/unionfs/union_subr.c Tue May 21 20:38:48 2019 (r348064) @@ -41,6 +41,7 @@ #include #include #include +#include #include #include #include Modified: head/sys/kern/kern_exit.c ============================================================================== --- head/sys/kern/kern_exit.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/kern/kern_exit.c Tue May 21 20:38:48 2019 (r348064) @@ -47,6 +47,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/kern/subr_eventhandler.c ============================================================================== --- head/sys/kern/subr_eventhandler.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/kern/subr_eventhandler.c Tue May 21 20:38:48 2019 (r348064) @@ -31,6 +31,7 @@ __FBSDID("$FreeBSD$"); #include #include +#include #include #include #include Modified: head/sys/kern/sys_process.c ============================================================================== --- head/sys/kern/sys_process.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/kern/sys_process.c Tue May 21 20:38:48 2019 (r348064) @@ -36,6 +36,7 @@ __FBSDID("$FreeBSD$"); #include #include +#include #include #include #include Modified: head/sys/kern/vfs_bio.c ============================================================================== --- head/sys/kern/vfs_bio.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/kern/vfs_bio.c Tue May 21 20:38:48 2019 (r348064) @@ -57,6 +57,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/kern/vfs_cache.c ============================================================================== --- head/sys/kern/vfs_cache.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/kern/vfs_cache.c Tue May 21 20:38:48 2019 (r348064) @@ -46,6 +46,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/kern/vfs_mount.c ============================================================================== --- head/sys/kern/vfs_mount.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/kern/vfs_mount.c Tue May 21 20:38:48 2019 (r348064) @@ -45,6 +45,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/kern/vfs_subr.c ============================================================================== --- head/sys/kern/vfs_subr.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/kern/vfs_subr.c Tue May 21 20:38:48 2019 (r348064) @@ -63,6 +63,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/kern/vfs_vnops.c ============================================================================== --- head/sys/kern/vfs_vnops.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/kern/vfs_vnops.c Tue May 21 20:38:48 2019 (r348064) @@ -54,6 +54,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/mips/mips/freebsd32_machdep.c ============================================================================== --- head/sys/mips/mips/freebsd32_machdep.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/mips/mips/freebsd32_machdep.c Tue May 21 20:38:48 2019 (r348064) @@ -41,6 +41,7 @@ #include #include #include +#include #include #include #include Modified: head/sys/mips/mips/pm_machdep.c ============================================================================== --- head/sys/mips/mips/pm_machdep.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/mips/mips/pm_machdep.c Tue May 21 20:38:48 2019 (r348064) @@ -40,13 +40,13 @@ #include __FBSDID("$FreeBSD$"); -#include #include #include #include #include #include #include +#include #include #include #include Modified: head/sys/mips/mips/trap.c ============================================================================== --- head/sys/mips/mips/trap.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/mips/mips/trap.c Tue May 21 20:38:48 2019 (r348064) @@ -51,6 +51,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/riscv/riscv/trap.c ============================================================================== --- head/sys/riscv/riscv/trap.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/riscv/riscv/trap.c Tue May 21 20:38:48 2019 (r348064) @@ -38,6 +38,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/ufs/ffs/ffs_vfsops.c ============================================================================== --- head/sys/ufs/ffs/ffs_vfsops.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/ufs/ffs/ffs_vfsops.c Tue May 21 20:38:48 2019 (r348064) @@ -46,6 +46,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/ufs/ufs/ufs_extattr.c ============================================================================== --- head/sys/ufs/ufs/ufs_extattr.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/ufs/ufs/ufs_extattr.c Tue May 21 20:38:48 2019 (r348064) @@ -47,6 +47,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/vm/vnode_pager.c ============================================================================== --- head/sys/vm/vnode_pager.c Tue May 21 19:42:04 2019 (r348063) +++ head/sys/vm/vnode_pager.c Tue May 21 20:38:48 2019 (r348064) @@ -67,6 +67,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include