Received: by mail.netbsd.org (Postfix, from userid 605) id C69C984EA3; Wed, 15 Apr 2020 17:16:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4CB0184EA1 for ; Wed, 15 Apr 2020 17:16:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id yYTC1hLuAV-t for ; Wed, 15 Apr 2020 17:16:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id E0A4284E9B for ; Wed, 15 Apr 2020 17:16:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A89DCFB27; Wed, 15 Apr 2020 17:16:22 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Wed, 15 Apr 2020 17:16:22 +0000 From: "Maxime Villard" Subject: CVS commit: src/sys To: source-changes@NetBSD.org X-Mailer: log_accum Message-Id: <20200415171622.A89DCFB27@cvs.NetBSD.org> Sender: source-changes-owner@NetBSD.org List-Id: source-changes.NetBSD.org Precedence: bulk Reply-To: source-changes-d@NetBSD.org Mail-Reply-To: "Maxime Villard" Mail-Followup-To: source-changes-d@NetBSD.org List-Unsubscribe: Module Name: src Committed By: maxv Date: Wed Apr 15 17:16:22 UTC 2020 Modified Files: src/sys/arch/amd64/conf: GENERIC src/sys/conf: files src/sys/kern: subr_pool.c Log Message: Introduce POOL_NOCACHE, simple option to cancel pool_caches and go directly to the pool layer. It is taken out of POOL_QUARANTINE. Advertise POOL_NOCACHE for kMSan rather than POOL_QUARANTINE. With kMSan we are only interested in the no-caching effect, not the quarantine. This reduces memory pressure on kMSan kernels. To generate a diff of this commit: cvs rdiff -u -r1.564 -r1.565 src/sys/arch/amd64/conf/GENERIC cvs rdiff -u -r1.1264 -r1.1265 src/sys/conf/files cvs rdiff -u -r1.267 -r1.268 src/sys/kern/subr_pool.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.