From owner-svn-src-all@FreeBSD.ORG Wed Aug 29 12:29:20 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A5396106567A for ; Wed, 29 Aug 2012 12:29:20 +0000 (UTC) (envelope-from andrey@zonov.org) Received: from mail-ee0-f54.google.com (mail-ee0-f54.google.com [74.125.83.54]) by mx1.freebsd.org (Postfix) with ESMTP id 13A058FC29 for ; Wed, 29 Aug 2012 12:29:19 +0000 (UTC) Received: by eeke52 with SMTP id e52so215617eek.13 for ; Wed, 29 Aug 2012 05:29:19 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :x-gm-message-state; bh=w9nfm3iaR0Xg+/ZVfG2cpujXDffSW6SClJqpGdkktyk=; b=WLJcoh+gnk/vSCt1M+djYB3ZPZvPOxcwv7IsnwCz3wfe78h2nQb3ij66+Shd4LKpQj rLqxiSECKi5CXeVbmwT+8WfYGo1Z6Ks5hONd8M2Pt6CWSTTUc51eJzG+WpsyV4dQ5H1l Mb/FY9TojdOLBtwbS3XU3CX3BWiUBYXhH9OHag8ux0Yu0JBw9RgGQslo3SO3UnK+XL41 6uBh9kvzGZvLJDJXUxszDw2pVj1TxMNreoAhalCI6DXdCwog2swKsnM70Vmc4ps+hsEE UIPuWQ0xZJ+uNKJT1okqUj7sH4l5gQaEBynuSDvPemxWnRDqrV5mi4qXewTzAxxJeknv TKng== Received: by 10.14.202.66 with SMTP id c42mr1749810eeo.35.1346243358810; Wed, 29 Aug 2012 05:29:18 -0700 (PDT) Received: from dhcp170-234-red.yandex.net ([2a02:6b8:0:401:f907:1f1a:380d:eba]) by mx.google.com with ESMTPS id e7sm69602565eep.2.2012.08.29.05.29.17 (version=SSLv3 cipher=OTHER); Wed, 29 Aug 2012 05:29:18 -0700 (PDT) Sender: Andrey Zonov Message-ID: <503E0B18.70605@FreeBSD.org> Date: Wed, 29 Aug 2012 16:29:12 +0400 From: Andrey Zonov User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:14.0) Gecko/20120713 Thunderbird/14.0 MIME-Version: 1.0 To: Sergey Kandaurov References: <201208291123.q7TBNxJb035457@svn.freebsd.org> In-Reply-To: X-Enigmail-Version: 1.4.3 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig8F54062FBFD303E943129D3E" X-Gm-Message-State: ALoCoQlCGKO+Udl1kbeguELlgaLpT5b0YDPFEOJRqAAeCw9Dozenn860YkfSVPEte65VFu5Eh7El Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r239818 - head/sys/vm X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Aug 2012 12:29:20 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig8F54062FBFD303E943129D3E Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 8/29/12 4:09 PM, Sergey Kandaurov wrote: > On 29 August 2012 15:23, Andrey Zonov wrote: >> Author: zont >> Date: Wed Aug 29 11:23:59 2012 >> New Revision: 239818 >> URL: http://svn.freebsd.org/changeset/base/239818 >> >> Log: >> - Don't take an account of locked memory for current process in vslo= ck(9). >> >> There are two consumers of vslock(9): sysctl code and drm driver. T= hese >> consumers are using locked memory as transient memory, it doesn't be= long >> to a process's memory. >=20 > Hi. > So, since we do not account such memory in vslock() anymore, > I think this one shall be applied as well. >=20 > Index: share/man/man9/vslock.9 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- share/man/man9/vslock.9 (revision 239171) > +++ share/man/man9/vslock.9 (working copy) > @@ -82,9 +82,6 @@ > .It Bq Er ENOMEM > The size of the specified address range exceeds the system > limit on locked memory. > -.It Bq Er ENOMEM > -Locking the requested address range would cause the process to exceed > -its per-process locked memory limit. > .It Bq Er EFAULT > Some portion of the indicated address range is not allocated. > There was an error faulting/mapping a page. >=20 >=20 Please, commit it. Thanks! --=20 Andrey Zonov --------------enig8F54062FBFD303E943129D3E Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.18 (Darwin) Comment: GPGTools - http://gpgtools.org iQEcBAEBAgAGBQJQPgscAAoJEBWLemxX/CvTXAMH/1VYb33/kIRplvX9ztEE1yuW fBA0iUNSxMc3EU496wMGnmZWP/Bw5FtzhItQ8VZD06RqFL6xxJCv+sAGsKrY+M/k auEb8+U2dqf0XKpNXxnbaDN2NoR62Hu50wR8xiAdU5AD1M4YktAc7RVjpW2We016 ZToK6ewHr570kdQMuJIqLrUXybJSqARD1ey6B1q9kzt9uyB3LdUyV0b0FqtCd0ws 9QGuCHMSKjtPpyXk7BKQ6XEYl0XE6f6LLy2tFb70CPoYjMs6rIx2mg/SIylrvMpd owJxDEkDQI8C9CIBTegj0zHZxp1gqFnygqepc9ekPv9HUWezSz9zqgQC11fwx8Y= =z/x9 -----END PGP SIGNATURE----- --------------enig8F54062FBFD303E943129D3E--