From owner-cvs-src@FreeBSD.ORG Fri Apr 15 23:58:20 2005 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D320016A4CE; Fri, 15 Apr 2005 23:58:20 +0000 (GMT) Received: from mail.psychoholics.org (www.psychoholics.org [64.185.102.78]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7902843D3F; Fri, 15 Apr 2005 23:58:20 +0000 (GMT) (envelope-from ebola@psychoholics.org) Received: from S010600deadc0de00.su.shawcable.net (S010600deadc0de00.su.shawcable.net [24.76.125.156]) by mail.psychoholics.org (Postfix) with ESMTP id 26900157173; Fri, 15 Apr 2005 18:22:32 -0700 (PDT) From: Adam Gregoire To: John Baldwin In-Reply-To: <200504152145.j3FLj2Oi004736@repoman.freebsd.org> References: <200504152145.j3FLj2Oi004736@repoman.freebsd.org> Content-Type: text/plain Date: Fri, 15 Apr 2005 19:58:14 -0400 Message-Id: <1113609494.27176.0.camel@S010600deadc0de00.su.shawcable.net> Mime-Version: 1.0 X-Mailer: Evolution 2.2.2 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/vm vm_pageq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Apr 2005 23:58:21 -0000 On Fri, 2005-04-15 at 21:45 +0000, John Baldwin wrote: > jhb 2005-04-15 21:45:02 UTC > > FreeBSD src repository > > Modified files: > sys/vm vm_pageq.c > Log: > Add a vm.blacklist tunable which can hold a space or comma seperated list > of physical addresses. The pages containing these physical addresses will > not be added to the free list and thus will effectively be ignored by the > VM system. This is mostly useful for the case when one knows of specific > physical addresses that have bit errors (such as from a memtest run) so > that one can blacklist the bad pages while waiting for the new sticks of > RAM to arrive. The physical addresses of any ignored pages are listed in > the message buffer as well. > > Revision Changes Path > 1.15 +29 -0 src/sys/vm/vm_pageq.c The printf formatting string %x on line 133 breaks build on amd64(other 64bit machines). -- Adam Gregoire