From owner-freebsd-performance@FreeBSD.ORG Mon Nov 4 16:23:37 2013 Return-Path: Delivered-To: freebsd-performance@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CC6AA592 for ; Mon, 4 Nov 2013 16:23:37 +0000 (UTC) (envelope-from tevans.uk@googlemail.com) Received: from mail-lb0-x235.google.com (mail-lb0-x235.google.com [IPv6:2a00:1450:4010:c04::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4CED42104 for ; Mon, 4 Nov 2013 16:23:37 +0000 (UTC) Received: by mail-lb0-f181.google.com with SMTP id x18so5516979lbi.40 for ; Mon, 04 Nov 2013 08:23:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=wSfyAAwEYmkxvQjoTvSBj8AcO9W1k+PpUniHUtZnrV8=; b=d7EBti9bAxgCfXdEmtPzZp9b9Gu9f0q1MKYbeemDJDW7sOBKSFD3JuHQJ9d6t7813b Uyni/36RUI26+Z7s2lBb6q72J+/0DUNCfKxAb+G//ciNJQhQDse+xzs9AasNPglD0IRN Xf5q97ZnoxjYnGJa9PMSZZJeezetjCRnsqj7NTcMPW3E/qQW7n3xfEemixHL2VNBeU6g q17j/pABqaOnnYklchLQt2hNaXhPSQR6CnyRh9TFWzlX151pStWkbAatWDwg8HyMWBD5 qJuQG4HQbmsZT+0xStmKfiHXnon0NlNUnNNYGzFon/phJSrHNPZQ+PctMqGGnyYDC2On ZJmg== MIME-Version: 1.0 X-Received: by 10.152.28.194 with SMTP id d2mr12491046lah.2.1383582215054; Mon, 04 Nov 2013 08:23:35 -0800 (PST) Received: by 10.112.5.138 with HTTP; Mon, 4 Nov 2013 08:23:34 -0800 (PST) In-Reply-To: <20131104154908.GD1711@albert.catwhisker.org> References: <20131104154908.GD1711@albert.catwhisker.org> Date: Mon, 4 Nov 2013 16:23:34 +0000 Message-ID: Subject: Re: Reality check? compat.ia32.maxdsiz in jailed "32-bit" environment From: Tom Evans To: David Wolfskill Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: freebsd-performance@freebsd.org X-BeenThere: freebsd-performance@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Performance/tuning List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Nov 2013 16:23:37 -0000 On Mon, Nov 4, 2013 at 3:49 PM, David Wolfskill wrot= e: > I am supporting a performance-sensitive software development > environment that: > =E2=80=A6 > I have (also) started experimenting with increasing compat.ia32.maxdsiz > beyond its default of 512MB: Initially, I kicked it to 2GB; more > recently, I tried setting it to 3GB. > > While I have not noticed any negative issues from either of the above > non-default settings, I have done but limited testing with concurrent > software builds in my test environment. IIRC, when running on pure i386, setting kern.maxdsiz limits the amount of kernel address space (or rather, dsize+KVA =3D 4 GB), and so you had to be careful when increasing kern.maxdsiz. This probably has no effect on a i386 on amd64 jail though. Cheers Tom