From owner-freebsd-questions@freebsd.org Fri Oct 28 15:01:43 2016 Return-Path: Delivered-To: freebsd-questions@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E0AF5C24474 for ; Fri, 28 Oct 2016 15:01:43 +0000 (UTC) (envelope-from citrin+bsd@citrin.ru) Received: from hz.citrin.ru (hz.citrin.ru [IPv6:2a01:4f8:d16:10c3::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A68BF1B0C for ; Fri, 28 Oct 2016 15:01:43 +0000 (UTC) (envelope-from citrin+bsd@citrin.ru) Received: from x220.lan (c-24-60-168-172.hsd1.ct.comcast.net [24.60.168.172]) by hz.citrin.ru (Postfix) with ESMTPSA id 947BD2874AE for ; Fri, 28 Oct 2016 15:01:39 +0000 (UTC) Subject: Re: Bhyve on freebsd11 To: freebsd-questions@freebsd.org References: <43349.128.135.52.6.1477665086.squirrel@cosmo.uchicago.edu> From: Anton Yuzhaninov Message-ID: <0587c603-7d6d-077b-f692-79d8000aa785@citrin.ru> Date: Fri, 28 Oct 2016 11:01:37 -0400 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 In-Reply-To: <43349.128.135.52.6.1477665086.squirrel@cosmo.uchicago.edu> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=citrin.ru; s=s0; t=1477666899; bh=5AKwfTLbqQHR15QiKghIKICxbCJklcQM2L7qng+KV8Q=; h=Subject:To:References:From:Message-ID:Date:MIME-Version:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=qpYzM2kVj8syIaGHcx/p820G+o/bKUc0TT3uhGUkJzwYOricE2UttbetDlf94YP9YUsXQIycZ/q9iknMpO8KG22Xairbmbf5WZnslqiJ1kvM0lfjYCNjt8XSh8yvXvPxa6GQ0TbhTkm/cMcnKDFNCaHdISlaSnL/+bhGDuFyCWc= X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2016 15:01:44 -0000 On 10/28/16 10:31, Valeri Galtsev wrote: > I'm always amused seeing people run 32 bit system on 64 bit hardware. Can > anyone offer any rationale behind that? - 64bit binaries consume more space on disk than 32bit ones. - 64bit processes consume more RAM, than 32bit ones. Indeed, 32 bit system suffer from the limit on address space (4 Gb), which is statically divided between kernel (KVA_PAGES) and userspace. And userspace address space is further divided: http://docs.FreeBSD.org/cgi/mid.cgi?200207291839.g6TIduVw055637 On amd64 address space so big that your can forget about KVA limit or limit on mmap size. I think 32bit OS is reasonable choose for workstation with RAM < 3Gb. And even for small servers (like router on Soekris board with 512Mb RAM).