Quantcast
Channel: VMware Communities : Popular Discussions - VIX API
Viewing all 34639 articles
Browse latest View live

How can I improve performance of copying files from host to guest via Vix API?

$
0
0

 

We're copying rather large files (~250MB) between guest and host. This avoids having to supply network credentials and worry about network connectivity of the virtual machine alltogether. Unfortunately it's rather slow, without doing scientific tests, I am looking at transfer rates 1/10th of a regular file copy. It doesn't seem to matter much whether the copy is against a local VMWare Workstation or a remote ESX server.

 

 

Is there something I can do about this in the short term? Or maybe the developers can note this for a future version?

 

 

Thx

dB.

 

 


VMWareTasks: A VIX API C# Library (let's reinvent less wheels)

$
0
0

I posted a CodeProject Article this morning with a VMWareTasks C# library on top of the VIX API. It exposes a better programming model for the 99% of those synchronous VMWare scenarios where you don't want to deal with jobs or other more complex constructs. I think we can all benefit from reimplementing the same thing less often!

 

http://www.codeproject.com/KB/library/VMWareTasks.aspx

 

 

http://code.dblock.org/ShowPost.aspx?id=25

 

 

I'd love to get more features/patches for the library, feel free to (re)use and contribute.

 

 

cheers

dB.

 

 

Update: I posted a new build 1.0.1604.0: http://code.dblock.org/ShowPost.aspx?id=29

few vmrun.exe questions

$
0
0

Environment:

  • VIX 1.6.2 installed on Windows XP SP2

  • ESX 3.5u2

  • VM is Windows XP SP2 and has latest VMware Tools installed

  • Using Windows batch script at the moment

 

Got a few questions regarding "vmrun.exe" for the VIX gurus:

 

1) If I run the following, should I be able to get output back from the remote execution on the guestOS ?

 

vmrun.exe -T esx -h https://%ESX_IP%/sdk -u %ESX_USER_NAME% -p %ESX_PASSSWORD% -gu %VM_USER_NAME% -gp %VM_PASSWORD% runProgramInGuest "[http://himalaya-local-SAS.VMStorage|http://himalaya-local-SAS.VMStorage] Quentin/Quentin.vmx" "C:/WINDOWS/system32/ipconfig.exe"

 

2) Is there a way to enable any type of debugging? When executing any of the commands, the error messages coming back aren't too useful and I would like to see what's happening on the VM itself when I execute say a script or program. I only ask, because when I create a small bat script and run it on the VM, it works. When I executed using VIX, nothing happens.

 

e.g.

 

vmrun.exe -T esx -h https://%ESX_IP%/sdk -u %ESX_USER_NAME% -p %ESX_PASSSWORD% -gu %VM_USER_NAME% -gp %VM_PASSWORD% runScriptInGuest "[http://himalaya-local-SAS.VMStorage|http://himalaya-local-SAS.VMStorage] Quentin/Quentin.vmx" "C:/Documents and Settings/Administrator/Desktop/test.bat"

 

Speeding up CopyFileFromHostToGuest()?

$
0
0

I'm trying to copy somewhat large files (256-500 GB) to my Windows XP SP2 VMs on my ESX 3.5 server using the VIX API and the CopyFileFromHostToGuest() function takes a long time to copy these files. The file that is going to be copied up to the VM will be different with every run of my program, so is there a way to speed up this function?

Reading Environment variables problem

$
0
0

 

Hi,

 

 

I am using ReadVariable with the option VIX_GUEST_ENVIRONMENT_VARIABLE and I am getting blank values. I am logged in as the Administrator.

 

 

Note, the two environment variables I can retrieve with no problem are TEMP, and TEMP.

 

 

However, I can't retrieve variables like WINDIR, PATH, COMSPEC, and even SYSTEMDIR. I have tried to put the environment variables into section for this user in the advanced pane of my computer. Through the VIX inteface I only get blank values. I can retrieve them all on the command line within the VM with no problems

 

 

Is there a limitation of VIX?

 

 

 

 

 

Thanks,

 

 

Vinay

 

 

SOLVED: Insufficient permissions in host OS

$
0
0

I'm trying to use VIX to open a VM on a Server 2.0.  If I set the user as an admin on the server I'm able to open the machine just fine.  However if I remove the user from the admin group I get the "Insufficient permissions in host operating system" error.  I have tried giving the user in question full access to the drive where the .vmx file is stored but to no avail.  Does anyone know the permissions needed to open a vm through VIX?  I would rather not give this user admin rights on the machine.

 

Matt

VixJob_Wait API results segmentation fault after VixVM_PowerOn

$
0
0

 

All,

 

 

Trying some VM automation Code using VIX API SDK. After Loading  libvixAllProducts.so, VM registers successfully.

 

 

But when I tried to PowerOn,  VM VixJob_Wait give me segmentation fault after executing VixVM_PowerOn.

 

 

Observation:

 

 

1. Even it gives me segmentation fault, VM got powered on ESX server.

 

 

2. If i remove wait API with some sleep function, still i will get some segmentation fault.

 

 

 

 

 

Any suggestion, comments will be appriciated.

 

 

thanks

 

 

-tej

 

 

CopyFileFromHostToGuest - INTERNAL ERROR: A file was not found

$
0
0

