From owner-svn-src-head@freebsd.org Mon Sep 21 15:54:17 2015 Return-Path: Delivered-To: svn-src-head@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 A38EDA0633D; Mon, 21 Sep 2015 15:54:17 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: from mail-io0-x22e.google.com (mail-io0-x22e.google.com [IPv6:2607:f8b0:4001:c06::22e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6D9F811F6; Mon, 21 Sep 2015 15:54:17 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: by iofb144 with SMTP id b144so124939282iof.1; Mon, 21 Sep 2015 08:54:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=NwViF+iA8L2YkxxH6boFCCuFj8C0733ZEJy1IMGVc7A=; b=aUOp6W/mrjaCTTxGnTQ5JvytlJkiId17wuwBQo17Ro7eFkiOfBSVabsrSdDAvi9/8q 0BcOxMPyQJ0BwyK4qv5mt3E3DG8EzNFhYTIf68aTaWacs+LjM9D3OM/lcEALOb3Z577a 6wnuLxvnYNGq5G3gI1kJGUOu1pP2rsnQ/j8N843h+QikroA08BWemJeiMyY46It1j7Dn aSOkWtExYzJZ29dLoothu4F/sG8BVUw+gFz6ACl1UOo+K7Eq7c6F91H4Mo0cVJZHMfjQ nUs3+OdZyM1K0tDxlHVGPAi2ozWk8+sRZ7/vvQ75sSct/sbg2WyHwgYZ5gz5K+scusMQ RHpQ== X-Received: by 10.107.130.149 with SMTP id m21mr26983717ioi.180.1442850856676; Mon, 21 Sep 2015 08:54:16 -0700 (PDT) MIME-Version: 1.0 Sender: carpeddiem@gmail.com Received: by 10.107.158.75 with HTTP; Mon, 21 Sep 2015 08:53:57 -0700 (PDT) In-Reply-To: <201509211503.t8LF30dc073384@repo.freebsd.org> References: <201509211503.t8LF30dc073384@repo.freebsd.org> From: Ed Maste Date: Mon, 21 Sep 2015 11:53:57 -0400 X-Google-Sender-Auth: ZP1bVRHsziyW1oc6hpTKvfBLsME Message-ID: Subject: Re: svn commit: r288068 - head/sys/kern To: Konstantin Belousov Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Sep 2015 15:54:17 -0000 On 21 September 2015 at 11:03, Konstantin Belousov wrote: > Author: kib > Date: Mon Sep 21 15:02:59 2015 > New Revision: 288068 > URL: https://svnweb.freebsd.org/changeset/base/288068 > > Log: > Ensure that maxproc does not exceed pid_max, at the time of boot. > Changes to kern.pid_max mib after the boot can break this relation. > > The maxfiles value was calculated by the MAXFILES formula based on > maxproc value, but this change decouples them, and MAXFILES now > references maxusers. Without manual tuning, the maxfiles default > value remains as it was prior to this commit. But for systems which > have tuned maxproc and rely on maxfiles to adjust, additional > reconfiguration is needed. > > Reported by: rwatson > Reviewed by: emaste > Sponsored by: The FreeBSD Foundation > MFC after: 2 weeks I believe this should also be: Relnotes: Yes