Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 9 Jun 2009 13:37:43 +0300 (EEST)
From:      Mario Pavlov <freebsd@abv.bg>
To:        Jacques Fourie <jacques.fourie@gmail.com>
Cc:        freebsd-current@freebsd.org
Subject:   Re: Re: Re: [Call For Testing] VirtualBox for FreeBSD! take 4
Message-ID:  <1799514946.205298.1244543863072.JavaMail.apache@mail53.abv.bg>

next in thread | raw e-mail | index | archive | help
 >> Hi,
 >> thanks a lot for that fix
 >> it worked for me, please find attached the patch file, slightly modified so it can be successfully applied
 >> the good news is that when I loaded the module it didn't panic, I was even able to run VirtualBox
 >> ...I created a virtual machine for windows xp and started the installation...but the virtual machine crashes after the windows installer loads all drivers and tries to start the actual installation
 >> and I can see this at the bottom of the vbox log
 >> ==========================================================================================================================
 >> 00:00:57.770 !!Assertion Failed!!
 >> 00:00:57.770 Expression: u64Now u64Expire
 >> 00:00:57.770 Location  : /usr/ports/emulators/virtualbox/work/virtualbox-2.2.2r19980/src/VBox/VMM/TM.cpp(1899) void tmR3TimerQueueRunVirtualSync(VM*)
 >
 >Hi,
 >
 >I ran into this issue as well - didn't have time to look into a proper
 >fix but the following hack seems to work for me. Please be aware that
 >this is only a hack and not a proper fix - your mileage may vary :) My
 >Ubuntu VM has been running fine for about 3 days now, under load.
 >
 >--- src/VBox/VMM/TM.cpp 2009-05-19 15:14:54.000000000 +0200
 >+++ src/VBox/VMM/TM.cpp 2009-06-08 11:07:34.815865375 +0200
 >@@ -1896,6 +1896,10 @@
 >     {
 >         STAM_COUNTER_INC(&pVM->tm.s.StatVirtualSyncRunStoppedAlready);
 >         u64Now = pVM->tm.s.u64VirtualSync;
 >+       if (u64Now > pNext->u64Expire) {
 >+               Log4(("u64Now = %RU64, pNext->u64Expire = %RU64\n",
 >u64Now, pNext->u64Expire));
 >+               u64Now = pNext->u64Expire;
 >+       }
 >         Assert(u64Now u64Expire);
 >     }
 >     else
 >
 >Regards,
 >Jacques

Alright, thank you :)
I'll test it later and let you know if works for me

regards,
mgp



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1799514946.205298.1244543863072.JavaMail.apache>