From owner-freebsd-stable@FreeBSD.ORG Sun Sep 6 14:10:22 2009 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80AAC106566B; Sun, 6 Sep 2009 14:10:22 +0000 (UTC) (envelope-from thierry.herbelot@free.fr) Received: from smtp4-g21.free.fr (smtp4-g21.free.fr [212.27.42.4]) by mx1.freebsd.org (Postfix) with ESMTP id 476A08FC18; Sun, 6 Sep 2009 14:10:19 +0000 (UTC) Received: from smtp4-g21.free.fr (localhost [127.0.0.1]) by smtp4-g21.free.fr (Postfix) with ESMTP id CD2AA4C810A; Sun, 6 Sep 2009 16:10:15 +0200 (CEST) Received: from mail.herbelot.nom (bne75-4-82-227-159-103.fbx.proxad.net [82.227.159.103]) by smtp4-g21.free.fr (Postfix) with ESMTP id D016D4C8101; Sun, 6 Sep 2009 16:10:12 +0200 (CEST) Received: from tulipe.herbelot.nom (tulipe.herbelot.nom [192.168.2.5]) by mail.herbelot.nom (8.14.1/8.14.1) with ESMTP id n86EA9kk012836; Sun, 6 Sep 2009 16:10:10 +0200 (CEST) From: Thierry Herbelot To: Kostik Belousov Date: Sun, 6 Sep 2009 16:10:02 +0200 User-Agent: KMail/1.9.10 References: <200909061102.40450.thierry.herbelot@free.fr> <20090906110238.GH47688@deviant.kiev.zoral.com.ua> In-Reply-To: <20090906110238.GH47688@deviant.kiev.zoral.com.ua> X-Warning: Windows can lose your files X-Op-Sys: Le FriBi de la mort qui tue X-Org: TfH&Co X-MailScanner: Found to be clean MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 8bit Content-Disposition: inline Message-Id: <200909061610.03858.thierry.herbelot@free.fr> Cc: stable@freebsd.org, jhb@freebsd.org Subject: Re: Panic in recent 7.2-Stable X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Sep 2009 14:10:22 -0000 Le Sunday 06 September 2009, Kostik Belousov a écrit : > > I expect that the following patch, that is the partial merge of r194459, > would fix it. It patches sys/vm/vm_phys.c. > > Index: vm_phys.c > =================================================================== > --- vm_phys.c (revision 194458) > +++ vm_phys.c (revision 194459) > @@ -382,8 +382,7 @@ > if (pa >= seg->start && pa < seg->end) > return (&seg->first_page[atop(pa - seg->start)]); > } > - panic("vm_phys_paddr_to_vm_page: paddr %#jx is not in any segment", > - (uintmax_t)pa); > + return (NULL); This seems indeed the missing part : I should have looked in -current .... Thanks TfH > } > > /*