Hey, I am trying to Copy files into a VMWare image hosted in ESX using VIX (C# Wrapper around the COM API), but I can't quite get it right.

 

Conceptual Something like:

 

IVMWareVirtualHost host = new VMWareVirtualHost();

host.ConnectToVMWareVIServer("172.18.19.69", "ESX Admin User", "ESX Admin Password");

 

IVMWareVirtualMachine virtualMachine = host.Open("[Storage1] Image/Image.vmx");

virtualMachine.PowerOn();

virtualMachine.WaitForToolsInGuest();

virtualMachine.LoginInGuest("Administrator", "ILoveOMSIS!1234");

virtualMachine.CopyFileFromHostToGuest("C:
temp
File.txt", "C:
package
File.txt");

 

And it fails at the last line with "INTERNAL ERROR: A file was not found"...

 

The File exists Locally, Casing is corrent and the "C:\package" folder exists in the Guest.

 

Host System: ESX 4.0

Guest System: Windows XP

Client System: Windows 2003 server

 

(Client System refers to the system where I try tu run the commands and vmrun.exe

 

After trying to find some help ect on the web, I went to "vmrun" and tested a command that used to work with the "VMWare Server"

 

vmrun -T server -h https://localhost:8333/sdk -u "Local Admin User" -p "Local Admin Password" -gu "Guest Admin account" -gp "Guest Admin password" CopyFileFromHostToGuest "[Standard] Image/Image.vmx" "C:\temp\file.txt" "C:\package\file.txt"

 

changed to:

 

vmrun -T server -h https://172.18.19.69/sdk -u "ESX Admin User" -p "ESX Admin Password" -gu "Guest Admin account" -gp "Guest Admin password" CopyFileFromHostToGuest "[Storage1] Image/Image.vmx" "C:\temp\file.txt" "C:\package\file.txt"

 

Both Works just fine...

 

So what am I'm doing wrong in the code?


Runtime Error only on new VIX API Version (1.0 running) where to get old API 1.0?

$
0
0

 

Hello

 

 

In my previous thread http://communities.vmware.com/thread/270479 I wrote about a runntime error which occures if I call the methode ListDirectoryInGuest multiple times, there was no reply to this message. I use a explorer like tree and call this methode every time when I expand a node. About the third or fifth time the application is crashing.

 

 

After having this problem only on some systems, I examined what versions of the VIX API was installed. The VIX API Version 1.0 Beta is running fine. The Version  1.8.1.10141 is showing on three systems the same problem.

 

 

I tried to find a download  of the VIX API 1.0 (old version) to verify this problem on one of the "bad" Systems. I found a download page which should be the download for this version, but after downloading I recognized it is also the newest version. Where can I get the old VIX API Versions?

 

 

I would like to installe the right dependency files for the VIX API 1.0 with my setup. What files do I need to install?

 

 

Regards

 

 

Manfred

 

 

 

 

 

 

 

 

Which VMware Tools version required

$
0
0

 

What's the "official" decree about which VMware Tools version is required for VIX.  Seems some VIX functions (such as VMLoginInGuest) will run only in VMware Tools version 4.0.  For instance, I had a Linux VM with VMware tools v3.5 installed.  Running a test (Perl) script got to the point where I called VMLoginInGuest -- I received the error:

 

 

Authentication failure or insufficient permissions in guest operating system(3015)

 

 

I upgrade the VMware tools version on the target VM and the above worked (as did the rest of my test script).

 

 

I read somewhere that there is a version 3.2 or something of VMware tools that supports VIX?  Is this true?  Is there a resource (web page) somewhere that explains the various versions of ESX, VMware tools, VIX, and/or perhaps a compatability matrix?  If not, someone there at VMware should make one...

 

 

Another thing, when I use the Perl vSphere API to get a VM View, if I look in the config.about section, I see a property "toolsVersion".  Some examples of values I see are:

 

 

7304 (vmware tools v3.5 )

 

 

8194 (this is the one where I installed vmware tools v4.0)

 

 

7299

 

 

How do these correlate to vmware tools versions?

 

 

Any and all information would be greatly appreciated.

 

 

 

 

 

Unable to compile VIX Programs

$
0
0

Hi,

 

I installed vix api 1.8 in my machine and wrote some sample programs in C. Im using Visual Studio 2005 Microsoft Visual Studio 2005

 

 

 

"Version 8.0.50727.762  (SP.050727-7600) Microsoft .NET Framework Version 2.0.50727 nstalled Edition: Professional". I can able to compile the programs without wrapper library(using Vix.lib and vix.dll). The problem in this is i must copy lot of dll file in the excutable location. So i decided to compile with wrapper library(VixAllProducts.lib). But Its giving lot of link error like

 

 

 

===================================================================================================

 

Error    225    error LNK2019: unresolved external symbol __imp___localtime64 referenced in function _localtime    VixAllProducts.lib

Error    226    error LNK2001: unresolved external symbol __imp___localtime64    VixAllProducts.lib

Error    227    error LNK2019: unresolved external symbol __imp___fstat64i32 referenced in function _fstat    VixAllProducts.lib

Error    228    error LNK2001: unresolved external symbol __imp___fstat64i32    VixAllProducts.lib

Error    229    error LNK2019: unresolved external symbol __imp__write referenced in function _LogWriteTagString    VixAllProducts.lib

Error    230    error LNK2001: unresolved external symbol __imp__write    OLDNAMES.lib

Error    231    error LNK2019: unresolved external symbol __imp__getpid referenced in function _LogWriteTagString    VixAllProducts.lib

Error    232    error LNK2001: unresolved external symbol __imp__getpid    VixAllProducts.lib

:

 

 

:

 

 

:

Error    326    error LNK2019: unresolved external symbol __imp__feof referenced in function StdIOReadNextLine    VixAllProducts.lib

Error    327    error LNK2019: unresolved external symbol __imp__wcsdup referenced in function WMIGetWMIObjectAttributeAsStringArray    VixAllProducts.lib

Error    328    error LNK2001: unresolved external symbol __imp__wcsdup    OLDNAMES.lib

Error    329    error LNK2019: unresolved external symbol __imp___snwprintf referenced in function WMIQueryWMIObjectEnum    VixAllProducts.lib

Error    330    error LNK2001: unresolved external symbol __imp___getpid    OLDNAMES.lib

Error    331    error LNK2001: unresolved external symbol __imp___dup2    OLDNAMES.lib

Error    332    error LNK2001: unresolved external symbol __imp___wcsdup    OLDNAMES.lib

Error    333    fatal error LNK1120: 67 unresolved externals    E:\sampleVCproj\vmware\Debug\vmware.exe

=============================================================

 

 

 

I have added all the required librarys (wsock32.lib, shell32.lib, Ws2_32.lib  kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib) but no luck.

 

 

 

 

 

 

 

 

 

Can Any one give me the solution how to compile with wrapper library... or any document link.

 

 

 

 

 

 

 

 

 

Thanks in advance.

Programming VIX in Python

$
0
0

Hello:

 

I need to program some funtions with VIX API but I need do it in python. For this purpose I need to import dll, etc to python... and call vix functions from a python script...

 

someone can helps me??

 

thanks!

Call to Reset(VIX_VMPOWEROP_FROM_GUEST) hangs at some guests

$
0
0

Hello,

 

calling Reset with the option VIX_VMPOWEROP_FROM_GUEST and then calling Wait hangs at some guests waiting forever for the operation to complete (even when the guest SO restarted ok). Currently I have one guest with XP that hangs and 2 guests with 2003 server that works fine.

 

I'm using 1.10.2. Any ideas?

Call to RunProgramInGuest hangs without executing anything

$
0
0

Hello,

 

I'm automating several things on VMs located at a 3.5 ESX host and I've found that sometimes executing RunProgramInGuest just after rebooting the guest does not start the application nor returns error. If I call jobHandle.Wait() it just waits forever. The guest is a 2003 R2 Server, not sure if this matters.

 

Any hint?

 

PD: The code to execute the application is:

 

 

IJob jobHandle = _vmHandle.RunProgramInGuest(exePath,parameters, VixCOM.Constants.VIX_RUNPROGRAM_ACTIVATE_WINDOW, null, null);
int[] propertyIds = new int[] { VixCOM.Constants.VIX_PROPERTY_JOB_RESULT_GUEST_PROGRAM_EXIT_CODE };
object results = new object();
ulong errorValue = jobHandle.Wait(propertyIds, ref results);

Can we use VIX to get VMNet info from Workstation

$
0
0

Hi,

 

I am using VIX for communicating with VM i.e. to start and run the apps inside VM. I am curious to know , is there any way to get the available VMNet info from Workstation. Usually VMnet0, Vmnet1 and VMNet8 for Bridge, host and NAT respectvely. I want to are rest of VMNet are free for use ?

 

The information is available in Virtual Network Editor ( i.e.Edit -> Virtual Network Editor ) but i want to access the same information through code.

 

Thanks in advance,,,,,


vix rise vmware core dump in win7 64 bit

$
0
0

when use win7 64bit with vix 1.11.0-471780 this core dump, pls  help me find out the problem

the vm mirror  image is create at win7 32bit and anything is well!

 

Nov 29 19:55:55.414: vmx| Log for VMware Workstation pid=1440 version=7.1.5 build=build-491717 option=Release
Nov 29 19:55:55.414: vmx| The process is 64-bit.
Nov 29 19:55:55.414: vmx| Host codepage=windows-936 encoding=GBK
Nov 29 19:55:55.414: vmx| Hostname=auto-PC
Nov 29 19:55:55.414: vmx| IP=(Unknown)
Nov 29 19:55:55.414: vmx| IP=(Unknown)
Nov 29 19:55:55.414: vmx| IP=(Unknown)
Nov 29 19:55:55.414: vmx| IP=169.254.98.241
Nov 29 19:55:55.414: vmx| IP=192.168.10.153
Nov 29 19:55:55.414: vmx| IP=192.168.110.1
Nov 29 19:55:55.429: vmx| Command line: "C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe" "-s" "vmx.stdio.keep=TRUE" "-#" "product=1;name=VMware Workstation;version=7.1.5;buildnumber=491717;licensename=VMware Workstation;licenseversion=7.0+;" "-@" "pipe=\\.\pipe\vmx08a5d9fb744f88b6;" "G:\VM\DRIVER\Windows 7 sp1\Windows 7.vmx"
Nov 29 19:55:55.429: vmx| Msg_SetLocale: HostLocale=GBK UserLocale=NULL
Nov 29 19:55:55.460: vmx| UI Connecting to pipe '\\.\pipe\vmx08a5d9fb744f88b6' with user '(null)'
Nov 29 19:55:55.460: vmx| VMXVmdb: Local connection timeout: 60000 ms.
Nov 29 19:55:55.523: vmx| Vix: [2756 mainDispatch.c:374]: VMAutomation: Initializing VMAutomation.
Nov 29 19:55:55.523: vmx| Vix: [2756 mainDispatch.c:397]: VMAutomation: Detected the VM is not managed
Nov 29 19:55:55.523: vmx| Vix: [2756 mainDispatch.c:658]: VMAutomationOpenListenerSocket() listening
Nov 29 19:55:55.523: vmx| Vix: [2756 mainDispatch.c:3661]: VMAutomation_ReportPowerOpFinished: statevar=0, newAppState=1870, success=1
Nov 29 19:55:55.523: vmx| Transitioned vmx/execState/val to poweredOff
Nov 29 19:55:55.523: vmx| Vix: [2756 mainDispatch.c:3661]: VMAutomation_ReportPowerOpFinished: statevar=1, newAppState=1873, success=1
Nov 29 19:55:55.523: vmx| Vix: [2756 mainDispatch.c:3661]: VMAutomation_ReportPowerOpFinished: statevar=2, newAppState=1877, success=1
Nov 29 19:55:55.523: vmx| Vix: [2756 mainDispatch.c:3661]: VMAutomation_ReportPowerOpFinished: statevar=3, newAppState=1881, success=1
Nov 29 19:55:55.523: vmx| HOSTINFO 8438264468 @ 2539042Hz -> 0 @ 1000000Hz
Nov 29 19:55:55.523: vmx| HOSTINFO ((x * 3383140015) >> 33) + -3323404837
Nov 29 19:55:55.523: vmx| HD: host version is 6.1.7600
Nov 29 19:55:55.523: vmx| HD: addr fffff80003cf06b0
Nov 29 19:55:55.523: vmx| HD: fffff80003e59c00, 0
Nov 29 19:55:55.523: vmx| Locked limit delta -2558 pages
Nov 29 19:55:55.523: vmx| Locked limit delta 2589 pages
Nov 29 19:55:55.523: vmx| Locked limit delta -2560 pages
Nov 29 19:55:55.523: vmx| Locked limit delta 2560 pages
Nov 29 19:55:55.523: vmx| Locked limit delta -2560 pages
Nov 29 19:55:55.539: vmx| Locked limit delta 2560 pages
Nov 29 19:55:55.539: vmx| Locked limit delta -2560 pages
Nov 29 19:55:55.539: vmx| Locked limit delta 2560 pages
Nov 29 19:55:55.539: vmx| Locked limit delta -2560 pages
Nov 29 19:55:55.539: vmx| Locked limit delta 2560 pages
Nov 29 19:55:55.539: vmx| VerificationOfHostParameters status 0
Nov 29 19:55:55.539: vmx| VMMon_GetkHzEstimate: Calculated 2599979 kHz
Nov 29 19:55:55.539: vmx| VMMon_RememberkHzEstimate: Calculated 2599979 kHz
Nov 29 19:55:55.539: vmx| TSC kHz estimates: vmmon 2599979, remembered 2599979, osReported 2603000. Using 2599979 kHz.
Nov 29 19:55:55.539: vmx| CPU # 0 TSC = 8640810992918
Nov 29 19:55:55.539: vmx| CPU # 1 TSC = 8640810992620
Nov 29 19:55:55.539: vmx| TSC delta 298
Nov 29 19:55:55.539: vmx| CPU # 0 TSC = 8640811073284
Nov 29 19:55:55.539: vmx| CPU # 1 TSC = 8640811073233
Nov 29 19:55:55.539: vmx| TSC delta 51
Nov 29 19:55:55.539: vmx| CPU # 0 TSC = 8640811148255
Nov 29 19:55:55.539: vmx| CPU # 1 TSC = 8640811148204
Nov 29 19:55:55.539: vmx| TSC delta 51
Nov 29 19:55:55.539: vmx| CPU # 0 TSC = 8640811223083
Nov 29 19:55:55.539: vmx| CPU # 1 TSC = 8640811223032
Nov 29 19:55:55.539: vmx| TSC delta 51
Nov 29 19:55:55.539: vmx| TSC min delta 51
Nov 29 19:55:55.539: vmx| PTSC: RefClockToTSC 2539042Hz -> 2599979000Hz
Nov 29 19:55:55.539: vmx| PTSC: RefClockToTSC ((x * 4294967282) >> 22)
Nov 29 19:55:55.539: vmx| PTSC: using TSC
Nov 29 19:55:55.539: vmx| CPUID[0] vendor: GenuineIntel
Nov 29 19:55:55.539: vmx| CPUID[0]   name: Pentium(R) Dual-Core  CPU      E5300  @ 2.60GHz
Nov 29 19:55:55.539: vmx| CPUID[0] level 00000000, 0: 0x0000000d 0x756e6547 0x6c65746e 0x49656e69
Nov 29 19:55:55.539: vmx| CPUID[0] level 00000001, 0: 0x0001067a 0x00020800 0x0c00e3bd 0xbfebfbff
Nov 29 19:55:55.539: vmx| CPUID[0] level 00000002, 0: 0x05b0b101 0x005657f0 0x00000000 0x2cb4307d
Nov 29 19:55:55.539: vmx| CPUID[0] level 00000003, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[0] level 00000004, 0: 0x04000121 0x01c0003f 0x0000003f 0x00000001
Nov 29 19:55:55.539: vmx| CPUID[0] level 00000005, 0: 0x00000040 0x00000040 0x00000003 0x00022220
Nov 29 19:55:55.539: vmx| CPUID[0] level 00000006, 0: 0x00000001 0x00000002 0x00000003 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[0] level 00000007, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[0] level 00000008, 0: 0x00000400 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[0] level 00000009, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[0] level 0000000a, 0: 0x07280202 0x00000000 0x00000000 0x00000503
Nov 29 19:55:55.539: vmx| CPUID[0] level 0000000b, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[0] level 0000000c, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[0] level 0000000d, 0: 0x00000003 0x00000240 0x00000240 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[0] level 80000000, 0: 0x80000008 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[0] level 80000001, 0: 0x00000000 0x00000000 0x00000001 0x20100800
Nov 29 19:55:55.539: vmx| CPUID[0] level 80000002, 0: 0x746e6550 0x286d7569 0x44202952 0x2d6c6175
Nov 29 19:55:55.539: vmx| CPUID[0] level 80000003, 0: 0x65726f43 0x50432020 0x20202055 0x45202020
Nov 29 19:55:55.539: vmx| CPUID[0] level 80000004, 0: 0x30303335 0x20402020 0x30362e32 0x007a4847
Nov 29 19:55:55.539: vmx| CPUID[0] level 80000005, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[0] level 80000006, 0: 0x00000000 0x00000000 0x08006040 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[0] level 80000007, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[0] level 80000008, 0: 0x00003024 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[1] vendor: GenuineIntel
Nov 29 19:55:55.539: vmx| CPUID[1]   name: Pentium(R) Dual-Core  CPU      E5300  @ 2.60GHz
Nov 29 19:55:55.539: vmx| CPUID[1] level 00000000, 0: 0x0000000d 0x756e6547 0x6c65746e 0x49656e69
Nov 29 19:55:55.539: vmx| CPUID[1] level 00000001, 0: 0x0001067a 0x01020800 0x0c00e3bd 0xbfebfbff
Nov 29 19:55:55.539: vmx| CPUID[1] level 00000002, 0: 0x05b0b101 0x005657f0 0x00000000 0x2cb4307d
Nov 29 19:55:55.539: vmx| CPUID[1] level 00000003, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[1] level 00000004, 0: 0x04000121 0x01c0003f 0x0000003f 0x00000001
Nov 29 19:55:55.539: vmx| CPUID[1] level 00000005, 0: 0x00000040 0x00000040 0x00000003 0x00022220
Nov 29 19:55:55.539: vmx| CPUID[1] level 00000006, 0: 0x00000001 0x00000002 0x00000003 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[1] level 00000007, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[1] level 00000008, 0: 0x00000400 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[1] level 00000009, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[1] level 0000000a, 0: 0x07280202 0x00000000 0x00000000 0x00000503
Nov 29 19:55:55.539: vmx| CPUID[1] level 0000000b, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[1] level 0000000c, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[1] level 0000000d, 0: 0x00000003 0x00000240 0x00000240 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[1] level 80000000, 0: 0x80000008 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[1] level 80000001, 0: 0x00000000 0x00000000 0x00000001 0x20100800
Nov 29 19:55:55.539: vmx| CPUID[1] level 80000002, 0: 0x746e6550 0x286d7569 0x44202952 0x2d6c6175
Nov 29 19:55:55.539: vmx| CPUID[1] level 80000003, 0: 0x65726f43 0x50432020 0x20202055 0x45202020
Nov 29 19:55:55.539: vmx| CPUID[1] level 80000004, 0: 0x30303335 0x20402020 0x30362e32 0x007a4847
Nov 29 19:55:55.539: vmx| CPUID[1] level 80000005, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[1] level 80000006, 0: 0x00000000 0x00000000 0x08006040 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[1] level 80000007, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID[1] level 80000008, 0: 0x00003024 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| hostCPUID vendor: GenuineIntel
Nov 29 19:55:55.539: vmx| hostCPUID   name: Pentium(R) Dual-Core  CPU      E5300  @ 2.60GHz
Nov 29 19:55:55.539: vmx| hostCPUID level 00000000, 0: 0x0000000d 0x756e6547 0x6c65746e 0x49656e69
Nov 29 19:55:55.539: vmx| hostCPUID level 00000001, 0: 0x0001067a 0x00020800 0x0c00e3bd 0xbfebfbff
Nov 29 19:55:55.539: vmx| hostCPUID level 00000002, 0: 0x05b0b101 0x005657f0 0x00000000 0x2cb4307d
Nov 29 19:55:55.539: vmx| hostCPUID level 00000003, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| hostCPUID level 00000004, 0: 0x04000121 0x01c0003f 0x0000003f 0x00000001
Nov 29 19:55:55.539: vmx| hostCPUID level 00000005, 0: 0x00000040 0x00000040 0x00000003 0x00022220
Nov 29 19:55:55.539: vmx| hostCPUID level 00000006, 0: 0x00000001 0x00000002 0x00000003 0x00000000
Nov 29 19:55:55.539: vmx| hostCPUID level 00000007, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| hostCPUID level 00000008, 0: 0x00000400 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| hostCPUID level 00000009, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| hostCPUID level 0000000a, 0: 0x07280202 0x00000000 0x00000000 0x00000503
Nov 29 19:55:55.539: vmx| hostCPUID level 0000000b, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| hostCPUID level 0000000c, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| hostCPUID level 0000000d, 0: 0x00000003 0x00000240 0x00000240 0x00000000
Nov 29 19:55:55.539: vmx| hostCPUID level 80000000, 0: 0x80000008 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| hostCPUID level 80000001, 0: 0x00000000 0x00000000 0x00000001 0x20100800
Nov 29 19:55:55.539: vmx| hostCPUID level 80000002, 0: 0x746e6550 0x286d7569 0x44202952 0x2d6c6175
Nov 29 19:55:55.539: vmx| hostCPUID level 80000003, 0: 0x65726f43 0x50432020 0x20202055 0x45202020
Nov 29 19:55:55.539: vmx| hostCPUID level 80000004, 0: 0x30303335 0x20402020 0x30362e32 0x007a4847
Nov 29 19:55:55.539: vmx| hostCPUID level 80000005, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| hostCPUID level 80000006, 0: 0x00000000 0x00000000 0x08006040 0x00000000
Nov 29 19:55:55.539: vmx| hostCPUID level 80000007, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| hostCPUID level 80000008, 0: 0x00003024 0x00000000 0x00000000 0x00000000
Nov 29 19:55:55.539: vmx| CPUID Maximum Physical Address Bits supported across all CPUs: 36
Nov 29 19:55:55.539: vmx| CPU[0]: MSR  0x3a =                0x5
Nov 29 19:55:55.539: vmx| CPU[1]: MSR  0x3a =                0x5
Nov 29 19:55:55.539: vmx| Common: MSR  0x3a =                0x5
Nov 29 19:55:55.539: vmx| CPU[0]: MSR 0x480 =   0x5a08000000000d
Nov 29 19:55:55.539: vmx| CPU[1]: MSR 0x480 =   0x5a08000000000d
Nov 29 19:55:55.539: vmx| Common: MSR 0x480 =   0x5a08000000000d
Nov 29 19:55:55.539: vmx| CPU[0]: MSR 0x481 =       0x3f00000016
Nov 29 19:55:55.539: vmx| CPU[1]: MSR 0x481 =       0x3f00000016
Nov 29 19:55:55.539: vmx| Common: MSR 0x481 =       0x3f00000016
Nov 29 19:55:55.539: vmx| CPU[0]: MSR 0x482 = 0xf7f9fffe0401e172
Nov 29 19:55:55.539: vmx| CPU[1]: MSR 0x482 = 0xf7f9fffe0401e172
Nov 29 19:55:55.539: vmx| Common: MSR 0x482 = 0xf7f9fffe0401e172
Nov 29 19:55:55.539: vmx| CPU[0]: MSR 0x483 =    0x3ffff00036dff
Nov 29 19:55:55.539: vmx| CPU[1]: MSR 0x483 =    0x3ffff00036dff
Nov 29 19:55:55.539: vmx| Common: MSR 0x483 =    0x3ffff00036dff
Nov 29 19:55:55.539: vmx| CPU[0]: MSR 0x484 =     0x3fff000011ff
Nov 29 19:55:55.539: vmx| CPU[1]: MSR 0x484 =     0x3fff000011ff
Nov 29 19:55:55.539: vmx| Common: MSR 0x484 =     0x3fff000011ff
Nov 29 19:55:55.539: vmx| CPU[0]: MSR 0x485 =            0x403c0
Nov 29 19:55:55.539: vmx| CPU[1]: MSR 0x485 =            0x403c0
Nov 29 19:55:55.539: vmx| Common: MSR 0x485 =            0x403c0
Nov 29 19:55:55.539: vmx| CPU[0]: MSR 0x486 =         0x80000021
Nov 29 19:55:55.539: vmx| CPU[1]: MSR 0x486 =         0x80000021
Nov 29 19:55:55.539: vmx| Common: MSR 0x486 =         0x80000021
Nov 29 19:55:55.539: vmx| CPU[0]: MSR 0x487 =         0xffffffff
Nov 29 19:55:55.539: vmx| CPU[1]: MSR 0x487 =         0xffffffff
Nov 29 19:55:55.539: vmx| Common: MSR 0x487 =         0xffffffff
Nov 29 19:55:55.539: vmx| CPU[0]: MSR 0x488 =             0x2000
Nov 29 19:55:55.539: vmx| CPU[1]: MSR 0x488 =             0x2000
Nov 29 19:55:55.539: vmx| Common: MSR 0x488 =             0x2000
Nov 29 19:55:55.539: vmx| CPU[0]: MSR 0x489 =            0x427ff
Nov 29 19:55:55.539: vmx| CPU[1]: MSR 0x489 =            0x427ff
Nov 29 19:55:55.539: vmx| Common: MSR 0x489 =            0x427ff
Nov 29 19:55:55.539: vmx| CPU[0]: MSR 0x48a =               0x2c
Nov 29 19:55:55.539: vmx| CPU[1]: MSR 0x48a =               0x2c
Nov 29 19:55:55.539: vmx| Common: MSR 0x48a =               0x2c
Nov 29 19:55:55.539: vmx| CPU[0]: MSR 0x48b =       0x4100000000
Nov 29 19:55:55.539: vmx| CPU[1]: MSR 0x48b =       0x4100000000
Nov 29 19:55:55.539: vmx| Common: MSR 0x48b =       0x4100000000
Nov 29 19:55:55.539: vmx| CPU[0]: MSR 0x48c =                  0
Nov 29 19:55:55.539: vmx| CPU[1]: MSR 0x48c =                  0
Nov 29 19:55:55.539: vmx| Common: MSR 0x48c =                  0
Nov 29 19:55:55.539: vmx| CPU[0]: MSR 0x48d =                  0
Nov 29 19:55:55.539: vmx| CPU[1]: MSR 0x48d =                  0
Nov 29 19:55:55.539: vmx| Common: MSR 0x48d =                  0
Nov 29 19:55:55.539: vmx| CPU[0]: MSR 0x48e =                  0
Nov 29 19:55:55.539: vmx| CPU[1]: MSR 0x48e =                  0
Nov 29 19:55:55.539: vmx| Common: MSR 0x48e =                  0
Nov 29 19:55:55.539: vmx| CPU[0]: MSR 0x48f =                  0
Nov 29 19:55:55.539: vmx| CPU[1]: MSR 0x48f =                  0
Nov 29 19:55:55.539: vmx| Common: MSR 0x48f =                  0
Nov 29 19:55:55.539: vmx| CPU[0]: MSR 0x490 =                  0
Nov 29 19:55:55.539: vmx| CPU[1]: MSR 0x490 =                  0
Nov 29 19:55:55.539: vmx| Common: MSR 0x490 =                  0
Nov 29 19:55:55.539: vmx| Host ACPI: can't find SRAT
Nov 29 19:55:55.539: vmx| Host: SRAT tables not found in memory
Nov 29 19:55:55.539: vmx| Setting thread 36 stack size to 1048576.
Nov 29 19:55:55.539: WinNotifyThread| WinNotify thread is alive
Nov 29 19:55:55.539: vmx| SnapshotVMX: GetDictionaryBuffers failed. One of the parameters supplied is invalid (1).
Nov 29 19:55:55.539: vmx| VMAutomation: Vix unable to get snapshot tree.
Nov 29 19:55:55.539: vmx| HOSTINFO: Seeing Intel CPU, numCoresPerCPU 2 numThreadsPerCore 1.
Nov 29 19:55:55.539: vmx| HOSTINFO: This machine has 1 physical CPUS, 2 total cores, and 2 logical CPUs.
Nov 29 19:55:55.539: vmx| Vix: [2756 mainDispatch.c:4041]: VMAutomationProcessMessage: Postpone the command. VM not running (opcode 151)
Nov 29 19:55:55.773: vmx| ConfigCheck: No rules file found. Checks are disabled.
Nov 29 19:55:55.773: vmx| changing directory to G:\VM\DRIVER\Windows 7 sp1\.
Nov 29 19:55:55.773: vmx| Config file: G:\VM\DRIVER\Windows 7 sp1\Windows 7.vmx
Nov 29 19:55:55.773: vmx| Vix: [2756 mainDispatch.c:3661]: VMAutomation_ReportPowerOpFinished: statevar=1, newAppState=1874, success=1
Nov 29 19:55:55.773: vmx| Vix: [2756 mainDispatch.c:3661]: VMAutomation_ReportPowerOpFinished: statevar=2, newAppState=1878, success=1
Nov 29 19:55:55.789: vmx| VMXVmdb_LoadRawConfig: Loading raw config
Nov 29 19:55:55.835: vmx| VMXVmdbCbVmVmxExecState: Exec state change requested to state poweredOn without reset, hard, softOptionTimeout: 0.
Nov 29 19:55:55.835: vmx| PowerOn
Nov 29 19:55:55.835: vmx| VMX_PowerOn: VMX build 491717, UI build 491717
Nov 29 19:55:55.835: vmx| Host: WIN32 highest NUMA node 0
Nov 29 19:55:55.835: vmx| Host: WIN32 NUMA node 0, CPU mask 0x0000000000000003
Nov 29 19:55:55.851: vmx| VMXVmdb_LoadRawConfig: Loading raw config
Nov 29 19:55:55.851: vmx| Vix: [2756 mainDispatch.c:3661]: VMAutomation_ReportPowerOpFinished: statevar=0, newAppState=1871, success=1
Nov 29 19:55:55.851: vmx| HOST Windows version 6.1, build 7600, platform 2, "", SMP
Nov 29 19:55:55.851: vmx| DICT --- USER PREFERENCES C:\Users\Administrator\AppData\Roaming\VMware\preferences.ini
Nov 29 19:55:55.851: vmx| DICT       pref.eula.0.appName = VMware Workstation
Nov 29 19:55:55.851: vmx| DICT   pref.eula.0.buildNumber = 385536
Nov 29 19:55:55.851: vmx| DICT     pref.trayicon.enabled = true
Nov 29 19:55:55.851: vmx| DICT       pref.usbDev.maxDevs = 0
Nov 29 19:55:55.851: vmx| DICT pref.keyboardAndMouse.maxProfiles = 0
Nov 29 19:55:55.851: vmx| DICT          pref.view.navBar = FALSE
Nov 29 19:55:55.851: vmx| DICT   pref.view.toolbars.list = _SEP_,POWER_OFF,SUSPEND,POWER_ON,RESET,POLICIES,PKG_SETTINGS,NEW_PKG,POCKET_ACE,PREVIEW,SNAPSHOT,REVERT,SNAPSHOT_MANAGER,FAVORITES,QUICK_SWITCH,FULL_SCREEN,UNITY,SUMMARY,APPLIANCE,CONSOLE,QUICK_MINIMIZE,FILE_EXIT,INSTANCE_DETAILS,INSTANCE_REACT,INSTANCE_DEACT,REPLAY_PLAY,REPLAY_RECORD
Nov 29 19:55:55.851: vmx| DICT       pref.placement.left = 0
Nov 29 19:55:55.851: vmx| DICT        pref.placement.top = 0
Nov 29 19:55:55.851: vmx| DICT      pref.placement.right = 1044
Nov 29 19:55:55.851: vmx| DICT     pref.placement.bottom = 920
Nov 29 19:55:55.851: vmx| DICT   pref.ws.currentObj.path = /vm/#08a5d9fb744f88b6/
Nov 29 19:55:55.851: vmx| DICT   pref.ws.currentObj.type = vm
Nov 29 19:55:55.851: vmx| DICT  pref.ws.openedObj.maxNum = 1
Nov 29 19:55:55.851: vmx| DICT pref.snapshotManager.left = 8
Nov 29 19:55:55.851: vmx| DICT  pref.snapshotManager.top = 30
Nov 29 19:55:55.851: vmx| DICT pref.snapshotManager.right = 643
Nov 29 19:55:55.851: vmx| DICT pref.snapshotManager.bottom = 548
Nov 29 19:55:55.851: vmx| DICT hint.mainmem.lazySnapshotHint = FALSE
Nov 29 19:55:55.851: vmx| DICT hint.cui.toolsInfoBar.suppressible = FALSE
Nov 29 19:55:55.851: vmx| DICT       pref.eula.1.appName = VMware Workstation
Nov 29 19:55:55.851: vmx| DICT   pref.eula.1.buildNumber = 491717
Nov 29 19:55:55.851: vmx| DICT pref.ws.openedObj0.present = TRUE
Nov 29 19:55:55.851: vmx| DICT   pref.ws.openedObj0.type = vm
Nov 29 19:55:55.851: vmx| DICT   pref.ws.openedObj0.path = /vm/#08a5d9fb744f88b6/
Nov 29 19:55:55.851: vmx| DICT   pref.ws.openedObj0.file = G:\VM\DRIVER\Windows 7 sp1\Windows 7.vmx
Nov 29 19:55:55.851: vmx| DICT   pref.ws.openedObj0.name = Windows 7
Nov 29 19:55:55.851: vmx| DICT --- USER DEFAULTS C:\Users\Administrator\AppData\Roaming\VMware\config.ini
Nov 29 19:55:55.851: vmx| DICT --- HOST DEFAULTS C:\ProgramData\VMware\VMware Workstation\config.ini
Nov 29 19:55:55.851: vmx| DICT installerDefaults.autoSoftwareUpdateEnabled = no
Nov 29 19:55:55.851: vmx| DICT installerDefaults.componentDownloadEnabled = yes
Nov 29 19:55:55.851: vmx| DICT installerDefaults.dataCollectionEnabled = no
Nov 29 19:55:55.851: vmx| DICT prefvmx.useRecommendedLockedMemSize = TRUE
Nov 29 19:55:55.851: vmx| DICT       prefvmx.minVmMemPct = 100
Nov 29 19:55:55.851: vmx| DICT --- SITE DEFAULTS C:\ProgramData\VMware\VMware Workstation\config.ini
Nov 29 19:55:55.851: vmx| DICT installerDefaults.autoSoftwareUpdateEnabled = no
Nov 29 19:55:55.851: vmx| DICT installerDefaults.componentDownloadEnabled = yes
Nov 29 19:55:55.851: vmx| DICT installerDefaults.dataCollectionEnabled = no
Nov 29 19:55:55.851: vmx| DICT prefvmx.useRecommendedLockedMemSize = TRUE
Nov 29 19:55:55.851: vmx| DICT       prefvmx.minVmMemPct = 100
Nov 29 19:55:55.851: vmx| DICT --- COMMAND LINE
Nov 29 19:55:55.851: vmx| DICT            vmx.stdio.keep = TRUE
Nov 29 19:55:55.851: vmx| DICT             gui.available = TRUE
Nov 29 19:55:55.851: vmx| DICT --- CONFIGURATION G:\VM\DRIVER\Windows 7 sp1\Windows 7.vmx
Nov 29 19:55:55.851: vmx| DICT            config.version = 8
Nov 29 19:55:55.851: vmx| DICT         virtualHW.version = 7
Nov 29 19:55:55.851: vmx| DICT                  numvcpus = 1
Nov 29 19:55:55.851: vmx| DICT      cpuid.coresPerSocket = 1
Nov 29 19:55:55.851: vmx| DICT                  maxvcpus = 4
Nov 29 19:55:55.851: vmx| DICT             scsi0.present = TRUE
Nov 29 19:55:55.851: vmx| DICT          scsi0.virtualDev = lsisas1068
Nov 29 19:55:55.851: vmx| DICT                   memsize = 1024
Nov 29 19:55:55.851: vmx| DICT                mem.hotadd = TRUE
Nov 29 19:55:55.851: vmx| DICT           scsi0:0.present = TRUE
Nov 29 19:55:55.851: vmx| DICT          scsi0:0.fileName = Windows 7-000004.vmdk
Nov 29 19:55:55.851: vmx| DICT            ide1:0.present = TRUE
Nov 29 19:55:55.851: vmx| DICT           ide1:0.fileName = auto detect
Nov 29 19:55:55.851: vmx| DICT         ide1:0.deviceType = cdrom-raw
Nov 29 19:55:55.851: vmx| DICT          floppy0.fileType = device
Nov 29 19:55:55.851: vmx| DICT          floppy0.fileName =
Nov 29 19:55:55.851: vmx| DICT      floppy0.clientDevice = FALSE
Nov 29 19:55:55.851: vmx| DICT               usb.present = TRUE
Nov 29 19:55:55.851: vmx| DICT              ehci.present = TRUE
Nov 29 19:55:55.851: vmx| DICT             sound.present = TRUE
Nov 29 19:55:55.851: vmx| DICT            sound.fileName = -1
Nov 29 19:55:55.851: vmx| DICT          sound.autodetect = TRUE
Nov 29 19:55:55.851: vmx| DICT              mks.enable3d = TRUE
Nov 29 19:55:55.851: vmx| DICT        pciBridge0.present = TRUE
Nov 29 19:55:55.851: vmx| DICT        pciBridge4.present = TRUE
Nov 29 19:55:55.851: vmx| DICT     pciBridge4.virtualDev = pcieRootPort
Nov 29 19:55:55.851: vmx| DICT      pciBridge4.functions = 8
Nov 29 19:55:55.851: vmx| DICT        pciBridge5.present = TRUE
Nov 29 19:55:55.851: vmx| DICT     pciBridge5.virtualDev = pcieRootPort
Nov 29 19:55:55.851: vmx| DICT      pciBridge5.functions = 8
Nov 29 19:55:55.851: vmx| DICT        pciBridge6.present = TRUE
Nov 29 19:55:55.851: vmx| DICT     pciBridge6.virtualDev = pcieRootPort
Nov 29 19:55:55.851: vmx| DICT      pciBridge6.functions = 8
Nov 29 19:55:55.851: vmx| DICT        pciBridge7.present = TRUE
Nov 29 19:55:55.851: vmx| DICT     pciBridge7.virtualDev = pcieRootPort
Nov 29 19:55:55.851: vmx| DICT      pciBridge7.functions = 8
Nov 29 19:55:55.851: vmx| DICT             vmci0.present = TRUE
Nov 29 19:55:55.851: vmx| DICT    roamingVM.exitBehavior = go
Nov 29 19:55:55.851: vmx| DICT               displayName = Windows 7
Nov 29 19:55:55.851: vmx| DICT                   guestOS = windows7
Nov 29 19:55:55.851: vmx| DICT                     nvram = Windows 7.nvram
Nov 29 19:55:55.851: vmx| DICT virtualHW.productCompatibility = hosted
Nov 29 19:55:55.851: vmx| DICT    easyInstall.keepFloppy = TRUE
Nov 29 19:55:55.851: vmx| DICT        extendedConfigFile = Windows 7.vmxf
Nov 29 19:55:55.851: vmx| DICT            tools.syncTime = FALSE
Nov 29 19:55:55.851: vmx| DICT             uuid.location = 56 4d 88 65 16 c0 ac 84-4b cb 82 e4 36 be 84 f6
Nov 29 19:55:55.851: vmx| DICT                 uuid.bios = 56 4d 42 64 2d f2 88 9e-b4 26 03 3b ac 1c 81 8a
Nov 29 19:55:55.851: vmx| DICT             cleanShutdown = FALSE
Nov 29 19:55:55.851: vmx| DICT          replay.supported = TRUE
Nov 29 19:55:55.851: vmx| DICT debugStub.winOffsets.version = 7
Nov 29 19:55:55.851: vmx| DICT           replay.filename =
Nov 29 19:55:55.851: vmx| DICT              scsi0:0.redo =
Nov 29 19:55:55.851: vmx| DICT  pciBridge0.pciSlotNumber = 17
Nov 29 19:55:55.851: vmx| DICT  pciBridge4.pciSlotNumber = 21
Nov 29 19:55:55.851: vmx| DICT  pciBridge5.pciSlotNumber = 22
Nov 29 19:55:55.851: vmx| DICT  pciBridge6.pciSlotNumber = 23
Nov 29 19:55:55.851: vmx| DICT  pciBridge7.pciSlotNumber = 24
Nov 29 19:55:55.851: vmx| DICT       scsi0.pciSlotNumber = 160
Nov 29 19:55:55.851: vmx| DICT         usb.pciSlotNumber = 32
Nov 29 19:55:55.851: vmx| DICT       sound.pciSlotNumber = 34
Nov 29 19:55:55.851: vmx| DICT        ehci.pciSlotNumber = 35
Nov 29 19:55:55.851: vmx| DICT       vmci0.pciSlotNumber = 36
Nov 29 19:55:55.851: vmx| DICT             scsi0.sasWWID = 50 05 05 64 2d f2 88 90
Nov 29 19:55:55.851: vmx| DICT  vmotion.checkpointFBSize = 134217728
Nov 29 19:55:55.851: vmx| DICT             usb:0.present = TRUE
Nov 29 19:55:55.851: vmx| DICT             usb:1.present = TRUE
Nov 29 19:55:55.851: vmx| DICT                  vmci0.id = -1407417974
Nov 29 19:55:55.851: vmx| DICT          usb:1.deviceType = hub
Nov 29 19:55:55.851: vmx| DICT          usb:0.deviceType = mouse
Nov 29 19:55:55.851: vmx| DICT debugStub.winOffsets.value = 0xb8,0xb4,0x18,0x188,0x16c,15,408,0x268,0x260,0x230,0x218,0x88,0x28,0x18,0x20,0x24,1,0x280,0x0,0xc,0x14,0x200000,0x1a8,0xc,0xc,0x18,0x12c,0x1ec
Nov 29 19:55:55.851: vmx| DICT        floppy0.autodetect = TRUE
Nov 29 19:55:55.851: vmx| DICT    floppy0.startConnected = FALSE
Nov 29 19:55:55.851: vmx| DICT       tools.remindInstall = FALSE
Nov 29 19:55:55.851: vmx| DICT         ide1:0.autodetect = TRUE
Nov 29 19:55:55.851: vmx| DICT     ide1:0.startConnected = FALSE
Nov 29 19:55:55.851: vmx| DICT          unity.wasCapable = TRUE
Nov 29 19:55:55.851: vmx| DICT checkpoint.vmState.readOnly = TRUE
Nov 29 19:55:55.851: vmx| DICT        checkpoint.vmState = Windows 7-Snapshot25.vmsn
Nov 29 19:55:55.851: vmx| DICT   sched.mem.pshare.enable = FALSE
Nov 29 19:55:55.851: vmx| DICT      mainMem.useNamedFile = FALSE
Nov 29 19:55:55.851: vmx| DICT               MemTrimRate = 0
Nov 29 19:55:55.851: vmx| DICT     MemAllowAutoScaleDown = FALSE
Nov 29 19:55:55.851: vmx| DICT         ethernet0.present = TRUE
Nov 29 19:55:55.851: vmx| DICT      ethernet0.virtualDev = e1000
Nov 29 19:55:55.851: vmx| DICT   ethernet0.pciSlotNumber = 33
Nov 29 19:55:55.851: vmx| DICT  ethernet0.connectionType = hostonly
Nov 29 19:55:55.851: vmx| DICT   ethernet0.wakeOnPcktRcv = FALSE
Nov 29 19:55:55.851: vmx| DICT     ethernet0.addressType = generated
Nov 29 19:55:55.851: vmx| DICT ethernet0.generatedAddress = 00:0c:29:1c:81:8a
Nov 29 19:55:55.851: vmx| DICT ethernet0.generatedAddressOffset = 0
Nov 29 19:55:55.851: vmx| DICT --- USER DEFAULTS C:\Users\Administrator\AppData\Roaming\VMware\config.ini
Nov 29 19:55:55.851: vmx| DICT --- HOST DEFAULTS C:\ProgramData\VMware\VMware Workstation\config.ini
Nov 29 19:55:55.851: vmx| DICT installerDefaults.autoSoftwareUpdateEnabled = no
Nov 29 19:55:55.851: vmx| DICT installerDefaults.componentDownloadEnabled = yes
Nov 29 19:55:55.851: vmx| DICT installerDefaults.dataCollectionEnabled = no
Nov 29 19:55:55.851: vmx| DICT prefvmx.useRecommendedLockedMemSize = TRUE
Nov 29 19:55:55.851: vmx| DICT       prefvmx.minVmMemPct = 100
Nov 29 19:55:55.851: vmx| DICT --- SITE DEFAULTS C:\ProgramData\VMware\VMware Workstation\config.ini
Nov 29 19:55:55.851: vmx| DICT installerDefaults.autoSoftwareUpdateEnabled = no
Nov 29 19:55:55.851: vmx| DICT installerDefaults.componentDownloadEnabled = yes
Nov 29 19:55:55.851: vmx| DICT installerDefaults.dataCollectionEnabled = no
Nov 29 19:55:55.851: vmx| DICT prefvmx.useRecommendedLockedMemSize = TRUE
Nov 29 19:55:55.851: vmx| DICT       prefvmx.minVmMemPct = 100
Nov 29 19:55:55.851: vmx| DICT --- GLOBAL SETTINGS C:\ProgramData\VMware\VMware Workstation\settings.ini
Nov 29 19:55:55.851: vmx| DUMPER: restoring checkpoint version 8
Nov 29 19:55:55.851: vmx| Checkpointed in VMware Workstation, 7.1.5, build-491717, Windows Host
Nov 29 19:55:55.851: vmx| Resuming virtual machine from G:\VM\DRIVER\Windows 7 sp1\Windows 7-Snapshot25.vmsn with 1024 MB of memory.
Nov 29 19:55:55.851: vmx| Vix: [2756 mainDispatch.c:3661]: VMAutomation_ReportPowerOpFinished: statevar=1, newAppState=1873, success=1
Nov 29 19:55:55.851: vmx| hostCpuFeatures = 0x446001fc
Nov 29 19:55:55.851: vmx| hostNumPerfCounters = 2
Nov 29 19:55:55.851: vmx| MONITOR MODE: allowed modes          : BT32 HV
Nov 29 19:55:55.851: vmx| MONITOR MODE: user requested modes   : BT32 HV HWMMU
Nov 29 19:55:55.851: vmx| MONITOR MODE: guestOS preferred modes: HWMMU HV BT32
Nov 29 19:55:55.851: vmx| MONITOR MODE: filtered list          : HV BT32
Nov 29 19:55:55.851: vmx| HV Settings: virtual exec = 'hardware'; virtual mmu = 'software'
Nov 29 19:55:55.851: vmx| Basic VMX Information (0x005a08000000000d)
Nov 29 19:55:55.851: vmx|   VMCS revision ID                  13
Nov 29 19:55:55.851: vmx|   VMCS region length              2048
Nov 29 19:55:55.851: vmx|   VMX physical-address width   natural
Nov 29 19:55:55.851: vmx|   SMM dual-monitor mode            yes
Nov 29 19:55:55.851: vmx|   Advanced INS/OUTS info           yes
Nov 29 19:55:55.851: vmx|   True VMX MSRs                     no
Nov 29 19:55:55.851: vmx|   VMCS memory type                  WB
Nov 29 19:55:55.851: vmx| Pin-Based VM-Execution Controls (0x0000003f00000016)
Nov 29 19:55:55.851: vmx|   External-interrupt exiting     {0,1}
Nov 29 19:55:55.851: vmx|   NMI exiting                    {0,1}
Nov 29 19:55:55.851: vmx|   Virtual NMIs                   {0,1}
Nov 29 19:55:55.851: vmx|   Activate VMX-preemption timer  { 0 }
Nov 29 19:55:55.851: vmx| Primary Processor-Based VM-Execution Controls (0xf7f9fffe0401e172)
Nov 29 19:55:55.851: vmx|   Interrupt-window exiting       {0,1}
Nov 29 19:55:55.851: vmx|   Use TSC offsetting             {0,1}
Nov 29 19:55:55.851: vmx|   HLT exiting                    {0,1}
Nov 29 19:55:55.851: vmx|   INVLPG exiting                 {0,1}
Nov 29 19:55:55.851: vmx|   MWAIT exiting                  {0,1}
Nov 29 19:55:55.851: vmx|   RDPMC exiting                  {0,1}
Nov 29 19:55:55.851: vmx|   RDTSC exiting                  {0,1}
Nov 29 19:55:55.851: vmx|   CR3-load exiting               { 1 }
Nov 29 19:55:55.851: vmx|   CR3-store exiting              { 1 }
Nov 29 19:55:55.851: vmx|   CR8-load exiting               {0,1}
Nov 29 19:55:55.851: vmx|   CR8-store exiting              {0,1}
Nov 29 19:55:55.851: vmx|   Use TPR shadow                 {0,1}
Nov 29 19:55:55.851: vmx|   NMI-window exiting             {0,1}
Nov 29 19:55:55.851: vmx|   MOV-DR exiting                 {0,1}
Nov 29 19:55:55.851: vmx|   Unconditional I/O exiting      {0,1}
Nov 29 19:55:55.851: vmx|   Use I/O bitmaps                {0,1}
Nov 29 19:55:55.851: vmx|   Monitor trap flag              { 0 }
Nov 29 19:55:55.851: vmx|   Use MSR bitmaps                {0,1}
Nov 29 19:55:55.851: vmx|   MONITOR exiting                {0,1}
Nov 29 19:55:55.851: vmx|   PAUSE exiting                  {0,1}
Nov 29 19:55:55.851: vmx|   Activate secondary controls    {0,1}
Nov 29 19:55:55.851: vmx| Secondary Processor-Based VM-Execution Controls (0x0000004100000000)
Nov 29 19:55:55.851: vmx|   Virtualize APIC accesses       {0,1}
Nov 29 19:55:55.851: vmx|   Enable EPT                     { 0 }
Nov 29 19:55:55.851: vmx|   Descriptor-table exiting       { 0 }
Nov 29 19:55:55.851: vmx|   Enable RDTSCP                  { 0 }
Nov 29 19:55:55.851: vmx|   Virtualize x2APIC mode         { 0 }
Nov 29 19:55:55.851: vmx|   Enable VPID                    { 0 }
Nov 29 19:55:55.851: vmx|   WBINVD exiting                 {0,1}
Nov 29 19:55:55.851: vmx| VM-Exit Controls (0x0003ffff00036dff)
Nov 29 19:55:55.851: vmx|   Save debug controls            { 1 }
Nov 29 19:55:55.851: vmx|   Host address-space size        {0,1}
Nov 29 19:55:55.851: vmx|   Load IA32_PERF_GLOBAL_CTRL     {0,1}
Nov 29 19:55:55.851: vmx|   Acknowledge interrupt on exit  {0,1}
Nov 29 19:55:55.851: vmx|   Save IA32_PAT                  { 0 }
Nov 29 19:55:55.851: vmx|   Load IA32_PAT                  { 0 }
Nov 29 19:55:55.851: vmx|   Save IA32_EFER                 { 0 }
Nov 29 19:55:55.851: vmx|   Load IA32_EFER                 { 0 }
Nov 29 19:55:55.851: vmx|   Save VMX-preemption timer      { 0 }
Nov 29 19:55:55.851: vmx| VM-Entry Controls (0x00003fff000011ff)
Nov 29 19:55:55.851: vmx|   Load debug controls            { 1 }
Nov 29 19:55:55.851: vmx|   IA-32e mode guest              {0,1}
Nov 29 19:55:55.851: vmx|   Entry to SMM                   {0,1}
Nov 29 19:55:55.851: vmx|   Deactivate dual-monitor mode   {0,1}
Nov 29 19:55:55.851: vmx|   Load IA32_PERF_GLOBAL_CTRL     {0,1}
Nov 29 19:55:55.851: vmx|   Load IA32_PAT                  { 0 }
Nov 29 19:55:55.851: vmx|   Load IA32_EFER                 { 0 }
Nov 29 19:55:55.851: vmx| VPID and EPT Capabilities (0x0000000000000000)
Nov 29 19:55:55.851: vmx|   R=0/W=0/X=1                       no
Nov 29 19:55:55.851: vmx|   Page-walk length 3                no
Nov 29 19:55:55.851: vmx|   EPT memory type WB                no
Nov 29 19:55:55.851: vmx|   2MB super-page                    no
Nov 29 19:55:55.851: vmx|   INVEPT support                    no
Nov 29 19:55:55.851: vmx|   Type 1 INVEPT                     no
Nov 29 19:55:55.851: vmx|   Type 2 INVEPT                     no
Nov 29 19:55:55.851: vmx|   INVVPID support                   no
Nov 29 19:55:55.851: vmx|   Type 0 INVVPID                    no
Nov 29 19:55:55.851: vmx|   Type 1 INVVPID                    no
Nov 29 19:55:55.851: vmx|   Type 2 INVVPID                    no
Nov 29 19:55:55.851: vmx|   Type 3 INVVPID                    no
Nov 29 19:55:55.851: vmx| Miscellaneous VMX Data (0x00000000000403c0)
Nov 29 19:55:55.851: vmx|   TSC to preemption timer ratio      0
Nov 29 19:55:55.851: vmx|   Activity State HLT               yes
Nov 29 19:55:55.851: vmx|   Activity State shutdown          yes
Nov 29 19:55:55.851: vmx|   Activity State wait-for-SIPI     yes
Nov 29 19:55:55.851: vmx|   CR3 targets supported              4
Nov 29 19:55:55.851: vmx|   Maximum MSR list size            512
Nov 29 19:55:55.851: vmx|   MSEG revision ID                   0
Nov 29 19:55:55.851: vmx| VMX-Fixed Bits in CR0 (0x0000000080000021/0x00000000ffffffff)
Nov 29 19:55:55.851: vmx|   Fixed to 0        0xffffffff00000000
Nov 29 19:55:55.851: vmx|   Fixed to 1        0x0000000080000021
Nov 29 19:55:55.851: vmx|   Variable          0x000000007fffffde
Nov 29 19:55:55.851: vmx| VMX-Fixed Bits in CR4 (0x0000000000002000/0x00000000000427ff)
Nov 29 19:55:55.851: vmx|   Fixed to 0        0xfffffffffffbd800
Nov 29 19:55:55.851: vmx|   Fixed to 1        0x0000000000002000
Nov 29 19:55:55.851: vmx|   Variable          0x00000000000407ff
Nov 29 19:55:55.851: vmx| VMCS Enumeration (0x000000000000002c)
Nov 29 19:55:55.851: vmx|   Highest index                   0x16
Nov 29 19:55:55.867: vmx| WSSCAN: reserved mem (in MB) min=32 max=1912 recommended=1912
Nov 29 19:55:55.867: vmx| WSSCAN: used rec mem (in MB) 1912
Nov 29 19:55:55.867: vmx| PShare: enabled 0 adaptive 1 local 0 scanRate [16, 400]
Nov 29 19:55:55.867: vmx| WSSCAN: 296521 13303 262144 32768
Nov 29 19:55:55.882: vmx| WSSCAN 1 1 411690 460129 489472 419882 100 0
Nov 29 19:55:55.882: vmx| LICENSE using: 'HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc.\VMware Workstation\Dormant\License.ws.7.0.e1.200904'
Nov 29 19:55:55.898: vmx| LOG failed to rename stats\stats32-1 -> stats\stats32-2: The system cannot find the path specified
Nov 29 19:55:55.898: vmx| LOG failed to rename stats\stats32-0 -> stats\stats32-1: The system cannot find the path specified
Nov 29 19:55:55.898: vmx| LOG failed to rename stats\stats32 -> stats\stats32-0: The system cannot find the path specified
Nov 29 19:55:55.898: vmx| LOG failed to rename stats\stats64-1 -> stats\stats64-2: The system cannot find the path specified
Nov 29 19:55:55.898: vmx| LOG failed to rename stats\stats64-0 -> stats\stats64-1: The system cannot find the path specified
Nov 29 19:55:55.898: vmx| LOG failed to rename stats\stats64 -> stats\stats64-0: The system cannot find the path specified
Nov 29 19:55:55.898: vmx| Host IPI vectors: 0x2f 0
Nov 29 19:55:55.898: vmx| Monitor_PowerOn: HostedVSMP skew tracking is disabled
Nov 29 19:55:55.898: vmx| Monitor_PowerOn: HostedVSMP crosscall yielding is disabled
Nov 29 19:55:55.898: vmx| vmm32-modules: [vmm.vmm32 .data:0x2b000-0x700 .sdata:0x2c000-0x4e4 .statvars:0x2d000-0x3a0 .peer:0x2e000-0x26200 .shared:0x5a000-0x143c0 .bss:0x6f000-0x5e08 .rodata:0x76000-0xb740 .text:0x82000-0x5c81d .kstatvars:0x3000-0x0, mmu-nohv.vmm32 .rodata:0x81740-0x44 .data:0x2b700-0x10 .peer:0x54200-0x5640 .shared:0x6e3c0-0x340 .bss:0x74e20-0x51c .text:0xde820-0xa4e3 .comment:0x40000d5c-0x10e .statvars:0x2000-0x0 .kstatvars:0x2000-0x0 .scb:0x40003cc0-0x180 .shared_meta:0x400042f0-0x330 .peer_meta:0x40000f90-0x1e0 .patchtext:0x40000500-0xb0, pv-none.vmm32 .shared:0x6e700-0x180 .bss:0x75340-0x84 .text:0xe8d04-0xe2 .comment:0x40000e6a-0x48 .shared_meta:0x40004620-0x90, vprobe-none.vmm32 .text:0xe8de8-0x19 .comment:0x40000eb2-0x12, hv-vt.vmm32 .rodata:0x81784-0x4 .data:0x1000-0x0 .peer:0x1000-0x0 .shared:0x1000-0x0 .bss:0x1000-0x0 .text:0xe8e10-0x10f .comment:0x40000ec4-0x12 .statvars:0x1000-0x0 .kstatvars:0x1000-0x0 .patchtext:0x400005b0-0x10, gphys-sw.vmm32 .peer:0x59840-0x40 .shared:0x6e880-0x80 .bss:0x2000-0x0 .text:0xe8f20-0x7d1 .comment:0x40000ed6-0x12 .scb:0x40003e40-0x60 .shared_meta:0x400046b0-0x270 .peer_meta:0x40001170-0x30, vassert-none.vmm32 .text:0xe96f4-0x39 .comment:0x40000ee8-0x12, vmsafe-none.vmm32 .text:0xe9730-0x1b .comment:0x40000efa-0x12, <MonSrcFile> .rodata:0x81788-0x3b1]
Nov 29 19:55:55.914: vmx| KHZEstimate 2599979
Nov 29 19:55:55.914: vmx| MHZEstimate 2600
Nov 29 19:55:55.914: vmx| NumVCPUs 1
Nov 29 19:55:55.914: vmx| RDEBUG: Using offsets for Windows 7
Nov 29 19:55:55.914: vmx| Guest kernel offsets(version 7): 0xb8,0xb4,0x18,0x188,0x16c,15,408,0x268,0x260,0x230,0x218,0x88,0x28,0x18,0x20,0x24,1,0x280,0x0,0xc,0x14,0x200000,0x1a8,0xc,0xc,0x18,0x12c,0x1ec.
Nov 29 19:55:55.914: vmx| PShare: checkRate 16
Nov 29 19:55:55.914: vmx| UUID: location-UUID is 56 4d 6c 6b 1c 24 1f 54-20 ad 05 8c 4b c0 ef a1
Nov 29 19:55:55.914: vmx| UUID: location-UUID is 56 4d 88 65 16 c0 ac 84-4b cb 82 e4 36 be 84 f6
Nov 29 19:55:55.914: vmx| UUID: location-UUID is 56 4d 88 65 16 c0 ac 84-4b cb 82 e4 36 be 84 f6
Nov 29 19:55:55.914: vmx| AIOGNRC: numThreads=18 ide=0, scsi=1, passthru=1
Nov 29 19:55:55.914: vmx| WORKER: Creating new group with numThreads=18 (18)
Nov 29 19:55:55.914: vmx| CPU0: PMC: Patch Level 0xa07, smmFrz (hw): (1)
Nov 29 19:55:55.914: vmx| PMC: IA32, Penryn [c:0 f:1 e:0]
Nov 29 19:55:55.914: vmx| CPU1: PMC: Patch Level 0xa07, smmFrz (hw): (1)
Nov 29 19:55:55.914: vmx| PMC: IA32, Penryn [c:0 f:1 e:0]
Nov 29 19:55:55.945: vmx| Replay State = 0
Nov 29 19:55:55.945: vmx| minDEThreshold: 76
Nov 29 19:55:55.992: vmx| MMC: Initialized PLS=1 PLR=0 PFS=0 TS=1 BS=1 WZ=0 BufM=0 LOR=96 SOR=0 BlkP=32 W=50 PF=1024
Nov 29 19:55:55.992: vmx| MStat: Creating Stat vm.uptime
Nov 29 19:55:55.992: vmx| MStat: Creating Stat vm.suspendTime
Nov 29 19:55:55.992: vmx| MStat: Creating Stat vm.powerOnTimeStamp
Nov 29 19:55:55.992: vmx| Setting thread 37 stack size to 1048576.
Nov 29 19:55:55.992: vmx| VMXAIOMGR: Using: simple=Generic unbuf=Compl
Nov 29 19:55:56.007: vmx| VMXVmdb_LoadRawConfig: Loading raw config
Nov 29 19:55:56.007: vmx| DISK: OPEN scsi0:0 'G:\VM\DRIVER\Windows 7 sp1\Windows 7-000004.vmdk' persistent R[]
Nov 29 19:55:56.226: vmx| DISKLIB-DSCPTR: Opened [0]: "Windows 7-000004.vmdk" (0xa)
Nov 29 19:55:56.226: vmx| DISKLIB-LINK  : Opened 'G:\VM\DRIVER\Windows 7 sp1\Windows 7-000004.vmdk' (0xa): monolithicSparse, 125829120 sectors / 60 GB.
Nov 29 19:55:56.273: vmx| DISKLIB-DSCPTR: Opened [0]: "Windows 7-000006.vmdk" (0xe)
Nov 29 19:55:56.273: vmx| DISKLIB-LINK  : Opened 'G:\VM\DRIVER\Windows 7 sp1\Windows 7-000006.vmdk' (0xe): monolithicSparse, 125829120 sectors / 60 GB.
Nov 29 19:55:56.289: vmx| FILE: ScanDirectory discarding M48114.lck from G:\VM\DRIVER\Windows 7 sp1\Windows 7-000005.vmdk.lck': invalid executionID.
Nov 29 19:55:56.304: vmx| DISKLIB-DSCPTR: Opened [0]: "Windows 7-000005.vmdk" (0xe)
Nov 29 19:55:56.304: vmx| DISKLIB-LINK  : Opened 'G:\VM\DRIVER\Windows 7 sp1\Windows 7-000005.vmdk' (0xe): monolithicSparse, 125829120 sectors / 60 GB.
Nov 29 19:55:56.304: vmx| FILE: ScanDirectory discarding M24843.lck from G:\VM\DRIVER\Windows 7 sp1\Windows 7.vmdk.lck': invalid executionID.
Nov 29 19:55:56.335: vmx| DISKLIB-DSCPTR: Opened [0]: "Windows 7.vmdk" (0xe)
Nov 29 19:55:56.335: vmx| DISKLIB-LINK  : Opened 'G:\VM\DRIVER\Windows 7 sp1\Windows 7.vmdk' (0xe): monolithicSparse, 125829120 sectors / 60 GB.
Nov 29 19:55:56.335: vmx| DISKLIB-LIB   : Opened "G:\VM\DRIVER\Windows 7 sp1\Windows 7-000004.vmdk" (flags 0xa).
Nov 29 19:55:56.335: vmx| DiskGetGeometry: Reading of disk partition table
Nov 29 19:55:56.335: vmx| DISK: OPEN 'G:\VM\DRIVER\Windows 7 sp1\Windows 7-000004.vmdk' Geo (7832/255/63) BIOS Geo (7832/255/63)
Nov 29 19:55:56.382: vmx| TimeTracker host to guest rate conversion 8643016978272 @ 2599979000Hz -> 8643016978272 @ 2599979000Hz
Nov 29 19:55:56.382: vmx| TimeTracker host to guest rate conversion ((x * 2147483648) >> 31) + 0
Nov 29 19:55:56.382: vmx| USB: Initializing 'Generic' backend
Nov 29 19:55:56.382: vmx| USBGW: Write arbitrator op:0 len:4
Nov 29 19:55:56.382: vmx| USBGW: Write arbitrator op:13 len:14
Nov 29 19:55:56.382: vmx| USB: Initializing 'Virtual Hub' backend
Nov 29 19:55:56.382: vmx| USB: Initializing 'Virtual Mouse' backend
Nov 29 19:55:56.382: vmx| USB: Initializing 'Virtual Keyboard' backend
Nov 29 19:55:56.382: vmx| USB: Initializing 'Virtual Mass Storage' backend
Nov 29 19:55:56.382: vmx| USB: Initializing 'Virtual CCID' backend
Nov 29 19:55:56.398: vmx| Setting thread 38 stack size to 1048576.
Nov 29 19:55:56.398: vmx| WORKER: Creating new group with numThreads=1 (19)
Nov 29 19:55:56.398: vmx| USBGW: Skipping disk backing for file (G:\VM\DRIVER\Windows 7 sp1\Windows 7.vmx).
Nov 29 19:55:56.398: vmx| USBGW: Skipping disk backing for file (G:\VM\DRIVER\Windows 7 sp1\Windows 7-000004.vmdk).
Nov 29 19:55:56.398: vmx| USBGW: Skipping disk backing for file (G:\VM\DRIVER\Windows 7 sp1\Windows 7-000006.vmdk).
Nov 29 19:55:56.398: vmx| USBGW: Skipping disk backing for file (G:\VM\DRIVER\Windows 7 sp1\Windows 7-000005.vmdk).
Nov 29 19:55:56.414: vmx| USBGW: Skipping disk backing for file (G:\VM\DRIVER\Windows 7 sp1\Windows 7.vmdk).
Nov 29 19:55:56.414: vmx| USBGW: Skipping disk backing for file (Windows 7.vmdk).
Nov 29 19:55:56.414: vmx| USBGW: Skipping disk backing for file (G:\VM\DRIVER\Windows 7 sp1\Windows 7-Snapshot16.vmem).
Nov 29 19:55:56.414: vmx| USBGW: Skipping disk backing for file (G:\VM\DRIVER\Windows 7 sp1\Windows 7-Snapshot16.vmsn).
Nov 29 19:55:56.414: vmx| USBGW: Skipping disk backing for file (Windows 7-000005.vmdk).
Nov 29 19:55:56.414: vmx| USBGW: Skipping disk backing for file (G:\VM\DRIVER\Windows 7 sp1\Windows 7-Snapshot21.vmem).
Nov 29 19:55:56.414: vmx| USBGW: Skipping disk backing for file (G:\VM\DRIVER\Windows 7 sp1\Windows 7-Snapshot21.vmsn).
Nov 29 19:55:56.414: vmx| USBGW: Skipping disk backing for file (Windows 7-000006.vmdk).
Nov 29 19:55:56.414: vmx| USBGW: Skipping disk backing for file (G:\VM\DRIVER\Windows 7 sp1\Windows 7-Snapshot25.vmem).
Nov 29 19:55:56.414: vmx| USBGW: Skipping disk backing for file (G:\VM\DRIVER\Windows 7 sp1\Windows 7-Snapshot25.vmsn).
Nov 29 19:55:56.414: vmx| USBGW: Skipping disk backing for file (Windows 7-000001.vmdk).
Nov 29 19:55:56.414: vmx| USBGW: Skipping disk backing for file (G:\VM\DRIVER\Windows 7 sp1\Windows 7-Snapshot24.vmem).
Nov 29 19:55:56.414: vmx| USBGW: Skipping disk backing for file (G:\VM\DRIVER\Windows 7 sp1\Windows 7-Snapshot24.vmsn).
Nov 29 19:55:56.414: usbCCIDEnumCards| USB-CCID: Card enum thread created.
Nov 29 19:55:56.429: vmx| Failed to load D3DX9 library.
Nov 29 19:55:56.429: vmx| WORKER: Creating new group with numThreads=1 (20)
Nov 29 19:55:56.429: vmx| MKS: Base polling period is 1000000us
Nov 29 19:55:56.429: vmx| KHBKL: Unable to parse keystring at: ''
Nov 29 19:55:56.429: vmx| MKS REMOTE Loading VNC Configuration from VM config file
Nov 29 19:55:56.429: vmx| VLANCE: send cluster threshold is 80, size = 2 recalcInterval is 2 ticks
Nov 29 19:55:56.429: vmx| VMXNET: send cluster threshold is 80, size = 2 recalcInterval is 2 ticks, dontClusterSize is 128
Nov 29 19:55:56.429: vmx| NetPkt: checksum cycles/kB: C=37 asm1=725 asm2=357
Nov 29 19:55:56.429: vmx| NetPkt: copy and sum cycles/kB: C=358 asm1=746 asm2=356
Nov 29 19:55:56.429: vmx| Chipset version: 0x13
Nov 29 19:55:56.476: vmx| SCSI DEVICE (ide1:0): Computed value of ide1:0.useBounceBuffers: default
Nov 29 19:55:56.476: vmx| DISKUTIL: ide1:0 : capacity=0
Nov 29 19:55:56.476: vmx| DISKUTIL: ide1:0 : geometry=0/0/0
Nov 29 19:55:56.476: vmx| LSI: vIC initialized 50/4/100/0
Nov 29 19:55:56.476: vmx| SCSI0: UNTAGGED commands will be converted to ORDER tags.
Nov 29 19:55:56.476: vmx| SCSI DEVICE (scsi0:0): Computed value of scsi0:0.useBounceBuffers: default
Nov 29 19:55:56.476: vmx| DISKUTIL: scsi0:0 : capacity=125829120
Nov 29 19:55:56.476: vmx| DISKUTIL: scsi0:0 : geometry=7832/255/63
Nov 29 19:55:56.476: vmx| SVGA: Device capabilities 0x003fc3e2
Nov 29 19:55:56.507: vmx| Host display topology 1440x900 with 1 displays.
Nov 29 19:55:56.507: vmx| SVGA: Max size 2560x1600
Nov 29 19:55:56.507: vmx| SVGA: FIFO capabilities 0x000000ff
Nov 29 19:55:56.507: vmx| USB: Initializing 'UHCI' host controller
Nov 29 19:55:56.523: vmx| Ethernet0 MAC Address: 00:0c:29:1c:81:8a
Nov 29 19:55:56.523: vmx| USB: Initializing 'EHCI' host controller
Nov 29 19:55:56.539: vmx| MStat: Creating Stat vm.heartbeat
Nov 29 19:55:56.539: vmx| TOOLS Generated SessionId 12146585613138114343
Nov 29 19:55:56.554: vmx| VMXVmdbGuest_GetToolsVersion did nothing; tools version has not yet been initialized
Nov 29 19:55:56.554: vmx| DISKUTIL: scsi0:0 : toolsVersion = 8328
Nov 29 19:55:56.554: vmx| VMXVmdbGuest_GetToolsVersion did nothing; tools version has not yet been initialized
Nov 29 19:55:56.554: vmx| TOOLS setting legacy tools version to '8328', manifest status is 5
Nov 29 19:55:56.554: vmx| VMXVmdb_SetToolsVersionState: status value set to 'ok'
Nov 29 19:55:56.554: vmx| VMXVmdb_SetToolsVersionState: status value set to 'ok'
Nov 29 19:55:56.554: vmx| TOOLS INSTALL initializing state to IDLE on power on.
Nov 29 19:55:56.554: vmx| PTSC to VMI Wallclock (nsec) 8643452215412 @ 2599979000Hz -> 1322567756000000000 @ 1000000000Hz
Nov 29 19:55:56.554: vmx| PTSC to VMI Wallclock (nsec) ((x * 3303847681) >> 33) + 1322564431568451439
Nov 29 19:55:56.554: vmx| PTSC to ParaTime RealCycles 0 @ 2599979000Hz -> 0 @ 2599979000Hz
Nov 29 19:55:56.554: vmx| PTSC to ParaTime RealCycles ((x * 1) >> 0) + 0
Nov 29 19:55:56.554: vmx| ParaTime RealCycles to PTSC 0 @ 2599979000Hz -> 0 @ 2599979000Hz
Nov 29 19:55:56.554: vmx| ParaTime RealCycles to PTSC ((x * 1) >> 0) + 0
Nov 29 19:55:56.554: vmx| memoryHotplug: Current size = 1024MB, Minimum size = 1024MB, Maximum size = 16384MB
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[0]: 00000000000000A0-00000000000A0000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[1]: 00000000001000A0-0000000040000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[2]: 0000000040000080-00000000C0000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[3]: 0000000100000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[4]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[5]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[6]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[7]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[8]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[9]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[10]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[11]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[12]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[13]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[14]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[15]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[16]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[17]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[18]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[19]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[20]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[21]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[22]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[23]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[24]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[25]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[26]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[27]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[28]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[29]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[30]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[31]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[32]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[33]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[34]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[35]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[36]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[37]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[38]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[39]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[40]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[41]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[42]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[43]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[44]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[45]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[46]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[47]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[48]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[49]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[50]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[51]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[52]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[53]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[54]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[55]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[56]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[57]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[58]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[59]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[60]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[61]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[62]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[63]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[64]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[65]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[66]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[67]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[68]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[69]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[70]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[71]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[72]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[73]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[74]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[75]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[76]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[77]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[78]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[79]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[80]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[81]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[82]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[83]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[84]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[85]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[86]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[87]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[88]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[89]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[90]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[91]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[92]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[93]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[94]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[95]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[96]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[97]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[98]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[99]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[100]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[101]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[102]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[103]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[104]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[105]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[106]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[107]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[108]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[109]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[110]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[111]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[112]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[113]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[114]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[115]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[116]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[117]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[118]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[119]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[120]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[121]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[122]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[123]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[124]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[125]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[126]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[127]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[128]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[129]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[130]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[131]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[132]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[133]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[134]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[135]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[136]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[137]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[138]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[139]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[140]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[141]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[142]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[143]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[144]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[145]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[146]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[147]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[148]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[149]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[150]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[151]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[152]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[153]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[154]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[155]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[156]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[157]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[158]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[159]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[160]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[161]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[162]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[163]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[164]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[165]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[166]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[167]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[168]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[169]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[170]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[171]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[172]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[173]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[174]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[175]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[176]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[177]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[178]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[179]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[180]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[181]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[182]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[183]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[184]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[185]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[186]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[187]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[188]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[189]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[190]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[191]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[192]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[193]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[194]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[195]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[196]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[197]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[198]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[199]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[200]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[201]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[202]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[203]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[204]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[205]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[206]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[207]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[208]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[209]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[210]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[211]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[212]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[213]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[214]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[215]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[216]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[217]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[218]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[219]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[220]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[221]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[222]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[223]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[224]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[225]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[226]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[227]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[228]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[229]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[230]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[231]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[232]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[233]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[234]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[235]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[236]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[237]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[238]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[239]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[240]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[241]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[242]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[243]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[244]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[245]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[246]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[247]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[248]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[249]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[250]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[251]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[252]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[253]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[254]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[255]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[256]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[257]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[258]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[259]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[260]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[261]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[262]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[263]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[264]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[265]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[266]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[267]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[268]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[269]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[270]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[271]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[272]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[273]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[274]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[275]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[276]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[277]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[278]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[279]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[280]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[281]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[282]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[283]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[284]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[285]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[286]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[287]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[288]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[289]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[290]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[291]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[292]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[293]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[294]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[295]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[296]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[297]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[298]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[299]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[300]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[301]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[302]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[303]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[304]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[305]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[306]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[307]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[308]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[309]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[310]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[311]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[312]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[313]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[314]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[315]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[316]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[317]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[318]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[319]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[320]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[321]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[322]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[323]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[324]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[325]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[326]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[327]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[328]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[329]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[330]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[331]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[332]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[333]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[334]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[335]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[336]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[337]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[338]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[339]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[340]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[341]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[342]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[343]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[344]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[345]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[346]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[347]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[348]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[349]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[350]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[351]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[352]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[353]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[354]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[355]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[356]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[357]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[358]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[359]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[360]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[361]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[362]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[363]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[364]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[365]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[366]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[367]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[368]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[369]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[370]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[371]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[372]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[373]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[374]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[375]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[376]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[377]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[378]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[379]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[380]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[381]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[382]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[383]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[384]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[385]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[386]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[387]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[388]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[389]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[390]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[391]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[392]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[393]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[394]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[395]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[396]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[397]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[398]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[399]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[400]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[401]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[402]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[403]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[404]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[405]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[406]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[407]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[408]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[409]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[410]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[411]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[412]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[413]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[414]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[415]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[416]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[417]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[418]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[419]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[420]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[421]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[422]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[423]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[424]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[425]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[426]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[427]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[428]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[429]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[430]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[431]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[432]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[433]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[434]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[435]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[436]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[437]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[438]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[439]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[440]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[441]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[442]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[443]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[444]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[445]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[446]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[447]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[448]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[449]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[450]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[451]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[452]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[453]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[454]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[455]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[456]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[457]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[458]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[459]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[460]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[461]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[462]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[463]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[464]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[465]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[466]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[467]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[468]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[469]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[470]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[471]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[472]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[473]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[474]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[475]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[476]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[477]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[478]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[479]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[480]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[481]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[482]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[483]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[484]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[485]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[486]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[487]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[488]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[489]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[490]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[491]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[492]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[493]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[494]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[495]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[496]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[497]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[498]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[499]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[500]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[501]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[502]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[503]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[504]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[505]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[506]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[507]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[508]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[509]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[510]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| memoryHotplug: Entry[511]: 0000000440000080-0000000440000000
Nov 29 19:55:56.554: vmx| CPT: Restoring checkpoint G:\VM\DRIVER\Windows 7 sp1\Windows 7-Snapshot25.vmsn
Nov 29 19:55:56.554: vmx| DUMPER: restoring checkpoint version 8
Nov 29 19:55:56.554: vmx| DUMPER: item regionsCount [-1,-1] in group memory not used
Nov 29 19:55:56.554: vmx| DUMPER: item align_mask [0,0] in group memory not used
Nov 29 19:55:56.570: vmx| DUMPER: Item guestCpuid8A:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item guestCpuid:40000001:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item guestCpuid:40000002:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item guestCpuid:40000003:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item guestCpuid:40000004:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item guestCpuid:40000005:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item guestCpuid:40000006:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item guestCpuid:40000007:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item guestCpuid:40000008:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item guestCpuid:40000009:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item guestCpuid:4000000a:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item guestCpuid:4000000b:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item guestCpuid:4000000c:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item guestCpuid:4000000d:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item guestCpuid:4000000e:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item guestCpuid:4000000f:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item migrateCpuid5:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item migrateCpuid400:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item migrateCpuid410:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item migrateCpuid80:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item migrateCpuid88:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item migrateCpuid:40000000:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item migrateCpuid:40000001:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item migrateCpuid:80000000:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item hostCpuid400:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item hostCpuid410:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item hostCpuid8A:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item hostCpuid:40000000:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: Item hostCpuid:40000001:eax [0, -1] not found
Nov 29 19:55:56.570: vmx| cptCPUID : vendor: GenuineIntel
Nov 29 19:55:56.570: vmx| cptCPUID :   name: Pentium(R) Dual-Core  CPU      E5300  @ 2.60GHz
Nov 29 19:55:56.570: vmx| cptCPUID : level 00000000, 0: 0x0000000d 0x756e6547 0x6c65746e 0x49656e69
Nov 29 19:55:56.570: vmx| cptCPUID : level 00000001, 0: 0x0001067a 0x00010800 0x80002201 0x0febfbff
Nov 29 19:55:56.570: vmx| cptCPUID : level 00000002, 0: 0x05b0b101 0x005657f0 0x00000000 0x2cb4307d
Nov 29 19:55:56.570: vmx| cptCPUID : level 00000003, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| cptCPUID : level 00000004, 0: 0x04000121 0x01c0003f 0x0000003f 0x00000001
Nov 29 19:55:56.570: vmx| cptCPUID : level 00000005, 0: 0x00000040 0x00000040 0x00000003 0x00022220
Nov 29 19:55:56.570: vmx| cptCPUID : level 00000006, 0: 0x00000001 0x00000002 0x00000003 0x00000000
Nov 29 19:55:56.570: vmx| cptCPUID : level 00000007, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| cptCPUID : level 00000008, 0: 0x00000400 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| cptCPUID : level 00000009, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| cptCPUID : level 0000000a, 0: 0x07280202 0x00000000 0x00000000 0x00000503
Nov 29 19:55:56.570: vmx| cptCPUID : level 0000000b, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| cptCPUID : level 0000000c, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| cptCPUID : level 0000000d, 0: 0x00000003 0x00000240 0x00000240 0x00000000
Nov 29 19:55:56.570: vmx| cptCPUID : level 40000000, 0: 0x40000010 0x61774d56 0x4d566572 0x65726177
Nov 29 19:55:56.570: vmx| cptCPUID : level 40000010, 0: 0x0027ac22 0x000101d0 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| cptCPUID : level 80000000, 0: 0x80000008 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| cptCPUID : level 80000001, 0: 0x00000000 0x00000000 0x00000001 0x20100000
Nov 29 19:55:56.570: vmx| cptCPUID : level 80000002, 0: 0x746e6550 0x286d7569 0x44202952 0x2d6c6175
Nov 29 19:55:56.570: vmx| cptCPUID : level 80000003, 0: 0x65726f43 0x50432020 0x20202055 0x45202020
Nov 29 19:55:56.570: vmx| cptCPUID : level 80000004, 0: 0x30303335 0x20402020 0x30362e32 0x007a4847
Nov 29 19:55:56.570: vmx| cptCPUID : level 80000005, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| cptCPUID : level 80000006, 0: 0x00000000 0x00000000 0x08006040 0x00000000
Nov 29 19:55:56.570: vmx| cptCPUID : level 80000007, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| cptCPUID : level 80000008, 0: 0x00003028 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| guestCpuFeatures = 0x404001fc
Nov 29 19:55:56.570: vmx| srcCPUID : vendor: GenuineIntel
Nov 29 19:55:56.570: vmx| srcCPUID :   name: Pentium(R) Dual-Core  CPU      E5300  @ 2.60GHz
Nov 29 19:55:56.570: vmx| srcCPUID : level 00000000, 0: 0x0000000d 0x756e6547 0x6c65746e 0x49656e69
Nov 29 19:55:56.570: vmx| srcCPUID : level 00000001, 0: 0x0001067a 0x00020800 0x0c00e3bd 0xbfebfbff
Nov 29 19:55:56.570: vmx| srcCPUID : level 00000002, 0: 0x05b0b101 0x005657f0 0x00000000 0x2cb4307d
Nov 29 19:55:56.570: vmx| srcCPUID : level 00000003, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| srcCPUID : level 00000004, 0: 0x04000121 0x01c0003f 0x0000003f 0x00000001
Nov 29 19:55:56.570: vmx| srcCPUID : level 00000005, 0: 0x00000040 0x00000040 0x00000003 0x00022220
Nov 29 19:55:56.570: vmx| srcCPUID : level 00000006, 0: 0x00000001 0x00000002 0x00000003 0x00000000
Nov 29 19:55:56.570: vmx| srcCPUID : level 00000007, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| srcCPUID : level 00000008, 0: 0x00000400 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| srcCPUID : level 00000009, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| srcCPUID : level 0000000a, 0: 0x07280202 0x00000000 0x00000000 0x00000503
Nov 29 19:55:56.570: vmx| srcCPUID : level 0000000b, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| srcCPUID : level 0000000c, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| srcCPUID : level 0000000d, 0: 0x00000003 0x00000240 0x00000240 0x00000000
Nov 29 19:55:56.570: vmx| srcCPUID : level 80000000, 0: 0x80000008 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| srcCPUID : level 80000001, 0: 0x00000000 0x00000000 0x00000001 0x20100800
Nov 29 19:55:56.570: vmx| srcCPUID : level 80000002, 0: 0x746e6550 0x286d7569 0x44202952 0x2d6c6175
Nov 29 19:55:56.570: vmx| srcCPUID : level 80000003, 0: 0x65726f43 0x50432020 0x20202055 0x45202020
Nov 29 19:55:56.570: vmx| srcCPUID : level 80000004, 0: 0x30303335 0x20402020 0x30362e32 0x007a4847
Nov 29 19:55:56.570: vmx| srcCPUID : level 80000005, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| srcCPUID : level 80000006, 0: 0x00000000 0x00000000 0x08006040 0x00000000
Nov 29 19:55:56.570: vmx| srcCPUID : level 80000007, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| srcCPUID : level 80000008, 0: 0x00003024 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| dstCPUID : vendor: GenuineIntel
Nov 29 19:55:56.570: vmx| dstCPUID :   name: Pentium(R) Dual-Core  CPU      E5300  @ 2.60GHz
Nov 29 19:55:56.570: vmx| dstCPUID : level 00000000, 0: 0x0000000d 0x756e6547 0x6c65746e 0x49656e69
Nov 29 19:55:56.570: vmx| dstCPUID : level 00000001, 0: 0x0001067a 0x00020800 0x0c00e3bd 0xbfebfbff
Nov 29 19:55:56.570: vmx| dstCPUID : level 00000002, 0: 0x05b0b101 0x005657f0 0x00000000 0x2cb4307d
Nov 29 19:55:56.570: vmx| dstCPUID : level 00000003, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| dstCPUID : level 00000004, 0: 0x04000121 0x01c0003f 0x0000003f 0x00000001
Nov 29 19:55:56.570: vmx| dstCPUID : level 00000005, 0: 0x00000040 0x00000040 0x00000003 0x00022220
Nov 29 19:55:56.570: vmx| dstCPUID : level 00000006, 0: 0x00000001 0x00000002 0x00000003 0x00000000
Nov 29 19:55:56.570: vmx| dstCPUID : level 00000007, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| dstCPUID : level 00000008, 0: 0x00000400 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| dstCPUID : level 00000009, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| dstCPUID : level 0000000a, 0: 0x07280202 0x00000000 0x00000000 0x00000503
Nov 29 19:55:56.570: vmx| dstCPUID : level 0000000b, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| dstCPUID : level 0000000c, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| dstCPUID : level 0000000d, 0: 0x00000003 0x00000240 0x00000240 0x00000000
Nov 29 19:55:56.570: vmx| dstCPUID : level 80000000, 0: 0x80000008 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| dstCPUID : level 80000001, 0: 0x00000000 0x00000000 0x00000001 0x20100800
Nov 29 19:55:56.570: vmx| dstCPUID : level 80000002, 0: 0x746e6550 0x286d7569 0x44202952 0x2d6c6175
Nov 29 19:55:56.570: vmx| dstCPUID : level 80000003, 0: 0x65726f43 0x50432020 0x20202055 0x45202020
Nov 29 19:55:56.570: vmx| dstCPUID : level 80000004, 0: 0x30303335 0x20402020 0x30362e32 0x007a4847
Nov 29 19:55:56.570: vmx| dstCPUID : level 80000005, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| dstCPUID : level 80000006, 0: 0x00000000 0x00000000 0x08006040 0x00000000
Nov 29 19:55:56.570: vmx| dstCPUID : level 80000007, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| dstCPUID : level 80000008, 0: 0x00003024 0x00000000 0x00000000 0x00000000
Nov 29 19:55:56.570: vmx| cpt mask : level 00000000, 0: 0x00000000 0xffffffff 0xffffffff 0xffffffff
Nov 29 19:55:56.570: vmx| cpt mask : level 00000001, 0: 0xfff0cf00 0x00000000 0x62d91203 0x0ffffdff
Nov 29 19:55:56.570: vmx| cpt mask : level 80000001, 0: 0x00000000 0x00000000 0xfffffffe 0xdbfff7ff
Nov 29 19:55:56.570: vmx| cpt mask : level 8000000a, 0: 0xffffffff 0xffffffff 0xffffffff 0xffffffff
Nov 29 19:55:56.570: vmx| evcMasksInCpt = 0
Nov 29 19:55:56.570: vmx| evcCompatibilityMode = 0
Nov 29 19:55:56.570: vmx| Warning: expected CPUID field 8000000a not found.
Nov 29 19:55:56.570: vmx| DUMPER: Item paraGuest [0, -1] not found
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000008:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item eip [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid0:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid0:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid0:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid0:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid1:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid1:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid1:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid1:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid5:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid5:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid5:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid5:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid400:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid400:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid400:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid400:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid410:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid410:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid410:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid410:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid80:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid80:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid80:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid80:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid81:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid81:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid81:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid81:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid88:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid88:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid88:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid88:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000000:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000000:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000000:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000000:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000001:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000001:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000001:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000001:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000002:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000002:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000002:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000002:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000003:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000003:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000003:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000003:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000004:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000004:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000004:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000004:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000005:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000005:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000005:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000005:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000006:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000006:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000006:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000006:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000007:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000007:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000007:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000007:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000008:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000008:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000008:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000008:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000009:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000009:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000009:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:00000009:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:0000000a:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:0000000a:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:0000000a:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:0000000a:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:0000000b:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:0000000b:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:0000000b:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:0000000b:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:0000000c:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:0000000c:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:0000000c:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:0000000c:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:0000000d:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:0000000d:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:0000000d:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:0000000d:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:40000000:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:40000000:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:40000000:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:40000000:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:40000010:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:40000010:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:40000010:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:40000010:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000000:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000000:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000000:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000000:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000001:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000001:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000001:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000001:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000002:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000002:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000002:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000002:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000003:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000003:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000003:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000003:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000004:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000004:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000004:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000004:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000005:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000005:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000005:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000005:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000006:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000006:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000006:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000006:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000007:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000007:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000007:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000007:edx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000008:eax [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000008:ebx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| DUMPER: item cpuid:80000008:ecx [0,-1] in group cpu not used
Nov 29 19:55:56.570: vmx| Progress -1% (msg.checkpoint.restoreStatus)
Nov 29 19:55:56.570: vmx|   restoring BusMemSample
Nov 29 19:55:56.570: vmx| BusMemSample: checkpoint 4 initPercent 98 touched 259522
Nov 29 19:55:56.570: vmx|   restoring BusMemServices
Nov 29 19:55:56.570: vmx|   restoring UUIDVMX
Nov 29 19:55:56.570: vmx|   restoring StateLogger
Nov 29 19:55:56.570: vmx|   restoring memory
Nov 29 19:55:56.570: vmx| DUMPER: Item MainMemPageZeroStateSize [-1, -1] not found
Nov 29 19:55:56.570: vmx| MM: Opened paging file, '(null)'.
Nov 29 19:55:56.570: vmx| Lazy Restore with prefetch of 1024 MB
Nov 29 19:55:56.601: vmx| MM: Allow page lock on restore, 262144 pages.
Nov 29 19:55:56.601: vmx| Progress 0% (none)
Nov 29 19:55:56.789: vmx| Progress 1% (none)
Nov 29 19:55:56.898: vmx| Progress 2% (none)
Nov 29 19:55:56.992: vmx| Progress 3% (none)
Nov 29 19:55:57.117: vmx| Progress 4% (none)
Nov 29 19:55:57.304: vmx| Progress 5% (none)
Nov 29 19:55:57.460: vmx| Progress 6% (none)
Nov 29 19:55:57.585: vmx| Progress 7% (none)
Nov 29 19:55:57.726: vmx| Progress 8% (none)
Nov 29 19:55:57.898: vmx| Progress 9% (none)
Nov 29 19:55:58.070: vmx| Progress 10% (none)
Nov 29 19:55:58.210: vmx| Progress 11% (none)
Nov 29 19:55:58.367: vmx| Progress 12% (none)
Nov 29 19:55:58.523: vmx| Progress 13% (none)
Nov 29 19:55:58.679: vmx| Progress 14% (none)
Nov 29 19:55:58.835: vmx| Progress 15% (none)
Nov 29 19:55:58.960: vmx| Progress 16% (none)
Nov 29 19:55:59.132: vmx| Progress 17% (none)
Nov 29 19:55:59.289: vmx| Progress 18% (none)
Nov 29 19:55:59.445: vmx| Progress 19% (none)
Nov 29 19:55:59.601: vmx| Progress 20% (none)
Nov 29 19:55:59.742: vmx| Progress 21% (none)
Nov 29 19:55:59.882: vmx| Progress 22% (none)
Nov 29 19:56:00.007: vmx| Progress 23% (none)
Nov 29 19:56:00.164: vmx| Progress 24% (none)
Nov 29 19:56:00.320: vmx| Progress 25% (none)
Nov 29 19:56:00.476: vmx| Progress 26% (none)
Nov 29 19:56:00.617: vmx| Progress 27% (none)
Nov 29 19:56:00.773: vmx| Progress 28% (none)
Nov 29 19:56:00.929: vmx| Progress 29% (none)
Nov 29 19:56:01.101: vmx| Progress 30% (none)
Nov 29 19:56:01.226: vmx| Progress 31% (none)
Nov 29 19:56:01.398: vmx| Progress 32% (none)
Nov 29 19:56:01.570: vmx| Progress 33% (none)
Nov 29 19:56:01.695: vmx| Progress 34% (none)
Nov 29 19:56:01.835: vmx| Progress 35% (none)
Nov 29 19:56:01.992: vmx| Progress 36% (none)
Nov 29 19:56:02.164: vmx| Progress 37% (none)
Nov 29 19:56:02.304: vmx| Progress 38% (none)
Nov 29 19:56:02.476: vmx| Progress 39% (none)
Nov 29 19:56:02.601: vmx| Progress 40% (none)
Nov 29 19:56:02.726: vmx| Progress 41% (none)
Nov 29 19:56:02.867: vmx| Progress 42% (none)
Nov 29 19:56:03.007: vmx| Progress 43% (none)
Nov 29 19:56:03.148: vmx| Progress 44% (none)
Nov 29 19:56:03.320: vmx| Progress 45% (none)
Nov 29 19:56:03.476: vmx| Progress 46% (none)
Nov 29 19:56:03.632: vmx| Progress 47% (none)
Nov 29 19:56:03.757: vmx| Progress 48% (none)
Nov 29 19:56:03.898: vmx| Progress 49% (none)
Nov 29 19:56:04.054: vmx| Progress 50% (none)
Nov 29 19:56:04.226: vmx| Progress 51% (none)
Nov 29 19:56:04.367: vmx| Progress 52% (none)
Nov 29 19:56:04.507: vmx| Progress 53% (none)
Nov 29 19:56:04.679: vmx| Progress 54% (none)
Nov 29 19:56:04.804: vmx| Progress 55% (none)
Nov 29 19:56:04.945: vmx| Progress 56% (none)
Nov 29 19:56:05.101: vmx| Progress 57% (none)
Nov 29 19:56:05.242: vmx| Progress 58% (none)
Nov 29 19:56:05.367: vmx| Progress 59% (none)
Nov 29 19:56:05.507: vmx| Progress 60% (none)
Nov 29 19:56:05.664: vmx| Progress 61% (none)
Nov 29 19:56:05.789: vmx| Progress 62% (none)
Nov 29 19:56:05.992: vmx| Progress 63% (none)
Nov 29 19:56:06.195: vmx| Progress 64% (none)
Nov 29 19:56:06.320: vmx| Progress 65% (none)
Nov 29 19:56:06.523: vmx| Progress 66% (none)
Nov 29 19:56:06.726: vmx| Progress 67% (none)
Nov 29 19:56:06.867: vmx| Progress 68% (none)
Nov 29 19:56:07.023: vmx| Progress 69% (none)
Nov 29 19:56:07.164: vmx| Progress 70% (none)
Nov 29 19:56:07.304: vmx| Progress 71% (none)
Nov 29 19:56:07.476: vmx| Progress 72% (none)
Nov 29 19:56:07.695: vmx| Progress 73% (none)
Nov 29 19:56:07.867: vmx| Progress 74% (none)
Nov 29 19:56:08.023: vmx| Progress 75% (none)
Nov 29 19:56:08.148: vmx| Progress 76% (none)
Nov 29 19:56:08.304: vmx| Progress 77% (none)
Nov 29 19:56:08.460: vmx| Progress 78% (none)
Nov 29 19:56:08.601: vmx| Progress 79% (none)
Nov 29 19:56:08.757: vmx| Progress 80% (none)
Nov 29 19:56:08.914: vmx| Progress 81% (none)
Nov 29 19:56:09.070: vmx| Progress 82% (none)
Nov 29 19:56:09.195: vmx| Progress 83% (none)
Nov 29 19:56:09.382: vmx| Progress 84% (none)
Nov 29 19:56:09.539: vmx| Progress 85% (none)
Nov 29 19:56:09.664: vmx| Progress 86% (none)
Nov 29 19:56:09.820: vmx| Progress 87% (none)
Nov 29 19:56:09.820: vmx|   restoring MStats
Nov 29 19:56:09.835: vmx|   restoring Snapshot
Nov 29 19:56:09.835: vmx| DUMPER: item cfgFile [-1,-1] in group Snapshot not used
Nov 29 19:56:09.835: vmx| DUMPER: item nvramFile [-1,-1] in group Snapshot not used
Nov 29 19:56:09.835: vmx| DUMPER: item extendedConfigFile [-1,-1] in group Snapshot not used
Nov 29 19:56:09.835: vmx|   restoring pic
Nov 29 19:56:09.835: vmx|   restoring TimeTracker
Nov 29 19:56:09.835: vmx| TimeTracker host to guest rate conversion 8643016978272 @ 2599979000Hz -> 38835938137161 @ 2599970000Hz
Nov 29 19:56:09.835: vmx| TimeTracker host to guest rate conversion ((x * 4294952428) >> 32) + 30192951078646
Nov 29 19:56:09.835: vmx|   restoring Floppy
Nov 29 19:56:09.835: vmx| DUMPER: item remote [0,-1] in group Floppy not used
Nov 29 19:56:09.835: vmx| DUMPER: item nextId [-1,-1] in group Floppy not used
Nov 29 19:56:09.835: vmx|   restoring GuestMsg
Nov 29 19:56:09.835: vmx|   restoring GuestRpc
Nov 29 19:56:09.835: vmx|   restoring scsi0:0
Nov 29 19:56:09.835: vmx|   restoring ide1:0
Nov 29 19:56:09.835: vmx| DUMPER: item senseBuf [-1,-1] in group ide1:0 not used
Nov 29 19:56:09.835: vmx|   restoring PCI
Nov 29 19:56:09.835: vmx|   restoring Cs440bx
Nov 29 19:56:09.835: vmx| DUMPER: Item gpe.status [2, -1] not found
Nov 29 19:56:09.835: vmx| DUMPER: Item gpe.enable [2, -1] not found
Nov 29 19:56:09.835: vmx| DUMPER: item drb [1,-1] in group Cs440bx not used
Nov 29 19:56:09.835: vmx| DUMPER: item drb [0,-1] in group Cs440bx not used
Nov 29 19:56:09.835: vmx|   restoring ExtCfgDevice
Nov 29 19:56:09.835: vmx|   restoring AcpiNotify
Nov 29 19:56:09.835: vmx|   restoring vcpuHotPlug
Nov 29 19:56:09.835: vmx|   restoring devHP
Nov 29 19:56:09.835: vmx|   restoring ACPIWake
Nov 29 19:56:09.835: vmx|   restoring DevicesPowerOn
Nov 29 19:56:09.835: vmx|   restoring PCIBridge0
Nov 29 19:56:09.835: vmx|   restoring PCIBridge4
Nov 29 19:56:09.835: vmx|   restoring pciBridge4:1
Nov 29 19:56:09.835: vmx|   restoring pciBridge4:2
Nov 29 19:56:09.835: vmx|   restoring pciBridge4:3
Nov 29 19:56:09.851: vmx|   restoring pciBridge4:4
Nov 29 19:56:09.851: vmx|   restoring pciBridge4:5
Nov 29 19:56:09.851: vmx|   restoring pciBridge4:6
Nov 29 19:56:09.851: vmx|   restoring pciBridge4:7
Nov 29 19:56:09.851: vmx|   restoring PCIBridge5
Nov 29 19:56:09.851: vmx|   restoring pciBridge5:1
Nov 29 19:56:09.851: vmx|   restoring pciBridge5:2
Nov 29 19:56:09.851: vmx|   restoring pciBridge5:3
Nov 29 19:56:09.851: vmx|   restoring pciBridge5:4
Nov 29 19:56:09.851: vmx|   restoring pciBridge5:5
Nov 29 19:56:09.851: vmx|   restoring pciBridge5:6
Nov 29 19:56:09.851: vmx|   restoring pciBridge5:7
Nov 29 19:56:09.851: vmx|   restoring PCIBridge6
Nov 29 19:56:09.851: vmx|   restoring pciBridge6:1
Nov 29 19:56:09.851: vmx|   restoring pciBridge6:2
Nov 29 19:56:09.851: vmx|   restoring pciBridge6:3
Nov 29 19:56:09.851: vmx|   restoring pciBridge6:4
Nov 29 19:56:09.851: vmx|   restoring pciBridge6:5
Nov 29 19:56:09.851: vmx|   restoring pciBridge6:6
Nov 29 19:56:09.851: vmx|   restoring pciBridge6:7
Nov 29 19:56:09.851: vmx|   restoring PCIBridge7
Nov 29 19:56:09.851: vmx|   restoring pciBridge7:1
Nov 29 19:56:09.851: vmx|   restoring pciBridge7:2
Nov 29 19:56:09.851: vmx|   restoring pciBridge7:3
Nov 29 19:56:09.851: vmx|   restoring pciBridge7:4
Nov 29 19:56:09.851: vmx|   restoring pciBridge7:5
Nov 29 19:56:09.851: vmx|   restoring pciBridge7:6
Nov 29 19:56:09.851: vmx|   restoring pciBridge7:7
Nov 29 19:56:09.851: vmx|   restoring vide
Nov 29 19:56:09.851: vmx| DUMPER: BlockItem monbuf [0, -1] not found
Nov 29 19:56:09.851: vmx| DUMPER: BlockItem monbuf [1, -1] not found
Nov 29 19:56:09.851: vmx|   restoring SCSI0
Nov 29 19:56:09.851: vmx| DUMPER: item mode [-1,-1] in group SCSI0 not used
Nov 29 19:56:09.851: vmx| DUMPER: item HALRAM [-1,-1] in group SCSI0 not used
Nov 29 19:56:09.851: vmx|   restoring VGA
Nov 29 19:56:09.867: vmx|   restoring SVGA
Nov 29 19:56:09.945: vmx| DUMPER: Item shaderProgId [-1, -1] not found
Nov 29 19:56:09.945: vmx| DUMPER: Item svgaCid [-1, -1] not found
Nov 29 19:56:10.054: vmx| Progress 88% (none)
Nov 29 19:56:10.117: vmx| DUMPER: Item svgaSid [-1, -1] not found
Nov 29 19:56:10.117: vmx| SVGA phys sizes: 2560x1600x32 offset 0 fb 0x08000000
Nov 29 19:56:10.117: vmx| SVGA compatible geometry on checkpoint restore
Nov 29 19:56:10.117: vmx| SVGA old geometry 2560x1600, max size = 134217728
Nov 29 19:56:10.117: vmx| SVGA new geometry 2560x1600, max size = 134217728
Nov 29 19:56:10.179: vmx| Progress 89% (none)
Nov 29 19:56:10.289: vmx| Progress 90% (none)
Nov 29 19:56:10.382: vmx| Progress 91% (none)
Nov 29 19:56:10.492: vmx| Progress 92% (none)
Nov 29 19:56:10.601: vmx| Progress 93% (none)
Nov 29 19:56:10.710: vmx| Progress 94% (none)
Nov 29 19:56:10.820: vmx| Progress 95% (none)
Nov 29 19:56:10.929: vmx| Progress 96% (none)
Nov 29 19:56:11.039: vmx| Progress 97% (none)
Nov 29 19:56:11.148: vmx| Progress 98% (none)
Nov 29 19:56:11.257: vmx| Progress 99% (none)
Nov 29 19:56:11.335: vmx| HostOps hideCursor before defineCursor!
Nov 29 19:56:11.351: vmx|   restoring usb
Nov 29 19:56:11.351: vmx| DUMPER: Item lastFrnumChangeTime [-1, -1] not found
Nov 29 19:56:11.351: vmx|   restoring usb:0
Nov 29 19:56:11.351: vmx|   restoring usb:1
Nov 29 19:56:11.351: vmx|   restoring Ethernet0
Nov 29 19:56:11.367: vmx|   restoring sound
Nov 29 19:56:11.367: vmx|   restoring ehci
Nov 29 19:56:11.367: vmx|   restoring vmci0
Nov 29 19:56:11.367: vmx| DUMPER: item INTR_PENDING [-1,-1] in group vmci0 not used
Nov 29 19:56:11.367: vmx|   restoring OEMDevice
Nov 29 19:56:11.367: vmx|   restoring HotButton
Nov 29 19:56:11.367: vmx|   restoring Timer
Nov 29 19:56:11.367: vmx|   restoring XPMode
Nov 29 19:56:11.367: vmx|   restoring Tools
Nov 29 19:56:11.367: vmx| Vix: [2756 mainDispatch.c:3582]: VMAutomationReportPowerStateChange: Reporting power state change (opcode=2, err=0).
Nov 29 19:56:11.367: vmx|   restoring Tools Install
Nov 29 19:56:11.367: vmx| TOOLS INSTALL setting state to 0 on restore.
Nov 29 19:56:11.367: vmx|   restoring Hgfs
Nov 29 19:56:11.367: vmx|   restoring MKSVMX
Nov 29 19:56:11.367: vmx| DUMPER: item checkpoint.mks.numScreenshots [-1,-1] in group MKSVMX not used
Nov 29 19:56:11.367: vmx| DUMPER: item imageData [-1,-1] in group MKSVMX not used
Nov 29 19:56:11.367: vmx| DUMPER: item checkpoint.mks.screenshot [0,-1] in group MKSVMX not used
Nov 29 19:56:11.367: vmx| DUMPER: item checkpoint.mks.displayTopology.displayId [0,-1] in group MKSVMX not used
Nov 29 19:56:11.367: vmx| DUMPER: item checkpoint.mks.displayTopology.isPrimary [0,-1] in group MKSVMX not used
Nov 29 19:56:11.367: vmx| DUMPER: item checkpoint.mks.displayTopology.positionX [0,-1] in group MKSVMX not used
Nov 29 19:56:11.367: vmx| DUMPER: item checkpoint.mks.displayTopology.positionY [0,-1] in group MKSVMX not used
Nov 29 19:56:11.367: vmx|   restoring DMA
Nov 29 19:56:11.367: vmx|   restoring BackdoorAPM
Nov 29 19:56:11.367: vmx|   restoring CMOS
Nov 29 19:56:11.367: vmx|   restoring FlashRam
Nov 29 19:56:11.367: vmx|   restoring A20
Nov 29 19:56:11.367: vmx|   restoring Keyboard
Nov 29 19:56:11.367: vmx|   restoring backdoorAbsMouse
Nov 29 19:56:11.367: vmx|   restoring SIO
Nov 29 19:56:11.367: vmx|   restoring serial0
Nov 29 19:56:11.367: vmx|   restoring serial1
Nov 29 19:56:11.367: vmx|   restoring serial2
Nov 29 19:56:11.367: vmx|   restoring serial3
Nov 29 19:56:11.367: vmx|   restoring parallel0
Nov 29 19:56:11.367: vmx|   restoring parallel1
Nov 29 19:56:11.367: vmx|   restoring parallel2
Nov 29 19:56:11.367: vmx|   restoring ParaTime
Nov 29 19:56:11.367: vmx|   restoring VAssert
Nov 29 19:56:11.382: vmx|   restoring monitorLate
Nov 29 19:56:11.382: vmx|   restoring MemoryHotplug
Nov 29 19:56:11.398: vmx|   restoring devices
Nov 29 19:56:11.398: vmx|   restoring vmDebugControl
Nov 29 19:56:11.398: vmx| Progress 101% (none)
Nov 29 19:56:11.539: vmx| VMXVmdb_LoadRawConfig: Loading raw config
Nov 29 19:56:11.539: vmx| guestCPUID vendor: GenuineIntel
Nov 29 19:56:11.539: vmx| guestCPUID   name: Pentium(R) Dual-Core  CPU      E5300  @ 2.60GHz
Nov 29 19:56:11.539: vmx| guestCPUID level 00000000, 0: 0x0000000d 0x756e6547 0x6c65746e 0x49656e69
Nov 29 19:56:11.539: vmx| guestCPUID level 00000001, 0: 0x0001067a 0x00010800 0x80002201 0x0febfbff
Nov 29 19:56:11.539: vmx| guestCPUID level 00000002, 0: 0x05b0b101 0x005657f0 0x00000000 0x2cb4307d
Nov 29 19:56:11.539: vmx| guestCPUID level 00000003, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:56:11.539: vmx| guestCPUID level 00000004, 0: 0x04000121 0x01c0003f 0x0000003f 0x00000001
Nov 29 19:56:11.539: vmx| guestCPUID level 00000005, 0: 0x00000040 0x00000040 0x00000003 0x00022220
Nov 29 19:56:11.539: vmx| guestCPUID level 00000006, 0: 0x00000001 0x00000002 0x00000003 0x00000000
Nov 29 19:56:11.539: vmx| guestCPUID level 00000007, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:56:11.539: vmx| guestCPUID level 00000008, 0: 0x00000400 0x00000000 0x00000000 0x00000000
Nov 29 19:56:11.539: vmx| guestCPUID level 00000009, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:56:11.539: vmx| guestCPUID level 0000000a, 0: 0x07280202 0x00000000 0x00000000 0x00000503
Nov 29 19:56:11.539: vmx| guestCPUID level 0000000b, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:56:11.539: vmx| guestCPUID level 0000000c, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:56:11.539: vmx| guestCPUID level 0000000d, 0: 0x00000003 0x00000240 0x00000240 0x00000000
Nov 29 19:56:11.539: vmx| guestCPUID level 40000000, 0: 0x40000010 0x61774d56 0x4d566572 0x65726177
Nov 29 19:56:11.539: vmx| guestCPUID level 40000010, 0: 0x0027ac22 0x000101d0 0x00000000 0x00000000
Nov 29 19:56:11.539: vmx| guestCPUID level 80000000, 0: 0x80000008 0x00000000 0x00000000 0x00000000
Nov 29 19:56:11.539: vmx| guestCPUID level 80000001, 0: 0x00000000 0x00000000 0x00000001 0x20100000
Nov 29 19:56:11.539: vmx| guestCPUID level 80000002, 0: 0x746e6550 0x286d7569 0x44202952 0x2d6c6175
Nov 29 19:56:11.539: vmx| guestCPUID level 80000003, 0: 0x65726f43 0x50432020 0x20202055 0x45202020
Nov 29 19:56:11.539: vmx| guestCPUID level 80000004, 0: 0x30303335 0x20402020 0x30362e32 0x007a4847
Nov 29 19:56:11.539: vmx| guestCPUID level 80000005, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:56:11.539: vmx| guestCPUID level 80000006, 0: 0x00000000 0x00000000 0x08006040 0x00000000
Nov 29 19:56:11.539: vmx| guestCPUID level 80000007, 0: 0x00000000 0x00000000 0x00000000 0x00000000
Nov 29 19:56:11.539: vmx| guestCPUID level 80000008, 0: 0x00003028 0x00000000 0x00000000 0x00000000
Nov 29 19:56:11.554: vmx| SVGA: Registering IOSpace at 0x10d0
Nov 29 19:56:11.554: vmx| BusMemSample: initPercent 98 touched 0
Nov 29 19:56:11.554: vmx| TOOLS received request in VMX to set option 'enableDnD' -> '1'
Nov 29 19:56:11.554: vmx| TOOLS received request in VMX to set option 'copypaste' -> '1'
Nov 29 19:56:11.554: vmx| Vix: [2756 mainDispatch.c:844]: VMAutomation_PowerOn. Powering on.
Nov 29 19:56:11.554: vmx| VMX_PowerOn: ModuleTable_PowerOn = 1
Nov 29 19:56:11.554: vmx| Setting thread 1 stack size to 2097152.
Nov 29 19:56:11.570: vmx| Setting thread 4 stack size to 1048576.
Nov 29 19:56:11.570: mks| Async MKS thread is alive
Nov 29 19:56:11.710: mks| Connecting to window system.
Nov 29 19:56:11.710: mks| MKS: Base polling period is 10000us
Nov 29 19:56:11.710: mks| Setting thread 39 stack size to 1048576.
Nov 29 19:56:11.789: vcpu-0| APIC: version = 0x14, max LVT = 5
Nov 29 19:56:11.789: vcpu-0| APIC: LDR = 0x1000000, DFR = 0xffffffff
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[0]: 00000000000000A0-00000000000A0000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[1]: 00000000001000A0-0000000040000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[2]: 0000000040000080-00000000C0000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[3]: 0000000100000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[4]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[5]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[6]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[7]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[8]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[9]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[10]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[11]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[12]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[13]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[14]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[15]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[16]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[17]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[18]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[19]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[20]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[21]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[22]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[23]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[24]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[25]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[26]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[27]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[28]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[29]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[30]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[31]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[32]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[33]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[34]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[35]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[36]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[37]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[38]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[39]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[40]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[41]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[42]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[43]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[44]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[45]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[46]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[47]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[48]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[49]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[50]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[51]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[52]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[53]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[54]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[55]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[56]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[57]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[58]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[59]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[60]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[61]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[62]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[63]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[64]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[65]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[66]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[67]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[68]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[69]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[70]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[71]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[72]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[73]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[74]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[75]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[76]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[77]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[78]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[79]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[80]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[81]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[82]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[83]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[84]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[85]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[86]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[87]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[88]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[89]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[90]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[91]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[92]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[93]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[94]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[95]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[96]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[97]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[98]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[99]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[100]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[101]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[102]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[103]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[104]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[105]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[106]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[107]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[108]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[109]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[110]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[111]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[112]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[113]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[114]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[115]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[116]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[117]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[118]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[119]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[120]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[121]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[122]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[123]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[124]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[125]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[126]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[127]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[128]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[129]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[130]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[131]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[132]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[133]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[134]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[135]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[136]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[137]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[138]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[139]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[140]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[141]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[142]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[143]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[144]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[145]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[146]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[147]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[148]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[149]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[150]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[151]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[152]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[153]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[154]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[155]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[156]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[157]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[158]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[159]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[160]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[161]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[162]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[163]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[164]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[165]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[166]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[167]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[168]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[169]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[170]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[171]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[172]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[173]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[174]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[175]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[176]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[177]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[178]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[179]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[180]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[181]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[182]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[183]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[184]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[185]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[186]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[187]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[188]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[189]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[190]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[191]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[192]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[193]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[194]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[195]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[196]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[197]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[198]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[199]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[200]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[201]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[202]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[203]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[204]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[205]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[206]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[207]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[208]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[209]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[210]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[211]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[212]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[213]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[214]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[215]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[216]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[217]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[218]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[219]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[220]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[221]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[222]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[223]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[224]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[225]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[226]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[227]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[228]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[229]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[230]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[231]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[232]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[233]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[234]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[235]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[236]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[237]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[238]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[239]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[240]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[241]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[242]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[243]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[244]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[245]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[246]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[247]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[248]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[249]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[250]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[251]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[252]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[253]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[254]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[255]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[256]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[257]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[258]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[259]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[260]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[261]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[262]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[263]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[264]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[265]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[266]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[267]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[268]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[269]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[270]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[271]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[272]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[273]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[274]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[275]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[276]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[277]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[278]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[279]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[280]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[281]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[282]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[283]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[284]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[285]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[286]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[287]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[288]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[289]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[290]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[291]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[292]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[293]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[294]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[295]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[296]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[297]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[298]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[299]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[300]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[301]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[302]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[303]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[304]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[305]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[306]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[307]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[308]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[309]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[310]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[311]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[312]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[313]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[314]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[315]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[316]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[317]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[318]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[319]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[320]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[321]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[322]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[323]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[324]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[325]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[326]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[327]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[328]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[329]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[330]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[331]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[332]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[333]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[334]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[335]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[336]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[337]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[338]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[339]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[340]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[341]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[342]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[343]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[344]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[345]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[346]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[347]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[348]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[349]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[350]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[351]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[352]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[353]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[354]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[355]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[356]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[357]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[358]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[359]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[360]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[361]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[362]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[363]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[364]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[365]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[366]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[367]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[368]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[369]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[370]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[371]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[372]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[373]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[374]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[375]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[376]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[377]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[378]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[379]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[380]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[381]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[382]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[383]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[384]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[385]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[386]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[387]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[388]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[389]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[390]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[391]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[392]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[393]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[394]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[395]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[396]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[397]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[398]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[399]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[400]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[401]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[402]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[403]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[404]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[405]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[406]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[407]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[408]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[409]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[410]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[411]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[412]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[413]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[414]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[415]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[416]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[417]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[418]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[419]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[420]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[421]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[422]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[423]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[424]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[425]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[426]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[427]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[428]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[429]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[430]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[431]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[432]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[433]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[434]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[435]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[436]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[437]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[438]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[439]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[440]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[441]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[442]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[443]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[444]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[445]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[446]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[447]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[448]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[449]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[450]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[451]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[452]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[453]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[454]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[455]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[456]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[457]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[458]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[459]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[460]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[461]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[462]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[463]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[464]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[465]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[466]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[467]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[468]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[469]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[470]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[471]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[472]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[473]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[474]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[475]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[476]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[477]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[478]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[479]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[480]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[481]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[482]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[483]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[484]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[485]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[486]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[487]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[488]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[489]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[490]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[491]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[492]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[493]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[494]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[495]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[496]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[497]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[498]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[499]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[500]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[501]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[502]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[503]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[504]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[505]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[506]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[507]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[508]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[509]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[510]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| memoryHotplug: Entry[511]: 0000000440000080-0000000440000000
Nov 29 19:56:11.804: vcpu-0| PIIX4: PM Resuming from suspend type 0x5.
Nov 29 19:56:11.899: vcpu-0| SOUND 016.356574 PCISoundWin32 mixerGetLineInfo error 1024
Nov 29 19:56:11.899: vcpu-0| VNET: MACVNetConnectToNetwork: Ethernet0: notify available
Nov 29 19:56:11.899: vcpu-0| Vix: [1740 mainDispatch.c:3661]: VMAutomation_ReportPowerOpFinished: statevar=0, newAppState=1872, success=1
Nov 29 19:56:11.899: vcpu-0| Vix: [1740 mainDispatch.c:3582]: VMAutomationReportPowerStateChange: Reporting power state change (opcode=0, err=0).
Nov 29 19:56:11.899: vcpu-0| Vix: [1740 mainDispatch.c:3582]: VMAutomationReportPowerStateChange: Reporting power state change (opcode=2, err=0).
Nov 29 19:56:11.899: vcpu-0| Transitioned vmx/execState/val to poweredOn
Nov 29 19:56:11.915: vcpu-0| sz=2961376
Nov 29 19:56:11.915: vcpu-0| vmm32 initialized: Releasebuild-491717. cflags: 0x00000008.01000000.00006000.00090003
Nov 29 19:56:11.915: vcpu-0| Monitor64_PowerOn()
Nov 29 19:56:11.930: vcpu-0| vmm64-modules: [vmm.vmm64 .data:0xfffffffffc051000-0xb80 .sdata:0xfffffffffc052000-0x9b8 .statvars:0xfffffffffc053000-0x1f8 .peer:0xfffffffffc054000-0x26200 .shared:0xfffffffffc080000-0x143c0 .bss:0xfffffffffc095000-0xb980 .rodata:0xfffffffffc200000-0x14f00 .text:0xfffffffffc216000-0x6e32e .kstatvars:0x3000-0x0 .eh_frame:0xfffffffffc29f000-0x13a90, mmu-scratchas.vmm64 .rodata:0xfffffffffc214f00-0xd2 .data:0xfffffffffc051b80-0x14 .peer:0xfffffffffc07a200-0x5640 .shared:0xfffffffffc0943c0-0x340 .bss:0xfffffffffc0a0980-0x950 .text:0xfffffffffc284330-0xb0f1 .statvars:0x2000-0x0 .kstatvars:0x2000-0x0 .scb:0x3cc0-0x180 .shared_meta:0x42f0-0x330 .peer_meta:0xf90-0x1e0 .eh_frame:0xfffffffffc2b2a90-0x1c70 .comment:0xe34-0x10e .patchtext:0x3e0-0xa0, pv-none.vmm64 .shared:0xfffffffffc094700-0x180 .bss:0x1000-0x0 .text:0xfffffffffc28f424-0x4 .shared_meta:0x4620-0x90 .eh_frame:0xfffffffffc2b4700-0x48 .comment:0xf42-0x48, vprobe-none.vmm64 .text:0xfffffffffc28f428-0x1a .eh_frame:0xfffffffffc2b4748-0xf0 .comment:0xf8a-0x12, hv-vt.vmm64 .rodata:0xfffffffffc214fe0-0x7bc .data:0xfffffffffc051ba0-0x30 .peer:0x2000-0x0 .shared:0x2000-0x0 .bss:0xfffffffffc0a12e0-0x12b70 .text:0xfffffffffc28f450-0xddc1 .statvars:0x2000-0x0 .kstatvars:0x2000-0x0 .eh_frame:0xfffffffffc2b4838-0x26c0 .comment:0xf9c-0x5a .patchtext:0x480-0x10, gphys-sw.vmm64 .rodata:0xfffffffffc2157a0-0x29 .data:0x1000-0x0 .peer:0xfffffffffc07f840-0x40 .shared:0xfffffffffc094880-0x80 .bss:0xfffffffffc0b3e50-0x10 .text:0xfffffffffc29d220-0x158a .statvars:0x1000-0x0 .kstatvars:0x1000-0x0 .scb:0x3e40-0x60 .shared_meta:0x46b0-0x270 .peer_meta:0x1170-0x30 .eh_frame:0xfffffffffc2b6ef8-0x460 .comment:0xff6-0x12, vassert-none.vmm64 .text:0xfffffffffc29e7ac-0x3b .eh_frame:0xfffffffffc2b7358-0xc0 .comment:0x1008-0x12, vmsafe-none.vmm64 .text:0xfffffffffc29e7e8-0x13 .eh_frame:0xfffffffffc2b7418-0xd8 .comment:0x101a-0x12, <MonSrcFile> .rodata:0xfffffffffc2157c9-0x3eb| 0x5a000]
Nov 29 19:56:11.993: vcpu-0| APIC: version = 0x14, max LVT = 5
Nov 29 19:56:11.993: vcpu-0| APIC: LDR = 0x1000000, DFR = 0xffffffff
Nov 29 19:56:11.993: vcpu-0| Intel VT: FlexPriority enabled.
Nov 29 19:56:11.993: vcpu-0| HV enabled
Nov 29 19:56:11.993: vcpu-0| VMM64 initialized
Nov 29 19:56:11.993: vcpu-0| Restoring VMM
Nov 29 19:56:11.993: vcpu-0| Done Cpt monModules(4).
Nov 29 19:56:11.993: vcpu-0| CPT: monitor ACKing mode 4
Nov 29 19:56:12.008: vmx| WORKER: Creating new group with numThreads=1 (21)
Nov 29 19:56:12.008: vmx| Setting thread 40 stack size to 1048576.
Nov 29 19:56:12.008: vcpu-0| E1000: Syncing with mode 5.
Nov 29 19:56:12.008: Worker#0| MMC: Entering MM Lazy Loop
Nov 29 19:56:12.008: vcpu-0| Done Sync monModules(5).
Nov 29 19:56:12.008: Worker#0| MMC: Switching MM Lazy->Eager Loop
Nov 29 19:56:12.008: Worker#0| MMC: Exit MM Eager Loop
Nov 29 19:56:12.008: vcpu-0| CPT: monitor ACKing mode 5
Nov 29 19:56:12.024: vcpu-0| SVGA: Registering MemSpace at 0xd0000000(0xd0000000) and 0xd8000000(0xd8000000)
Nov 29 19:56:12.040: mks| MKS switching absolute mouse on
Nov 29 19:56:12.040: vmx| MMC: Finished pending checkpoint op
Nov 29 19:56:12.040: vmx| DnDRegisterRpc: DnD rpc already set to 1
Nov 29 19:56:12.040: vmx| CopyPasteRegisterRpc: already set to 1
Nov 29 19:56:12.133: mks| USBGW: Write arbitrator op:13 len:14
Nov 29 19:56:12.153: vmx| ASSERT d:/build/ob/bora-491717/bora/vmx/main/pollVMX.c:1705 bugNr=1319
Nov 29 19:56:12.153: vmx| Win32 object usage: GDI 12, USER 18
Nov 29 19:56:12.153: vmx| CoreDump_CoreDump: faking exception to get context
Nov 29 19:56:12.165: vmx| CoreDump: Writing minidump to G:\VM\DRIVER\Windows 7 sp1\vmware-vmx-1440.dmp
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x140000000 size 0x0x0106d000
Nov 29 19:56:13.098: vmx|   checksum 0x00fa7f84 timestamp 0x4e7d4358
Nov 29 19:56:13.098: vmx|   image file C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe
Nov 29 19:56:13.098: vmx|   file version 7.1.5.19539
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x76e60000 size 0x0x001ab000
Nov 29 19:56:13.098: vmx|   checksum 0x001b1cb5 timestamp 0x4a5be02b
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\ntdll.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x76880000 size 0x0x0011f000
Nov 29 19:56:13.098: vmx|   checksum 0x00128dd7 timestamp 0x4a5bdfdf
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\kernel32.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefd550000 size 0x0x0006b000
Nov 29 19:56:13.098: vmx|   checksum 0x0006d69f timestamp 0x4a5bdfe0
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\KERNELBASE.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x71610000 size 0x0x000c9000
Nov 29 19:56:13.098: vmx|   checksum 0x000cae87 timestamp 0x4a27427d
Nov 29 19:56:13.098: vmx|   image file C:\Windows\winsxs\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4927_none_88dce9872fb18caf\msvcr80.dll
Nov 29 19:56:13.098: vmx|   file version 8.0.50727.4927
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefe4d0000 size 0x0x0009f000
Nov 29 19:56:13.098: vmx|   checksum 0x000a4632 timestamp 0x4a5bdfbe
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\msvcrt.dll
Nov 29 19:56:13.098: vmx|   file version 7.0.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x76780000 size 0x0x000fa000
Nov 29 19:56:13.098: vmx|   checksum 0x000fbdf7 timestamp 0x4a5be088
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\user32.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefe780000 size 0x0x00067000
Nov 29 19:56:13.098: vmx|   checksum 0x0006d7d6 timestamp 0x4a5bdf01
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\gdi32.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefeb10000 size 0x0x0000e000
Nov 29 19:56:13.098: vmx|   checksum 0x00014997 timestamp 0x4a5bdf5f
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\lpk.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefe920000 size 0x0x000ca000
Nov 29 19:56:13.098: vmx|   checksum 0x000d2473 timestamp 0x4a5be08c
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\usp10.dll
Nov 29 19:56:13.098: vmx|   file version 1.626.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefec80000 size 0x0x00201000
Nov 29 19:56:13.098: vmx|   checksum 0x00204881 timestamp 0x4a5be01a
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\ole32.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefeb20000 size 0x0x0012e000
Nov 29 19:56:13.098: vmx|   checksum 0x001302fa timestamp 0x4a5be035
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\rpcrt4.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7feff090000 size 0x0x000db000
Nov 29 19:56:13.098: vmx|   checksum 0x000e415a timestamp 0x4a5bde6b
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\advapi32.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefee90000 size 0x0x0001f000
Nov 29 19:56:13.098: vmx|   checksum 0x0002b43a timestamp 0x4a5be05e
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\sechost.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefd5c0000 size 0x0x00036000
Nov 29 19:56:13.098: vmx|   checksum 0x00040b3e timestamp 0x4a5bdeaa
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\cfgmgr32.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefe580000 size 0x0x001d7000
Nov 29 19:56:13.098: vmx|   checksum 0x001dac96 timestamp 0x4a5be052
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\setupapi.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefe7f0000 size 0x0x000d7000
Nov 29 19:56:13.098: vmx|   checksum 0x000d8532 timestamp 0x4a5be01e
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\oleaut32.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefd530000 size 0x0x0001a000
Nov 29 19:56:13.098: vmx|   checksum 0x00025322 timestamp 0x4a5bdee1
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\devobj.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7feff040000 size 0x0x0004d000
Nov 29 19:56:13.098: vmx|   checksum 0x00057ab5 timestamp 0x4a5be095
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\ws2_32.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefe570000 size 0x0x00008000
Nov 29 19:56:13.098: vmx|   checksum 0x00005f1e timestamp 0x4a5be029
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\nsi.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fef76e0000 size 0x0x0003b000
Nov 29 19:56:13.098: vmx|   checksum 0x000378fc timestamp 0x4a5be0b0
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\winmm.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fef6b90000 size 0x0x00088000
Nov 29 19:56:13.098: vmx|   checksum 0x00087c9f timestamp 0x4a5bdf19
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\dsound.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefbea0000 size 0x0x0002c000
Nov 29 19:56:13.098: vmx|   checksum 0x00037ba8 timestamp 0x4a5be062
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\powrprof.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefb4c0000 size 0x0x00007000
Nov 29 19:56:13.098: vmx|   checksum 0x000099e2 timestamp 0x4a5bdfe6
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\msimg32.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefac20000 size 0x0x00027000
Nov 29 19:56:13.098: vmx|   checksum 0x0002a4d3 timestamp 0x4a5bdf57
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\IPHLPAPI.DLL
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefac00000 size 0x0x0000b000
Nov 29 19:56:13.098: vmx|   checksum 0x00009bc2 timestamp 0x4a5be0b1
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\winnsi.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fef8980000 size 0x0x00038000
Nov 29 19:56:13.098: vmx|   checksum 0x0003a880 timestamp 0x4a5be0b8
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\WinSCard.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fef2270000 size 0x0x000f1000
Nov 29 19:56:13.098: vmx|   checksum 0x0009961d timestamp 0x4a5bdecd
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\ddraw.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefb4d0000 size 0x0x00008000
Nov 29 19:56:13.098: vmx|   checksum 0x0000a5cf timestamp 0x4a5bdec7
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\dciman32.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefb660000 size 0x0x00018000
Nov 29 19:56:13.098: vmx|   checksum 0x00014877 timestamp 0x4a5bdf27
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\dwmapi.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefaa70000 size 0x0x00018000
Nov 29 19:56:13.098: vmx|   checksum 0x0001b689 timestamp 0x4a5bdec6
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\dhcpcsvc.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefa010000 size 0x0x0006e000
Nov 29 19:56:13.098: vmx|   checksum 0x00071137 timestamp 0x4a5be0aa
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\winhttp.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fef9fa0000 size 0x0x00064000
Nov 29 19:56:13.098: vmx|   checksum 0x0006f5fb timestamp 0x4a5be07d
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\webio.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefec50000 size 0x0x0002e000
Nov 29 19:56:13.098: vmx|   checksum 0x0003550d timestamp 0x4a5bdf40
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\imm32.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefef30000 size 0x0x00109000
Nov 29 19:56:13.098: vmx|   checksum 0x001100cc timestamp 0x4a5bdfaa
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\msctf.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefd200000 size 0x0x0000f000
Nov 29 19:56:13.098: vmx|   checksum 0x00015e85 timestamp 0x4a5bdf91
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\CRYPTBASE.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefba40000 size 0x0x00056000
Nov 29 19:56:13.098: vmx|   checksum 0x00056d60 timestamp 0x4a5be093
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\uxtheme.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefb310000 size 0x0x00007000
Nov 29 19:56:13.098: vmx|   checksum 0x0000c6ee timestamp 0x4a5be055
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\shfolder.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefd6a0000 size 0x0x00d86000
Nov 29 19:56:13.098: vmx|   checksum 0x00d89e53 timestamp 0x4a5be054
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\shell32.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefeeb0000 size 0x0x00071000
Nov 29 19:56:13.098: vmx|   checksum 0x00071670 timestamp 0x4a5be059
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\shlwapi.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefd2d0000 size 0x0x0000f000
Nov 29 19:56:13.098: vmx|   checksum 0x0000cb3e timestamp 0x4a5be01f
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\profapi.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x180000000 size 0x0x00155000
Nov 29 19:56:13.098: vmx|   checksum 0x0015d16d timestamp 0x4bb53a6e
Nov 29 19:56:13.098: vmx|   image file C:\Program Files (x86)\VMware\VMware Workstation\x64\libeay32.dll
Nov 29 19:56:13.098: vmx|   file version 0.9.8.14
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fef8f70000 size 0x0x00009000
Nov 29 19:56:13.098: vmx|   checksum 0x00007fcc timestamp 0x4a5be0c1
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\wsock32.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x01d40000 size 0x0x00045000
Nov 29 19:56:13.098: vmx|   checksum 0x0004bf82 timestamp 0x4bb53a8d
Nov 29 19:56:13.098: vmx|   image file C:\Program Files (x86)\VMware\VMware Workstation\x64\ssleay32.dll
Nov 29 19:56:13.098: vmx|   file version 0.9.8.14
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefcba0000 size 0x0x00017000
Nov 29 19:56:13.098: vmx|   checksum 0x0002057f timestamp 0x4a5bdf96
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\cryptsp.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.098: vmx| CoreDump: including module base 0x0x7fefc8a0000 size 0x0x00047000
Nov 29 19:56:13.098: vmx|   checksum 0x0005330e timestamp 0x4a5be039
Nov 29 19:56:13.098: vmx|   image file C:\Windows\System32\rsaenh.dll
Nov 29 19:56:13.098: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefd170000 size 0x0x00025000
Nov 29 19:56:13.102: vmx|   checksum 0x000280b8 timestamp 0x4a5be095
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\sspicli.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefc410000 size 0x0x0002d000
Nov 29 19:56:13.102: vmx|   checksum 0x0002848d timestamp 0x4a5be03d
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\ntmarta.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefe8d0000 size 0x0x00050000
Nov 29 19:56:13.102: vmx|   checksum 0x0004cf0d timestamp 0x4a5be0dd
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\Wldap32.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefcb40000 size 0x0x00054000
Nov 29 19:56:13.102: vmx|   checksum 0x0005adb7 timestamp 0x4a5bdfc4
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\mswsock.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefc9c0000 size 0x0x0005b000
Nov 29 19:56:13.102: vmx|   checksum 0x0005750c timestamp 0x4a5bdeed
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\dnsapi.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fef9d10000 size 0x0x00008000
Nov 29 19:56:13.102: vmx|   checksum 0x00004434 timestamp 0x4a5be02d
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\rasadhlp.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefc510000 size 0x0x00007000
Nov 29 19:56:13.102: vmx|   checksum 0x00007a4d timestamp 0x4a5be0b7
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\WSHTCPIP.DLL
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fef2c80000 size 0x0x00125000
Nov 29 19:56:13.102: vmx|   checksum 0x00117ded timestamp 0x4a5bdec4
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\dbghelp.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefc720000 size 0x0x0003d000
Nov 29 19:56:13.102: vmx|   checksum 0x00047105 timestamp 0x4a5be0c3
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\winsta.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefb4a0000 size 0x0x00011000
Nov 29 19:56:13.102: vmx|   checksum 0x00016a1e timestamp 0x4a5be09c
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\wtsapi32.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefd4f0000 size 0x0x00039000
Nov 29 19:56:13.102: vmx|   checksum 0x000396db timestamp 0x4a5be0c7
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\wintrust.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefd380000 size 0x0x00166000
Nov 29 19:56:13.102: vmx|   checksum 0x0016fbb9 timestamp 0x4a5bdf90
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\crypt32.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefd370000 size 0x0x0000f000
Nov 29 19:56:13.102: vmx|   checksum 0x0000e98f timestamp 0x4a5bdfa2
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\msasn1.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fef1bd0000 size 0x0x001ff000
Nov 29 19:56:13.102: vmx|   checksum 0x00201221 timestamp 0x4a5bdebc
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\d3d9.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefc440000 size 0x0x0000c000
Nov 29 19:56:13.102: vmx|   checksum 0x00011f3f timestamp 0x4a5be082
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\version.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fef8d20000 size 0x0x00007000
Nov 29 19:56:13.102: vmx|   checksum 0x00010ba6 timestamp 0x4a5bdebb
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\d3d8thk.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fef0d20000 size 0x0x00544000
Nov 29 19:56:13.102: vmx|   checksum 0x005342fb timestamp 0x4a5bdf54
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\igdumd64.dll
Nov 29 19:56:13.102: vmx|   file version 8.15.10.1749
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefbe50000 size 0x0x0004b000
Nov 29 19:56:13.102: vmx|   checksum 0x0004ce08 timestamp 0x4a5bdf68
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\MMDevAPI.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefbd20000 size 0x0x0012c000
Nov 29 19:56:13.102: vmx|   checksum 0x00129d74 timestamp 0x4a5be022
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\propsys.dll
Nov 29 19:56:13.102: vmx|   file version 7.0.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fef7a20000 size 0x0x0003b000
Nov 29 19:56:13.102: vmx|   checksum 0x00035bf5 timestamp 0x4a5be083
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\wdmaud.drv
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x72d50000 size 0x0x00006000
Nov 29 19:56:13.102: vmx|   checksum 0x0000c695 timestamp 0x4a5bdfe9
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\ksuser.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefbd10000 size 0x0x00009000
Nov 29 19:56:13.102: vmx|   checksum 0x0000565e timestamp 0x4a5bde96
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\avrt.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefb400000 size 0x0x0004f000
Nov 29 19:56:13.102: vmx|   checksum 0x0004c126 timestamp 0x4a5bde75
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\AudioSes.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefb3f0000 size 0x0x0000a000
Nov 29 19:56:13.102: vmx|   checksum 0x0000b147 timestamp 0x4a5bdf90
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\msacm32.drv
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefb3d0000 size 0x0x00018000
Nov 29 19:56:13.102: vmx|   checksum 0x00022ab8 timestamp 0x4a5bdf8f
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\msacm32.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefb3c0000 size 0x0x00009000
Nov 29 19:56:13.102: vmx|   checksum 0x0000fd43 timestamp 0x4a5bdfbe
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\midimap.dll
Nov 29 19:56:13.102: vmx|   file version 6.1.7600.16385
Nov 29 19:56:13.102: vmx| CoreDump: including module base 0x0x7fefe430000 size 0x0x00099000
Nov 29 19:56:13.102: vmx|   checksum 0x00096b25 timestamp 0x4a5bdeba
Nov 29 19:56:13.102: vmx|   image file C:\Windows\System32\clbcatq.dll
Nov 29 19:56:13.102: vmx|   file version 2001.12.8530.16385
Nov 29 19:56:13.102: vmx| CoreDump: Including thread 2756
Nov 29 19:56:13.102: vmx| CoreDump: Including thread 2032
Nov 29 19:56:13.102: vmx| CoreDump: Including thread 2740
Nov 29 19:56:13.102: vmx| CoreDump: Including thread 900
Nov 29 19:56:13.102: vmx| CoreDump: Including thread 772
Nov 29 19:56:13.102: vmx| CoreDump: Including thread 2392
Nov 29 19:56:13.102: vmx| CoreDump: Including thread 472
Nov 29 19:56:13.102: vmx| CoreDump: Including thread 1740
Nov 29 19:56:13.102: vmx| CoreDump: Including thread 2412
Nov 29 19:56:13.102: vmx| CoreDump: Including thread 1896
Nov 29 19:56:13.102: vmx| CoreDump: Including thread 2924
Nov 29 19:56:13.102: vmx| CoreDump: Including thread 2272
Nov 29 19:56:13.411: vmx| Backtrace:
Nov 29 19:56:13.446: vmx| backtrace[00] frame 0x0012e728 IP 0x14004e28e params 0 0x3164f60 0x1 0 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x140000000 0x0001:0x0004d28e]
Nov 29 19:56:13.465: vmx| backtrace[01] frame 0x0012f050 IP 0x14002294b params 0x1404915a8 0x1404b0ab8 0x6a9 0x527 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x140000000 0x0001:0x0002194b]
Nov 29 19:56:13.465: vmx| backtrace[02] frame 0x0012f150 IP 0x1400610fe params 0x3126530 0x2182e0 0x3126530 0 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x140000000 0x0001:0x000600fe]
Nov 29 19:56:13.465: vmx| backtrace[03] frame 0x0012f1b0 IP 0x140062aef params 0x12f248 0x12017 0x3126530 0 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x140000000 0x0001:0x00061aef]
Nov 29 19:56:13.469: vmx| backtrace[04] frame 0x0012f210 IP 0x1400a795b params 0 0x2 0x28 0 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x140000000 0x0001:0x000a695b]
Nov 29 19:56:13.469: vmx| backtrace[05] frame 0x0012f270 IP 0x14013d673 params 0 0x3126530 0 0x2f343b0 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x140000000 0x0001:0x0013c673]
Nov 29 19:56:13.469: vmx| backtrace[06] frame 0x0012f300 IP 0x14005bc32 params 0x2f20e40 0x8 0x1 0x1ffffffff ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x140000000 0x0001:0x0005ac32]
Nov 29 19:56:13.481: vmx| backtrace[07] frame 0x0012f350 IP 0x14005e0a6 params 0 0x2f20e40 0x3126563 0x8 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x140000000 0x0001:0x0005d0a6]
Nov 29 19:56:13.481: vmx| backtrace[08] frame 0x0012f390 IP 0x14018af6a params 0x53ffd0 0 0x2f20e40 0x64 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x140000000 0x0001:0x00189f6a]
Nov 29 19:56:13.481: vmx| backtrace[09] frame 0x0012f3c0 IP 0x14018c192 params 0x1ea5510 0x2edcc50 0x19 0x12f418 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x140000000 0x0001:0x0018b192]
Nov 29 19:56:13.481: vmx| backtrace[10] frame 0x0012f3f0 IP 0x140060526 params 0x1 0x2efce80 0 0 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x140000000 0x0001:0x0005f526]
Nov 29 19:56:13.481: vmx| backtrace[11] frame 0x0012f470 IP 0x140061c9b params 0x1 0xffffffff 0xffffffff 0 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x140000000 0x0001:0x00060c9b]
Nov 29 19:56:13.481: vmx| backtrace[12] frame 0x0012fce0 IP 0x14006346c params 0x1f9789400 0 0x53ffd0 0x1 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x140000000 0x0001:0x0006246c]
Nov 29 19:56:13.481: vmx| backtrace[13] frame 0x0012fd30 IP 0x140063a14 params 0 0x2 0 0x2f2bba0 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x140000000 0x0001:0x00062a14]
Nov 29 19:56:13.481: vmx| backtrace[14] frame 0x0012fd70 IP 0x140023a00 params 0x2ee3250 0x2 0 0x2f2bba0 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x140000000 0x0001:0x00022a00]
Nov 29 19:56:13.481: vmx| backtrace[15] frame 0x0012fe00 IP 0x140024008 params 0x516a40 0x2f2bba0 0x14066ff40 0x2f307b0 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x140000000 0x0001:0x00023008]
Nov 29 19:56:13.481: vmx| backtrace[16] frame 0x0012fe50 IP 0x14000424c params 0 0 0 0x130000 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x140000000 0x0001:0x0000324c]
Nov 29 19:56:13.481: vmx| backtrace[17] frame 0x0012fea0 IP 0x1400042c2 params 0x130000 0 0 0 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x140000000 0x0001:0x000032c2]
Nov 29 19:56:13.485: vmx| backtrace[18] frame 0x0012ff50 IP 0x140001c81 params 0 0 0 0 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x140000000 0x0001:0x00000c81]
Nov 29 19:56:13.485: vmx| backtrace[19] frame 0x0012ff58 IP 0x7689f56d params 0 0 0 0 BaseThreadInitThunk + 0x000d [C:\Windows\system32\kernel32.dll base 0x76880000 0x0001:0x0001e56d]
Nov 29 19:56:13.489: vmx| backtrace[20] frame 0x0012ff88 IP 0x76e93281 params 0 0 0 0 RtlUserThreadStart + 0x0021 [C:\Windows\SYSTEM32\ntdll.dll base 0x76e60000 0x0001:0x00032281]
Nov 29 19:56:13.489: vmx| Msg_Post: Error
Nov 29 19:56:13.489: vmx| [msg.log.error.unrecoverable] VMware Workstation unrecoverable error: (vmx)
Nov 29 19:56:13.489: vmx| ASSERT d:/build/ob/bora-491717/bora/vmx/main/pollVMX.c:1705 bugNr=1319
Nov 29 19:56:13.489: vmx| [msg.panic.haveLog] A log file is available in "G:\VM\DRIVER\Windows 7 sp1\vmware.log".  [msg.panic.haveCore] A core file is available in "G:\VM\DRIVER\Windows 7 sp1\vmware-vmx-1440.dmp".  [msg.panic.requestSupport.withLogAndCore] Please request support and include the contents of the log file and core file.  [msg.panic.requestSupport.vmSupport.windows]
Nov 29 19:56:13.489: vmx| To collect data to submit to VMware support, choose "Collect Support Data" from the Help menu.
Nov 29 19:56:13.489: vmx| You can also run the "vm-support" script in the Workstation folder directly.
Nov 29 19:56:13.489: vmx| [msg.panic.response] We will respond on the basis of your support entitlement.
Nov 29 19:56:13.489: vmx| ----------------------------------------
Nov 29 19:56:13.489: vmx| USBGW: Write arbitrator op:13 len:14
Nov 29 19:56:13.516: vmx| Vix: [2756 mainDispatch.c:4088]: VMAutomationProcessMessage: Postpone the command. MSG in progress (opcode 151)
Nov 29 19:57:20.457: vmx| USBGW: Write arbitrator op:13 len:14
Nov 29 19:57:20.582: WinNotifyThread| VTHREAD watched thread 0 "vmx" died
Nov 29 19:57:20.704: kbh| VTHREAD watched thread 0 "vmx" died
Nov 29 19:57:21.411: vcpu-0| VTHREAD watched thread 0 "vmx" died
Nov 29 19:57:21.411: usbCCIDEnumCards| VTHREAD watched thread 0 "vmx" died
Nov 29 19:57:21.411: Worker#0| VTHREAD watched thread 0 "vmx" died
Nov 29 19:57:21.411: aioCompletion| VTHREAD watched thread 0 "vmx" died
Nov 29 19:57:21.465: mks| VTHREAD watched thread 0 "vmx" died

