From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 11 12:40:28 2005 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DD2F16A4CE for ; Fri, 11 Feb 2005 12:40:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFF6443D39 for ; Fri, 11 Feb 2005 12:40:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id j1BCeNgw003331 for ; Fri, 11 Feb 2005 12:40:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id j1BCeNK1003330; Fri, 11 Feb 2005 12:40:23 GMT (envelope-from gnats) Date: Fri, 11 Feb 2005 12:40:23 GMT Message-Id: <200502111240.j1BCeNK1003330@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Devon H. O'Dell" Subject: Re: kern/77353: grow SysV IPC kernel limits X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Devon H. O'Dell" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Feb 2005 12:40:28 -0000 The following reply was made to PR kern/77353; it has been noted by GNATS. From: "Devon H. O'Dell" To: Robert Millan Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: kern/77353: grow SysV IPC kernel limits Date: Fri, 11 Feb 2005 13:36:20 +0100 On Fri, 2005-02-11 at 13:23 +0100, Robert Millan wrote: > On Fri, Feb 11, 2005 at 11:21:54AM +0100, Devon H. O'Dell wrote: > > > --- src/sys/i386/conf/GENERIC~ 2005-02-01 21:44:25.000000000 +0100 > > > +++ src/sys/i386/conf/GENERIC 2005-02-01 21:47:12.000000000 +0100 > > > @@ -49,8 +49,14 @@ > > > options SCSI_DELAY=15000 # Delay (in ms) before probing SCSI > > > options KTRACE # ktrace(1) support > > > options SYSVSHM # SYSV-style shared memory > > > +options SHMMAXPGS=4096 > > > +options SHMSEG=256 > > > options SYSVMSG # SYSV-style message queues > > > options SYSVSEM # SYSV-style semaphores > > > +options SEMMNI=256 > > > +options SEMMNS=512 > > > +options SEMMNU=256 > > > +options SEMMAP=256 > > > options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extension > > > s > > > options KBD_INSTALL_CDEV # install a CDEV entry in /dev > > > options AHC_REG_PRETTY_PRINT # Print register bitfields in debug > > > > If I'm not mistaken, these can be set as sysctls. Take a look at the > > kern.ipc MIB. > > You mean in runtime? IIRC, some of the kern.ipc sysctl variables are not > writable. Am I missing something? > Correct, but I believe they can still be set in /etc/boot.conf simply by specifying: MIB_NAME="VALUE" --Devon