From owner-cvs-src-old@FreeBSD.ORG Thu Mar 12 22:01:50 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F3B01065679 for ; Thu, 12 Mar 2009 22:01:48 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 52B808FC18 for ; Thu, 12 Mar 2009 22:01:48 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n2CM1mpX073041 for ; Thu, 12 Mar 2009 22:01:48 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n2CM1m4A073040 for cvs-src-old@freebsd.org; Thu, 12 Mar 2009 22:01:48 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <200903122201.n2CM1m4A073040@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Thu, 12 Mar 2009 22:01:42 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/vm vm_page.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Mar 2009 22:01:50 -0000 jhb 2009-03-12 22:01:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/vm vm_page.c Log: SVN rev 189750 on 2009-03-12 22:01:42Z by jhb Disable the vm_page_startup assertion for now. It always fails on platforms with superpages currently because the pages used by vm_reserv_startup() are incorrectly included in the 'npages' count. I haven't removed the assertion as I think this is a real bug, but the side effect is just that some memory is wasted on never-used vm_page structures. The assertion was removed from HEAD which is why the bug wasn't noticed there (and thus this is a direct commit to 7). Revision Changes Path 1.357.2.7 +6 -0 src/sys/vm/vm_page.c