RunProgramInGuest only works if user is already logged in interactively?

$
0
0

I am at a loss on how to use the VIX api or vmrun.exe to run programs in the guest OS. I see proofs of concepts, but never have seen any signifcant, real-life, business case example of this working. I have been through every.VIX api.resource.available.

 

Here are my operations at a high level:

1. power on VM snapshot
2. Run a program. Such as notepad.exe. Ideally, I would like to run an msi package. but keeping it simple for now...
3. shutdown the VM
4. take snapshot
Now - these steps work fine if I first manually log into an already-powered-on snapshot and just start my program in step 2. Everything just works. However, if I start at step 1 and allow VIX to power on the snapshot, my RunProgramInGuest just doesn't do what it normally would had I been logged in already. Same situation occurs for RunScriptInGuest. It seems that unless I am also already logged into the machine with a real, interactive user session, I cannot get the program to run inside the guest.
vmrun -T ws runScriptInGuest -activewindow D:\VMware-VMs\test-W7x86-3\test-W7x86-3.vmx "C:\windows\system32\cmd.exe" "/c C:\users\test\desktop\StartTask.bat"

 

UAC is off on host and guest machine. my user is Administrator. The result of running this command is that I can use listProcessesInGuest and see some new processes running under this username:

pid=2984, owner=MYDOMAIN\test, cmd="C:\Windows\System32\cmd.exe"  "C:\Users\test\AppData\Local\Temp\vixScript0"

