From owner-svn-src-all@freebsd.org Tue Feb 4 05:20:44 2020 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 1967A23C118; Tue, 4 Feb 2020 05:20:44 +0000 (UTC) (envelope-from andreast@FreeBSD.org) Received: from smtp.imp.ch (smtp.imp.ch [IPv6:2001:4060:1:1001::13:198]) (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 48BY1l3qcWz4fhm; Tue, 4 Feb 2020 05:20:43 +0000 (UTC) (envelope-from andreast@FreeBSD.org) Received: from [192.168.225.14] (dhclient-94.100.156.244.flashcable.ch [94.100.156.244]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by fgznet.ch (Postfix) with ESMTPSA id 7AC39C4BCC; Tue, 4 Feb 2020 06:20:39 +0100 (CET) Subject: Re: svn commit: r357463 - head/sys/vm To: Mark Johnston , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org References: <202002031929.013JT2u8061169@repo.freebsd.org> From: Andreas Tobler Message-ID: Date: Tue, 4 Feb 2020 06:20:25 +0100 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:68.0) Gecko/20100101 Thunderbird/68.4.2 MIME-Version: 1.0 In-Reply-To: <202002031929.013JT2u8061169@repo.freebsd.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Scanned-By: Obelix Submit on 127.0.1.1 X-Rspamd-Queue-Id: 48BY1l3qcWz4fhm X-Spamd-Bar: ----- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-5.98 / 15.00]; NEURAL_HAM_MEDIUM(-0.98)[-0.984,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] 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, 04 Feb 2020 05:20:44 -0000 On 03.02.20 20:29, Mark Johnston wrote: > Author: markj > Date: Mon Feb 3 19:29:02 2020 > New Revision: 357463 > URL: https://svnweb.freebsd.org/changeset/base/357463 > > Log: > Disable the smallest UMA bucket size on 32-bit platforms. > > With r357314, sizeof(struct uma_bucket) grew to 16 bytes on 32-bit > platforms, so BUCKET_SIZE(4) is 0. This resulted in the creation of a > bucket zone for buckets with zero capacity. A more general fix is > planned, but for now this bandaid allows 32-bit platforms to boot again. Thanks, my wandquad is back to life. Andreas