From owner-freebsd-current@FreeBSD.ORG Mon Jul 17 17:12:07 2006 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0ADF16A504 for ; Mon, 17 Jul 2006 17:12:07 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5442C43D53 for ; Mon, 17 Jul 2006 17:11:49 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.4/8.13.4) with ESMTP id k6HHBlVo038882; Mon, 17 Jul 2006 13:11:48 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: freebsd-current@freebsd.org Date: Mon, 17 Jul 2006 12:56:00 -0400 User-Agent: KMail/1.9.1 References: <20060712125112.W61255@is.park.rambler.ru> In-Reply-To: <20060712125112.W61255@is.park.rambler.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200607171256.00539.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Mon, 17 Jul 2006 13:11:48 -0400 (EDT) X-Virus-Scanned: ClamAV 0.87.1/1600/Sat Jul 15 11:03:46 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on server.baldwin.cx Cc: Igor Sysoev Subject: Re: 2Gb SYSVSHM limitation X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jul 2006 17:12:08 -0000 On Wednesday 12 July 2006 04:58, Igor Sysoev wrote: > Hi, > > the current kernel limit of SysV memory segment is 2G. > Today it is too small for amd64 machines. > > Year ago Christian S.J. Peron had propsed the patch > http://people.freebsd.org/~csjp/bigsharedmem.1117028863.diff > to increase the limit: > http://freebsd.rambler.ru/bsdmail/freebsd-current_2005/msg05627.html > > Are objections against this patch ? Well, it breaks the ABI of shminfo. :( Changing the ABI of structures shared with userspace like this requires duplicate syscalls, etc. to not break existing binaries (such as existing 6.x amd64 binaries). -- John Baldwin