pid=2992, owner=MYDOMAIN\test, cmd=\??\C:\Windows\system32\conhost.exe "-262616372-801187394105077478520761067478199601-1762539247384719877-515260550

 

the above is the farthest I can get. runProgramInGuest doesn't even get me this far however...I wouldn't even see the process get kicked off.

 

I have accomplished this goald with virtual box in the past. I moved toward VMWare and find it a much much better product. However this API seems a little more difficult to work.

 

I also raised a similar version of this problem here: http://stackoverflow.com/questions/12335148/unable-to-use-vix-api-to-power-on-vm-install-software-with-msiexec-then-create

How to ignore quotes in vmrun commands

$
0
0

Hi,

 

I am trying to execute a vmrun command like below which is working fine.

 

vmrun -T esx -h https://test.eng.vmware.com/sdk -u root -p password -gu root -gp password runProgramInGuest "[datastore] test/test.vmx" /bin/rpm -i /root/expect-5.43.0-5.1.x86_64.rpm

 

But if I execute it like below (please note I've mentioned the programName in quotes)

 

vmrun -T esx -h https://test.eng.vmware.com/sdk -u root -p password -gu root -gp password runProgramInGuest "[datastore] test/test.vmx" "/bin/rpm -i /root/expect-5.43.0-5.1.x86_64.rpm"

 

then I am getting an error "Error: A file was not found"

 

Why is this difference..?

I need that command to be worked in the second format also. Because I am trying to execute it from java where I am passing all the details as strings. So it is getting executed with quotes and I am getting the same error "Error: A file was not found".

 

Any solution..?

 

Regards,

Badri.

VMWare API: Create a Web for see my VMMachines status,info...

$
0
0

Hi all,

 

I'm new in the VMWARE API World. I wish to create a web that let users check their VMMachine Info, status and also Reboot,Start or Shutdown.

 

I've been looking for some info but I'm becoming crazy because the official documentation is from 2004 and in Perl Language. I wish use PHP or Ptyhon if can be possible.

 

Anybody can help me? I want to know how to connect to my VMWare Host and check it out the information.

 

What language I have to use? How can i find information about connect and show info?

 

Lots of Thanks

PowerON VM from remote via PSEXEC and API doesn't work

$
0
0

Frame:

VMware Workstation 10.0

VS-Studio 2012

.NET 4.0

Windows 7 64bit

Vestris.VMwareLib.Dll [version 1.7] <-- wrapper for VIX API

Installed VMware-VIX-1.13.1-1379776.exe

-----------------------------------------------------------------------------------------------------------------------

 

I have a small C#-program to "shutdown" and "poweron" VM's. If I start my console-pgm with parameters from local in a BAT-file, all works fine.

 

Now i tried to start my pgm from a remote pc via psexec. The poweroff option works fine, the poweron option fails with the following error:

 

Failed to power on virtual machine: powerOnOption=512 timeoutInSeconds=120

 

Does anyone have an idea why?

 

psexec command> psexec \\xxx.xxx.xxx.xxx -u "{domain}\{user}" -p "{password}"  -s "D:\Programme\VMoperations\VMstart_XXNNV.bat

 

ADDON {05.03.2014 15:59}: I  tried it with PAEXEC and REEXEC, they failed too. And I changed my BATCH-file to call the VMrun.exe, but failed too. I think, it's a bug of VMware ?!?!?!

 

----------------------------------------------------------------------------------------------------------------------

 

BAT-File VMstart_XXNNV.bat:

SET fwpath="D:\Programme\VMoperations"

%fwpath%\VMoperations.exe -location:{vmpath} -vmname:XXNNV -o:poweron

----------------------------------------------------------------------------------------------------------------------

 

C# source VMoperations.exe:

reference to Vestris.VMWareLIb

refernce to Interop.VixCOM

--------------------------------------------------------------------------------------------


using Vestris.VMWareLib;  <-- version 1.7

...

 

private static void VMwork(string location, string vmName, string operationType)

        {

            try

            {

                using (VMWareVirtualHost virtualHost = new VMWareVirtualHost())

                {

                    virtualHost.ConnectToVMWareWorkstation();

                    vmxName = location + vmName + @"\" + vmName + @".vmx";

                    using (VMWareVirtualMachine virtualMachine = virtualHost.Open(vmxName))

                    {

                        vmPowerState = virtualMachine.PowerState;

 

                        switch (operationType)

                        {

                            case "shutdown":

                                if (vmPowerState == 1096)

                                {

                                    virtualMachine.ShutdownGuest();

                                }

                                break;

                            case "poweroff":

                                if (vmPowerState == 1096)

                                {

                                    virtualMachine.PowerOff();

                                }

                                break;

                            case "poweron":

                                if (vmPowerState == 2)

                                {

                                    virtualMachine.PowerOn(120);

                                }

                                break;

                        }

                        virtualMachine.Dispose();

                    }

                    virtualHost.Disconnect();

                    virtualHost.Dispose();

                }

                retCode = 0;

            }

            catch (Exception ex)

            {

                retCode = 1;

            }

        }

 

I tried everything, read dozends of internet pages, but found no info. Ever user on local and remote pc have full admin rights.

 

Best regards Hipp1010

Viewing all 34639 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>