[Call For Testing] VirtualBox for FreeBSD! take 4

Jacques Fourie jacques.fourie at gmail.com
Fri Jun 5 11:18:29 UTC 2009


> Hi,
> I've tried http://people.freebsd.org/~miwi/vbox/virtualbox_5.tgz out...
>  - it compiles fine (except for the iso I had to download manually)
>  - it panics when I try to load the kernel module, first I tried to load it with X running and the second time I tried to load it without X running, please find attached the output.
>
> about my machine:
> $ uname -a
> FreeBSD home.mydomain.org 7.2-STABLE FreeBSD 7.2-STABLE #7: Thu May 28 01:24:11 EEST 2009     mgp at mydomain.org:/usr/obj/usr/src/sys/Ss-STABLE  amd64
>
> and also ports updated from 28th of May
>
> regards,
> mgp
> _______________________________________________
> freebsd-current at freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-current
> To unsubscribe, send any mail to "freebsd-current-unsubscribe at freebsd.org"
>

The following patch fixes this issue for me.

--- semevent-r0drv-freebsd.c.old        2009-06-05 12:48:55.841136475 +0200
+++ semevent-r0drv-freebsd.c    2009-06-05 12:15:08.610705499 +0200
@@ -181,7 +181,7 @@
         rc = tsleep(pEventInt,          /* block id */
                     fInterruptible ? PZERO | PCATCH : PZERO,
                     "iprtev",
-                   tvtohz(&tv));
+                   cMillies == RT_INDEFINITE_WAIT ? 0 : tvtohz(&tv));
         mtx_lock_spin(&pEventInt->Mtx);

Regards,
Jacques


More information about the freebsd-current mailing list