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
>  }
>
>  /*


_______________________________________________
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"

Reply via email to