Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 6 Sep 2009 16:10:02 +0200
From:      Thierry Herbelot <thierry.herbelot@free.fr>
To:        Kostik Belousov <kostikbel@gmail.com>
Cc:        stable@freebsd.org, jhb@freebsd.org
Subject:   Re: Panic in recent 7.2-Stable
Message-ID:  <200909061610.03858.thierry.herbelot@free.fr>
In-Reply-To: <20090906110238.GH47688@deviant.kiev.zoral.com.ua>
References:  <200909061102.40450.thierry.herbelot@free.fr> <20090906110238.GH47688@deviant.kiev.zoral.com.ua>

next in thread | previous in thread | raw e-mail | index | archive | help
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
>  }
>
>  /*





Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200909061610.03858.thierry.herbelot>