From owner-freebsd-hardware Mon Feb 1 09:40:06 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA19020 for freebsd-hardware-outgoing; Mon, 1 Feb 1999 09:40:06 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from cannon.ma.ikos.com (cannon.ma.ikos.com [137.103.105.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA18969; Mon, 1 Feb 1999 09:40:01 -0800 (PST) (envelope-from tich@cannon.ma.ikos.com) Received: from slide.ikos.com (slide [137.103.105.28]) by cannon.ma.ikos.com (8.9.1/8.8.8) with SMTP id MAA15503; Mon, 1 Feb 1999 12:41:14 -0500 (EST) Received: by slide.ikos.com (SMI-8.6/SMI-SVR4) id MAA08533; Mon, 1 Feb 1999 12:41:14 -0500 Date: Mon, 1 Feb 1999 12:41:14 -0500 From: tich@ma.ikos.com (Richard Cownie) Message-Id: <199902011741.MAA08533@slide.ikos.com> To: freebsd-hardware@FreeBSD.ORG, freebsd-kernel@FreeBSD.ORG Subject: fix for process > 2GB Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi all, I had to make a change to 3.0-RELEASE to get process size limit > 2GB to work: In /usr/src/sys/kern/imgact_elf.c: old: addr = 2L*MAXDSIZ; /* May depend on OS type XXX */ new: addr = (MAXDSIZ+(128<<20)); /* Fix for MAXDSIZ > 2GB */ With this change and these options: options "MAXDSIZ=(3584UL*1024*1024)" options "DFLDSIZ=(3584UL*1024*1024)" I can now run a 3.5GB process on my SC450NX with 2 Xeon-400, 2GB DRAM (though I've only run a simple test case so far, I haven't bashed it hard). Regards Richard Cownie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message