From owner-svn-src-all@freebsd.org Mon Jul 29 20:26:04 2019 Return-Path: Delivered-To: svn-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D3EB6B4DA7; Mon, 29 Jul 2019 20:26:04 +0000 (UTC) (envelope-from markj@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 B57FD6B5D1; Mon, 29 Jul 2019 20:26:04 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 90D535F4D; Mon, 29 Jul 2019 20:26:04 +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 x6TKQ4nt089484; Mon, 29 Jul 2019 20:26:04 GMT (envelope-from markj@FreeBSD.org) Received: (from markj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x6TKQ1Bc089469; Mon, 29 Jul 2019 20:26:01 GMT (envelope-from markj@FreeBSD.org) Message-Id: <201907292026.x6TKQ1Bc089469@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: markj set sender to markj@FreeBSD.org using -f From: Mark Johnston Date: Mon, 29 Jul 2019 20:26:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r350421 - in head/sys: compat/freebsd32 dev/bhnd/nvram dev/drm2 fs/devfs fs/ext2fs fs/fuse kern mips/broadcom rpc X-SVN-Group: head X-SVN-Commit-Author: markj X-SVN-Commit-Paths: in head/sys: compat/freebsd32 dev/bhnd/nvram dev/drm2 fs/devfs fs/ext2fs fs/fuse kern mips/broadcom rpc X-SVN-Commit-Revision: 350421 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B57FD6B5D1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-0.99)[-0.994,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.973,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: Mon, 29 Jul 2019 20:26:04 -0000 Author: markj Date: Mon Jul 29 20:26:01 2019 New Revision: 350421 URL: https://svnweb.freebsd.org/changeset/base/350421 Log: Avoid relying on header pollution from sys/refcount.h. MFC after: 3 days Sponsored by: The FreeBSD Foundation Modified: head/sys/compat/freebsd32/freebsd32_capability.c head/sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c head/sys/dev/bhnd/nvram/bhnd_nvram_store.c head/sys/dev/bhnd/nvram/bhnd_nvram_value.c head/sys/dev/bhnd/nvram/bhnd_nvram_value_prf.c head/sys/dev/drm2/drmP.h head/sys/fs/devfs/devfs_vnops.c head/sys/fs/ext2fs/ext2_vnops.c head/sys/fs/fuse/fuse_vnops.c head/sys/kern/kern_event.c head/sys/kern/kern_sig.c head/sys/kern/sys_process.c head/sys/kern/uipc_shm.c head/sys/mips/broadcom/bhnd_nexus.c head/sys/rpc/svc_vc.c Modified: head/sys/compat/freebsd32/freebsd32_capability.c ============================================================================== --- head/sys/compat/freebsd32/freebsd32_capability.c Mon Jul 29 19:02:16 2019 (r350420) +++ head/sys/compat/freebsd32/freebsd32_capability.c Mon Jul 29 20:26:01 2019 (r350421) @@ -37,6 +37,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c ============================================================================== --- head/sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c Mon Jul 29 19:02:16 2019 (r350420) +++ head/sys/dev/bhnd/nvram/bhnd_nvram_data_tlv.c Mon Jul 29 20:26:01 2019 (r350421) @@ -33,6 +33,7 @@ __FBSDID("$FreeBSD$"); #ifdef _KERNEL #include #include +#include #include #include #else /* !_KERNEL */ Modified: head/sys/dev/bhnd/nvram/bhnd_nvram_store.c ============================================================================== --- head/sys/dev/bhnd/nvram/bhnd_nvram_store.c Mon Jul 29 19:02:16 2019 (r350420) +++ head/sys/dev/bhnd/nvram/bhnd_nvram_store.c Mon Jul 29 20:26:01 2019 (r350421) @@ -32,6 +32,7 @@ __FBSDID("$FreeBSD$"); #include #include +#include #include #ifdef _KERNEL Modified: head/sys/dev/bhnd/nvram/bhnd_nvram_value.c ============================================================================== --- head/sys/dev/bhnd/nvram/bhnd_nvram_value.c Mon Jul 29 19:02:16 2019 (r350420) +++ head/sys/dev/bhnd/nvram/bhnd_nvram_value.c Mon Jul 29 20:26:01 2019 (r350421) @@ -31,6 +31,7 @@ __FBSDID("$FreeBSD$"); #include +#include #include #ifdef _KERNEL Modified: head/sys/dev/bhnd/nvram/bhnd_nvram_value_prf.c ============================================================================== --- head/sys/dev/bhnd/nvram/bhnd_nvram_value_prf.c Mon Jul 29 19:02:16 2019 (r350420) +++ head/sys/dev/bhnd/nvram/bhnd_nvram_value_prf.c Mon Jul 29 20:26:01 2019 (r350421) @@ -31,6 +31,7 @@ __FBSDID("$FreeBSD$"); #include +#include #include #ifdef _KERNEL Modified: head/sys/dev/drm2/drmP.h ============================================================================== --- head/sys/dev/drm2/drmP.h Mon Jul 29 19:02:16 2019 (r350420) +++ head/sys/dev/drm2/drmP.h Mon Jul 29 20:26:01 2019 (r350421) @@ -52,6 +52,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/fs/devfs/devfs_vnops.c ============================================================================== --- head/sys/fs/devfs/devfs_vnops.c Mon Jul 29 19:02:16 2019 (r350420) +++ head/sys/fs/devfs/devfs_vnops.c Mon Jul 29 20:26:01 2019 (r350421) @@ -52,6 +52,7 @@ #include #include #include +#include #include #include #include Modified: head/sys/fs/ext2fs/ext2_vnops.c ============================================================================== --- head/sys/fs/ext2fs/ext2_vnops.c Mon Jul 29 19:02:16 2019 (r350420) +++ head/sys/fs/ext2fs/ext2_vnops.c Mon Jul 29 20:26:01 2019 (r350421) @@ -51,6 +51,7 @@ #include #include #include +#include #include #include #include Modified: head/sys/fs/fuse/fuse_vnops.c ============================================================================== --- head/sys/fs/fuse/fuse_vnops.c Mon Jul 29 19:02:16 2019 (r350420) +++ head/sys/fs/fuse/fuse_vnops.c Mon Jul 29 20:26:01 2019 (r350421) @@ -67,6 +67,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/kern/kern_event.c ============================================================================== --- head/sys/kern/kern_event.c Mon Jul 29 19:02:16 2019 (r350420) +++ head/sys/kern/kern_event.c Mon Jul 29 20:26:01 2019 (r350421) @@ -42,6 +42,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/kern/kern_sig.c ============================================================================== --- head/sys/kern/kern_sig.c Mon Jul 29 19:02:16 2019 (r350420) +++ head/sys/kern/kern_sig.c Mon Jul 29 20:26:01 2019 (r350421) @@ -57,6 +57,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/kern/sys_process.c ============================================================================== --- head/sys/kern/sys_process.c Mon Jul 29 19:02:16 2019 (r350420) +++ head/sys/kern/sys_process.c Mon Jul 29 20:26:01 2019 (r350421) @@ -37,6 +37,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/kern/uipc_shm.c ============================================================================== --- head/sys/kern/uipc_shm.c Mon Jul 29 19:02:16 2019 (r350420) +++ head/sys/kern/uipc_shm.c Mon Jul 29 20:26:01 2019 (r350421) @@ -57,6 +57,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/mips/broadcom/bhnd_nexus.c ============================================================================== --- head/sys/mips/broadcom/bhnd_nexus.c Mon Jul 29 19:02:16 2019 (r350420) +++ head/sys/mips/broadcom/bhnd_nexus.c Mon Jul 29 20:26:01 2019 (r350421) @@ -45,6 +45,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/rpc/svc_vc.c ============================================================================== --- head/sys/rpc/svc_vc.c Mon Jul 29 19:02:16 2019 (r350420) +++ head/sys/rpc/svc_vc.c Mon Jul 29 20:26:01 2019 (r350421) @@ -46,6 +46,7 @@ __FBSDID("$FreeBSD$"); */ #include +#include #include #include #include