| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040 |
- 00:00:03.120862 VirtualBox VM 6.1.38 r153438 win.amd64 (Sep 1 2022 14:20:23) release log
- 00:00:03.120867 Log opened 2022-09-07T12:54:47.951017000Z
- 00:00:03.120867 Build Type: release
- 00:00:03.120869 OS Product: Windows 10
- 00:00:03.120870 OS Release: 10.0.19044
- 00:00:03.120870 OS Service Pack:
- 00:00:03.184192 DMI Product Name: ONDA H310S
- 00:00:03.188013 DMI Product Version: 1.00
- 00:00:03.188025 Firmware type: BIOS
- 00:00:03.188029 Host RAM: 16233MB (15.8GB) total, 5809MB (5.6GB) available
- 00:00:03.188031 Executable: D:\virtualbox\VirtualBoxVM.exe
- 00:00:03.188032 Process ID: 11960
- 00:00:03.188032 Package type: WINDOWS_64BITS_GENERIC
- 00:00:03.189021 Installed Extension Packs:
- 00:00:03.189048 None installed!
- 00:00:03.189823 Console: Machine state changed to 'Starting'
- 00:00:03.189951 Qt version: 5.6.2
- 00:00:03.191434 GUI: UIMediumEnumerator: Medium-enumeration finished!
- 00:00:03.340730 SUP: seg #0: R 0x00000000 LB 0x00001000
- 00:00:03.340741 SUP: seg #1: R X 0x00001000 LB 0x00109000
- 00:00:03.340744 SUP: seg #2: R 0x0010a000 LB 0x0004a000
- 00:00:03.340747 SUP: seg #3: RW 0x00154000 LB 0x00013000
- 00:00:03.340749 SUP: seg #4: R 0x00167000 LB 0x0000e000
- 00:00:03.340751 SUP: seg #5: RW 0x00175000 LB 0x00003000
- 00:00:03.340754 SUP: seg #6: R 0x00178000 LB 0x0000b000
- 00:00:03.340756 SUP: seg #7: RWX 0x00183000 LB 0x00002000
- 00:00:03.340758 SUP: seg #8: R 0x00185000 LB 0x00007000
- 00:00:03.341359 SUP: Loaded VMMR0.r0 (D:\virtualbox\VMMR0.r0) at 0xXXXXXXXXXXXXXXXX - ModuleInit at XXXXXXXXXXXXXXXX and ModuleTerm at XXXXXXXXXXXXXXXX using the native ring-0 loader
- 00:00:03.341373 SUP: VMMR0EntryEx located at XXXXXXXXXXXXXXXX and VMMR0EntryFast at XXXXXXXXXXXXXXXX
- 00:00:03.341376 SUP: windbg> .reload /f D:\virtualbox\VMMR0.r0=0xXXXXXXXXXXXXXXXX
- 00:00:03.342200 Guest OS type: 'Linux_64'
- 00:00:03.342838 fHMForced=true - No raw-mode support in this build!
- 00:00:03.345046 File system of 'D:\gitOptions\zz-adminStudy\tang\Snapshots' (snapshots) is unknown
- 00:00:03.345054 File system of 'D:\gitOptions\zz-adminStudy\tang\tang.vdi' is ntfs
- 00:00:03.362345 Shared Clipboard: Service loaded
- 00:00:03.362353 Shared Clipboard: Mode: Off
- 00:00:03.362577 Shared Clipboard: Service running in normal mode
- 00:00:03.374673 Drag and drop service loaded
- 00:00:03.374682 Drag and drop mode: Off
- 00:00:03.375785 ************************* CFGM dump *************************
- 00:00:03.375786 [/] (level 0)
- 00:00:03.375788 CpuExecutionCap <integer> = 0x0000000000000064 (100)
- 00:00:03.375789 EnablePAE <integer> = 0x0000000000000001 (1)
- 00:00:03.375790 HMEnabled <integer> = 0x0000000000000001 (1)
- 00:00:03.375791 MemBalloonSize <integer> = 0x0000000000000000 (0)
- 00:00:03.375792 Name <string> = "tang" (cb=5)
- 00:00:03.375792 NumCPUs <integer> = 0x0000000000000001 (1)
- 00:00:03.375793 PageFusionAllowed <integer> = 0x0000000000000000 (0)
- 00:00:03.375794 RamHoleSize <integer> = 0x0000000020000000 (536 870 912, 512 MB)
- 00:00:03.375795 RamSize <integer> = 0x0000000100000000 (4 294 967 296, 4 096 MB, 4.0 GB)
- 00:00:03.375797 TimerMillies <integer> = 0x000000000000000a (10)
- 00:00:03.375798 UUID <bytes> = "dc 52 66 3f f2 6e 81 43 bc c0 ae 37 42 59 c3 34" (cb=16)
- 00:00:03.375805
- 00:00:03.375805 [/CPUM/] (level 1)
- 00:00:03.375806 GuestCpuName <string> = "host" (cb=5)
- 00:00:03.375807 NestedHWVirt <integer> = 0x0000000000000000 (0)
- 00:00:03.375809 PortableCpuIdLevel <integer> = 0x0000000000000000 (0)
- 00:00:03.375810 SpecCtrl <integer> = 0x0000000000000000 (0)
- 00:00:03.375810
- 00:00:03.375810 [/CPUM/IsaExts/] (level 2)
- 00:00:03.375811
- 00:00:03.375811 [/DBGC/] (level 1)
- 00:00:03.375812 GlobalInitScript <string> = "C:\Users\zzzzz\.VirtualBox/dbgc-init" (cb=37)
- 00:00:03.375813 HistoryFile <string> = "C:\Users\zzzzz\.VirtualBox/dbgc-history" (cb=40)
- 00:00:03.375813 LocalInitScript <string> = "D:\gitOptions\zz-adminStudy\tang/dbgc-init" (cb=43)
- 00:00:03.375814
- 00:00:03.375814 [/DBGF/] (level 1)
- 00:00:03.375815 Path <string> = "D:\gitOptions\zz-adminStudy\tang/debug/;D:\gitOptions\zz-adminStudy\tang/;cache*D:\gitOptions\zz-adminStudy\tang/dbgcache/;C:\Users\zzzzz\" (cb=139)
- 00:00:03.375816
- 00:00:03.375816 [/Devices/] (level 1)
- 00:00:03.375816
- 00:00:03.375817 [/Devices/8237A/] (level 2)
- 00:00:03.375817
- 00:00:03.375817 [/Devices/8237A/0/] (level 3)
- 00:00:03.375818 Trusted <integer> = 0x0000000000000001 (1)
- 00:00:03.375819
- 00:00:03.375819 [/Devices/GIMDev/] (level 2)
- 00:00:03.375820
- 00:00:03.375820 [/Devices/GIMDev/0/] (level 3)
- 00:00:03.375820 Trusted <integer> = 0x0000000000000001 (1)
- 00:00:03.375821
- 00:00:03.375821 [/Devices/VMMDev/] (level 2)
- 00:00:03.375822
- 00:00:03.375822 [/Devices/VMMDev/0/] (level 3)
- 00:00:03.375823 PCIBusNo <integer> = 0x0000000000000000 (0)
- 00:00:03.375823 PCIDeviceNo <integer> = 0x0000000000000004 (4)
- 00:00:03.375824 PCIFunctionNo <integer> = 0x0000000000000000 (0)
- 00:00:03.375824 Trusted <integer> = 0x0000000000000001 (1)
- 00:00:03.375825
- 00:00:03.375825 [/Devices/VMMDev/0/Config/] (level 4)
- 00:00:03.375826 GuestCoreDumpDir <string> = "D:\gitOptions\zz-adminStudy\tang\Snapshots" (cb=43)
- 00:00:03.375826
- 00:00:03.375827 [/Devices/VMMDev/0/LUN#0/] (level 4)
- 00:00:03.375827 Driver <string> = "HGCM" (cb=5)
- 00:00:03.375828
- 00:00:03.375828 [/Devices/VMMDev/0/LUN#0/Config/] (level 5)
- 00:00:03.375829 Object <integer> = 0x0000000008dff2c0 (148 894 400)
- 00:00:03.375830
- 00:00:03.375830 [/Devices/VMMDev/0/LUN#999/] (level 4)
- 00:00:03.375831 Driver <string> = "MainStatus" (cb=11)
- 00:00:03.375831
- 00:00:03.375831 [/Devices/VMMDev/0/LUN#999/Config/] (level 5)
- 00:00:03.375832 First <integer> = 0x0000000000000000 (0)
- 00:00:03.375833 Last <integer> = 0x0000000000000000 (0)
- 00:00:03.375833 papLeds <integer> = 0x0000000001cc6be8 (30 174 184)
- 00:00:03.375834
- 00:00:03.375834 [/Devices/acpi/] (level 2)
- 00:00:03.375835
- 00:00:03.375835 [/Devices/acpi/0/] (level 3)
- 00:00:03.375836 PCIBusNo <integer> = 0x0000000000000000 (0)
- 00:00:03.375836 PCIDeviceNo <integer> = 0x0000000000000007 (7)
- 00:00:03.375837 PCIFunctionNo <integer> = 0x0000000000000000 (0)
- 00:00:03.375837 Trusted <integer> = 0x0000000000000001 (1)
- 00:00:03.375838
- 00:00:03.375838 [/Devices/acpi/0/Config/] (level 4)
- 00:00:03.375839 CpuHotPlug <integer> = 0x0000000000000000 (0)
- 00:00:03.375840 FdcEnabled <integer> = 0x0000000000000000 (0)
- 00:00:03.375840 HostBusPciAddress <integer> = 0x0000000000000000 (0)
- 00:00:03.375841 HpetEnabled <integer> = 0x0000000000000000 (0)
- 00:00:03.375841 IOAPIC <integer> = 0x0000000000000001 (1)
- 00:00:03.375842 IocPciAddress <integer> = 0x0000000000010000 (65 536)
- 00:00:03.375843 NumCPUs <integer> = 0x0000000000000001 (1)
- 00:00:03.375843 Parallel0IoPortBase <integer> = 0x0000000000000000 (0)
- 00:00:03.375844 Parallel0Irq <integer> = 0x0000000000000000 (0)
- 00:00:03.375844 Parallel1IoPortBase <integer> = 0x0000000000000000 (0)
- 00:00:03.375845 Parallel1Irq <integer> = 0x0000000000000000 (0)
- 00:00:03.375845 Serial0IoPortBase <integer> = 0x0000000000000000 (0)
- 00:00:03.375846 Serial0Irq <integer> = 0x0000000000000000 (0)
- 00:00:03.375846 Serial1IoPortBase <integer> = 0x0000000000000000 (0)
- 00:00:03.375847 Serial1Irq <integer> = 0x0000000000000000 (0)
- 00:00:03.375847 ShowCpu <integer> = 0x0000000000000001 (1)
- 00:00:03.375848 ShowRtc <integer> = 0x0000000000000000 (0)
- 00:00:03.375848 SmcEnabled <integer> = 0x0000000000000000 (0)
- 00:00:03.375849
- 00:00:03.375849 [/Devices/acpi/0/LUN#0/] (level 4)
- 00:00:03.375850 Driver <string> = "ACPIHost" (cb=9)
- 00:00:03.375850
- 00:00:03.375850 [/Devices/acpi/0/LUN#0/Config/] (level 5)
- 00:00:03.375851
- 00:00:03.375851 [/Devices/apic/] (level 2)
- 00:00:03.375852
- 00:00:03.375852 [/Devices/apic/0/] (level 3)
- 00:00:03.375853 Trusted <integer> = 0x0000000000000001 (1)
- 00:00:03.375853
- 00:00:03.375854 [/Devices/apic/0/Config/] (level 4)
- 00:00:03.375855 IOAPIC <integer> = 0x0000000000000001 (1)
- 00:00:03.375855 Mode <integer> = 0x0000000000000003 (3)
- 00:00:03.375856 NumCPUs <integer> = 0x0000000000000001 (1)
- 00:00:03.375856
- 00:00:03.375856 [/Devices/e1000/] (level 2)
- 00:00:03.375857
- 00:00:03.375857 [/Devices/e1000/0/] (level 3)
- 00:00:03.375858 PCIBusNo <integer> = 0x0000000000000000 (0)
- 00:00:03.375858 PCIDeviceNo <integer> = 0x0000000000000003 (3)
- 00:00:03.375859 PCIFunctionNo <integer> = 0x0000000000000000 (0)
- 00:00:03.375859 Trusted <integer> = 0x0000000000000001 (1)
- 00:00:03.375860
- 00:00:03.375860 [/Devices/e1000/0/Config/] (level 4)
- 00:00:03.375861 AdapterType <integer> = 0x0000000000000000 (0)
- 00:00:03.375862 CableConnected <integer> = 0x0000000000000001 (1)
- 00:00:03.375862 LineSpeed <integer> = 0x0000000000000000 (0)
- 00:00:03.375863 MAC <bytes> = "08 00 27 5c 65 d0" (cb=6)
- 00:00:03.375864
- 00:00:03.375864 [/Devices/e1000/0/LUN#0/] (level 4)
- 00:00:03.375865 Driver <string> = "NAT" (cb=4)
- 00:00:03.375865
- 00:00:03.375865 [/Devices/e1000/0/LUN#0/Config/] (level 5)
- 00:00:03.375866 AliasMode <integer> = 0x0000000000000000 (0)
- 00:00:03.375867 BootFile <string> = "tang.pxe" (cb=9)
- 00:00:03.375867 DNSProxy <integer> = 0x0000000000000000 (0)
- 00:00:03.375868 Network <string> = "10.0.2.0/24" (cb=12)
- 00:00:03.375868 PassDomain <integer> = 0x0000000000000001 (1)
- 00:00:03.375869 TFTPPrefix <string> = "C:\Users\zzzzz\.VirtualBox\TFTP" (cb=32)
- 00:00:03.375869 UseHostResolver <integer> = 0x0000000000000000 (0)
- 00:00:03.375870
- 00:00:03.375870 [/Devices/e1000/0/LUN#999/] (level 4)
- 00:00:03.375871 Driver <string> = "MainStatus" (cb=11)
- 00:00:03.375871
- 00:00:03.375871 [/Devices/e1000/0/LUN#999/Config/] (level 5)
- 00:00:03.375872 First <integer> = 0x0000000000000000 (0)
- 00:00:03.375873 Last <integer> = 0x0000000000000000 (0)
- 00:00:03.375873 papLeds <integer> = 0x0000000001cc6ac8 (30 173 896)
- 00:00:03.375874
- 00:00:03.375874 [/Devices/i8254/] (level 2)
- 00:00:03.375875
- 00:00:03.375875 [/Devices/i8254/0/] (level 3)
- 00:00:03.375876
- 00:00:03.375876 [/Devices/i8254/0/Config/] (level 4)
- 00:00:03.375877
- 00:00:03.375877 [/Devices/i8259/] (level 2)
- 00:00:03.375877
- 00:00:03.375877 [/Devices/i8259/0/] (level 3)
- 00:00:03.375878 Trusted <integer> = 0x0000000000000001 (1)
- 00:00:03.375879
- 00:00:03.375879 [/Devices/i8259/0/Config/] (level 4)
- 00:00:03.375880
- 00:00:03.375880 [/Devices/ichac97/] (level 2)
- 00:00:03.375880
- 00:00:03.375880 [/Devices/ichac97/0/] (level 3)
- 00:00:03.375881 PCIBusNo <integer> = 0x0000000000000000 (0)
- 00:00:03.375882 PCIDeviceNo <integer> = 0x0000000000000005 (5)
- 00:00:03.375882 PCIFunctionNo <integer> = 0x0000000000000000 (0)
- 00:00:03.375882 Trusted <integer> = 0x0000000000000001 (1)
- 00:00:03.375883
- 00:00:03.375883 [/Devices/ichac97/0/AudioConfig/] (level 4)
- 00:00:03.375884
- 00:00:03.375884 [/Devices/ichac97/0/Config/] (level 4)
- 00:00:03.375885 Codec <string> = "STAC9700" (cb=9)
- 00:00:03.375885 DebugEnabled <integer> = 0x0000000000000000 (0)
- 00:00:03.375886
- 00:00:03.375886 [/Devices/ichac97/0/LUN#0/] (level 4)
- 00:00:03.375887 Driver <string> = "AUDIO" (cb=6)
- 00:00:03.375887
- 00:00:03.375887 [/Devices/ichac97/0/LUN#0/AttachedDriver/] (level 5)
- 00:00:03.375888 Driver <string> = "HostAudioWas" (cb=13)
- 00:00:03.375889
- 00:00:03.375889 [/Devices/ichac97/0/LUN#0/AttachedDriver/Config/] (level 6)
- 00:00:03.375890 VmName <string> = "tang" (cb=5)
- 00:00:03.375890 VmUuid <string> = "3f6652dc-6ef2-4381-bcc0-ae374259c334" (cb=37)
- 00:00:03.375891
- 00:00:03.375891 [/Devices/ichac97/0/LUN#0/Config/] (level 5)
- 00:00:03.375892 DriverName <string> = "HostAudioWas" (cb=13)
- 00:00:03.375892 InputEnabled <integer> = 0x0000000000000000 (0)
- 00:00:03.375893 OutputEnabled <integer> = 0x0000000000000001 (1)
- 00:00:03.375893
- 00:00:03.375893 [/Devices/ichac97/0/LUN#1/] (level 4)
- 00:00:03.375894 Driver <string> = "AUDIO" (cb=6)
- 00:00:03.375895
- 00:00:03.375895 [/Devices/ichac97/0/LUN#2/] (level 4)
- 00:00:03.375896 Driver <string> = "AUDIO" (cb=6)
- 00:00:03.375896
- 00:00:03.375896 [/Devices/ioapic/] (level 2)
- 00:00:03.375897
- 00:00:03.375897 [/Devices/ioapic/0/] (level 3)
- 00:00:03.375897 Trusted <integer> = 0x0000000000000001 (1)
- 00:00:03.375898
- 00:00:03.375898 [/Devices/ioapic/0/Config/] (level 4)
- 00:00:03.375899 NumCPUs <integer> = 0x0000000000000001 (1)
- 00:00:03.375899
- 00:00:03.375899 [/Devices/mc146818/] (level 2)
- 00:00:03.375900
- 00:00:03.375900 [/Devices/mc146818/0/] (level 3)
- 00:00:03.375901
- 00:00:03.375901 [/Devices/mc146818/0/Config/] (level 4)
- 00:00:03.375902 UseUTC <integer> = 0x0000000000000001 (1)
- 00:00:03.375902
- 00:00:03.375902 [/Devices/parallel/] (level 2)
- 00:00:03.375903
- 00:00:03.375903 [/Devices/pcarch/] (level 2)
- 00:00:03.375904
- 00:00:03.375904 [/Devices/pcarch/0/] (level 3)
- 00:00:03.375904 Trusted <integer> = 0x0000000000000001 (1)
- 00:00:03.375905
- 00:00:03.375905 [/Devices/pcarch/0/Config/] (level 4)
- 00:00:03.375906
- 00:00:03.375906 [/Devices/pcbios/] (level 2)
- 00:00:03.375906
- 00:00:03.375907 [/Devices/pcbios/0/] (level 3)
- 00:00:03.375907 Trusted <integer> = 0x0000000000000001 (1)
- 00:00:03.375908
- 00:00:03.375908 [/Devices/pcbios/0/Config/] (level 4)
- 00:00:03.375909 APIC <integer> = 0x0000000000000001 (1)
- 00:00:03.375909 BootDevice0 <string> = "FLOPPY" (cb=7)
- 00:00:03.375910 BootDevice1 <string> = "DVD" (cb=4)
- 00:00:03.375910 BootDevice2 <string> = "IDE" (cb=4)
- 00:00:03.375911 BootDevice3 <string> = "NONE" (cb=5)
- 00:00:03.375911 FloppyDevice <string> = "i82078" (cb=7)
- 00:00:03.375912 HardDiskDevice <string> = "piix3ide" (cb=9)
- 00:00:03.375912 IOAPIC <integer> = 0x0000000000000001 (1)
- 00:00:03.375913 McfgBase <integer> = 0x0000000000000000 (0)
- 00:00:03.375913 McfgLength <integer> = 0x0000000000000000 (0)
- 00:00:03.375914 NumCPUs <integer> = 0x0000000000000001 (1)
- 00:00:03.375914 PXEDebug <integer> = 0x0000000000000000 (0)
- 00:00:03.375915 UUID <bytes> = "dc 52 66 3f f2 6e 81 43 bc c0 ae 37 42 59 c3 34" (cb=16)
- 00:00:03.375916 UuidLe <integer> = 0x0000000000000001 (1)
- 00:00:03.375917
- 00:00:03.375917 [/Devices/pcbios/0/Config/NetBoot/] (level 5)
- 00:00:03.375917
- 00:00:03.375918 [/Devices/pcbios/0/Config/NetBoot/0/] (level 6)
- 00:00:03.375919 NIC <integer> = 0x0000000000000000 (0)
- 00:00:03.375919 PCIBusNo <integer> = 0x0000000000000000 (0)
- 00:00:03.375920 PCIDeviceNo <integer> = 0x0000000000000003 (3)
- 00:00:03.375920 PCIFunctionNo <integer> = 0x0000000000000000 (0)
- 00:00:03.375921
- 00:00:03.375921 [/Devices/pci/] (level 2)
- 00:00:03.375922
- 00:00:03.375922 [/Devices/pci/0/] (level 3)
- 00:00:03.375922 Trusted <integer> = 0x0000000000000001 (1)
- 00:00:03.375923
- 00:00:03.375923 [/Devices/pci/0/Config/] (level 4)
- 00:00:03.375924 IOAPIC <integer> = 0x0000000000000001 (1)
- 00:00:03.375924
- 00:00:03.375924 [/Devices/pcibridge/] (level 2)
- 00:00:03.375925
- 00:00:03.375925 [/Devices/pckbd/] (level 2)
- 00:00:03.375926
- 00:00:03.375926 [/Devices/pckbd/0/] (level 3)
- 00:00:03.375926 Trusted <integer> = 0x0000000000000001 (1)
- 00:00:03.375927
- 00:00:03.375927 [/Devices/pckbd/0/Config/] (level 4)
- 00:00:03.375928
- 00:00:03.375928 [/Devices/pckbd/0/LUN#0/] (level 4)
- 00:00:03.375928 Driver <string> = "KeyboardQueue" (cb=14)
- 00:00:03.375929
- 00:00:03.375929 [/Devices/pckbd/0/LUN#0/AttachedDriver/] (level 5)
- 00:00:03.375930 Driver <string> = "MainKeyboard" (cb=13)
- 00:00:03.375930
- 00:00:03.375931 [/Devices/pckbd/0/LUN#0/AttachedDriver/Config/] (level 6)
- 00:00:03.375932 Object <integer> = 0x0000000001c1fc00 (29 490 176)
- 00:00:03.375932
- 00:00:03.375933 [/Devices/pckbd/0/LUN#0/Config/] (level 5)
- 00:00:03.375933 QueueSize <integer> = 0x0000000000000040 (64)
- 00:00:03.375934
- 00:00:03.375934 [/Devices/pckbd/0/LUN#1/] (level 4)
- 00:00:03.375935 Driver <string> = "MouseQueue" (cb=11)
- 00:00:03.375935
- 00:00:03.375935 [/Devices/pckbd/0/LUN#1/AttachedDriver/] (level 5)
- 00:00:03.375936 Driver <string> = "MainMouse" (cb=10)
- 00:00:03.375937
- 00:00:03.375937 [/Devices/pckbd/0/LUN#1/AttachedDriver/Config/] (level 6)
- 00:00:03.375938 Object <integer> = 0x0000000001c1d2b0 (29 479 600)
- 00:00:03.375939
- 00:00:03.375939 [/Devices/pckbd/0/LUN#1/Config/] (level 5)
- 00:00:03.375939 QueueSize <integer> = 0x0000000000000080 (128)
- 00:00:03.375940
- 00:00:03.375940 [/Devices/pcnet/] (level 2)
- 00:00:03.375941
- 00:00:03.375941 [/Devices/piix3ide/] (level 2)
- 00:00:03.375942
- 00:00:03.375942 [/Devices/piix3ide/0/] (level 3)
- 00:00:03.375942 PCIBusNo <integer> = 0x0000000000000000 (0)
- 00:00:03.375943 PCIDeviceNo <integer> = 0x0000000000000001 (1)
- 00:00:03.375943 PCIFunctionNo <integer> = 0x0000000000000001 (1)
- 00:00:03.375944 Trusted <integer> = 0x0000000000000001 (1)
- 00:00:03.375944
- 00:00:03.375944 [/Devices/piix3ide/0/Config/] (level 4)
- 00:00:03.375945 Type <string> = "PIIX4" (cb=6)
- 00:00:03.375946
- 00:00:03.375946 [/Devices/piix3ide/0/LUN#0/] (level 4)
- 00:00:03.375946 Driver <string> = "VD" (cb=3)
- 00:00:03.375947
- 00:00:03.375947 [/Devices/piix3ide/0/LUN#0/Config/] (level 5)
- 00:00:03.375948 Format <string> = "VDI" (cb=4)
- 00:00:03.375948 Mountable <integer> = 0x0000000000000000 (0)
- 00:00:03.375949 Path <string> = "D:\gitOptions\zz-adminStudy\tang\tang.vdi" (cb=42)
- 00:00:03.375949 Type <string> = "HardDisk" (cb=9)
- 00:00:03.375950
- 00:00:03.375950 [/Devices/piix3ide/0/LUN#0/Config/VDConfig/] (level 6)
- 00:00:03.375951 AllocationBlockSize <string> = "1048576" (cb=8)
- 00:00:03.375951
- 00:00:03.375951 [/Devices/piix3ide/0/LUN#2/] (level 4)
- 00:00:03.375952 Driver <string> = "VD" (cb=3)
- 00:00:03.375952
- 00:00:03.375953 [/Devices/piix3ide/0/LUN#2/Config/] (level 5)
- 00:00:03.375953 EmptyDrive <integer> = 0x0000000000000001 (1)
- 00:00:03.375954 Mountable <integer> = 0x0000000000000001 (1)
- 00:00:03.375954 Type <string> = "DVD" (cb=4)
- 00:00:03.375955
- 00:00:03.375955 [/Devices/piix3ide/0/LUN#999/] (level 4)
- 00:00:03.375956 Driver <string> = "MainStatus" (cb=11)
- 00:00:03.375956
- 00:00:03.375956 [/Devices/piix3ide/0/LUN#999/Config/] (level 5)
- 00:00:03.375957 DeviceInstance <string> = "piix3ide/0" (cb=11)
- 00:00:03.375958 First <integer> = 0x0000000000000000 (0)
- 00:00:03.375958 Last <integer> = 0x0000000000000003 (3)
- 00:00:03.375959 pConsole <integer> = 0x0000000001cc57f0 (30 169 072)
- 00:00:03.375960 papLeds <integer> = 0x0000000001cc5fd0 (30 171 088)
- 00:00:03.375960 pmapMediumAttachments <integer> = 0x0000000001cc6c08 (30 174 216)
- 00:00:03.375961
- 00:00:03.375961 [/Devices/serial/] (level 2)
- 00:00:03.375962
- 00:00:03.375962 [/Devices/usb-ohci/] (level 2)
- 00:00:03.375963
- 00:00:03.375963 [/Devices/usb-ohci/0/] (level 3)
- 00:00:03.375963 PCIBusNo <integer> = 0x0000000000000000 (0)
- 00:00:03.375964 PCIDeviceNo <integer> = 0x0000000000000006 (6)
- 00:00:03.375964 PCIFunctionNo <integer> = 0x0000000000000000 (0)
- 00:00:03.375965 Trusted <integer> = 0x0000000000000001 (1)
- 00:00:03.375965
- 00:00:03.375966 [/Devices/usb-ohci/0/Config/] (level 4)
- 00:00:03.375967
- 00:00:03.375968 [/Devices/usb-ohci/0/LUN#0/] (level 4)
- 00:00:03.375968 Driver <string> = "VUSBRootHub" (cb=12)
- 00:00:03.375969
- 00:00:03.375969 [/Devices/usb-ohci/0/LUN#0/Config/] (level 5)
- 00:00:03.375970
- 00:00:03.375970 [/Devices/usb-ohci/0/LUN#999/] (level 4)
- 00:00:03.375971 Driver <string> = "MainStatus" (cb=11)
- 00:00:03.375971
- 00:00:03.375971 [/Devices/usb-ohci/0/LUN#999/Config/] (level 5)
- 00:00:03.375972 First <integer> = 0x0000000000000000 (0)
- 00:00:03.375972 Last <integer> = 0x0000000000000000 (0)
- 00:00:03.375973 papLeds <integer> = 0x0000000001cc6bf0 (30 174 192)
- 00:00:03.375974
- 00:00:03.375974 [/Devices/vga/] (level 2)
- 00:00:03.375974
- 00:00:03.375974 [/Devices/vga/0/] (level 3)
- 00:00:03.375975 PCIBusNo <integer> = 0x0000000000000000 (0)
- 00:00:03.375975 PCIDeviceNo <integer> = 0x0000000000000002 (2)
- 00:00:03.375976 PCIFunctionNo <integer> = 0x0000000000000000 (0)
- 00:00:03.375976 Trusted <integer> = 0x0000000000000001 (1)
- 00:00:03.375977
- 00:00:03.375977 [/Devices/vga/0/Config/] (level 4)
- 00:00:03.375978 3DEnabled <integer> = 0x0000000000000000 (0)
- 00:00:03.375978 CustomVideoModes <integer> = 0x0000000000000000 (0)
- 00:00:03.375979 FadeIn <integer> = 0x0000000000000001 (1)
- 00:00:03.375979 FadeOut <integer> = 0x0000000000000001 (1)
- 00:00:03.375980 HeightReduction <integer> = 0x0000000000000000 (0)
- 00:00:03.375980 LogoFile <string> = "" (cb=1)
- 00:00:03.375981 LogoTime <integer> = 0x0000000000000000 (0)
- 00:00:03.375981 MonitorCount <integer> = 0x0000000000000001 (1)
- 00:00:03.375982 ShowBootMenu <integer> = 0x0000000000000002 (2)
- 00:00:03.375982 VMSVGA3dEnabled <integer> = 0x0000000000000000 (0)
- 00:00:03.375983 VMSVGAEnabled <integer> = 0x0000000000000001 (1)
- 00:00:03.375983 VMSVGAPciBarLayout <integer> = 0x0000000000000001 (1)
- 00:00:03.375984 VMSVGAPciId <integer> = 0x0000000000000001 (1)
- 00:00:03.375984 VRamSize <integer> = 0x0000000001000000 (16 777 216, 16 MB)
- 00:00:03.375985
- 00:00:03.375985 [/Devices/vga/0/LUN#0/] (level 4)
- 00:00:03.375986 Driver <string> = "MainDisplay" (cb=12)
- 00:00:03.375987
- 00:00:03.375987 [/Devices/vga/0/LUN#0/Config/] (level 5)
- 00:00:03.375988 Object <integer> = 0x0000000001d02700 (30 418 688)
- 00:00:03.375988
- 00:00:03.375988 [/Devices/vga/0/LUN#999/] (level 4)
- 00:00:03.375989 Driver <string> = "MainStatus" (cb=11)
- 00:00:03.375989
- 00:00:03.375990 [/Devices/vga/0/LUN#999/Config/] (level 5)
- 00:00:03.375990 First <integer> = 0x0000000000000000 (0)
- 00:00:03.375991 Last <integer> = 0x0000000000000000 (0)
- 00:00:03.375991 papLeds <integer> = 0x0000000001cc6c00 (30 174 208)
- 00:00:03.375992
- 00:00:03.375992 [/Devices/virtio-net/] (level 2)
- 00:00:03.375993
- 00:00:03.375993 [/EM/] (level 1)
- 00:00:03.375994 TripleFaultReset <integer> = 0x0000000000000000 (0)
- 00:00:03.375994
- 00:00:03.375994 [/GIM/] (level 1)
- 00:00:03.375995 Provider <string> = "KVM" (cb=4)
- 00:00:03.375995
- 00:00:03.375996 [/HM/] (level 1)
- 00:00:03.375997 64bitEnabled <integer> = 0x0000000000000001 (1)
- 00:00:03.375997 EnableLargePages <integer> = 0x0000000000000001 (1)
- 00:00:03.375998 EnableNestedPaging <integer> = 0x0000000000000001 (1)
- 00:00:03.375998 EnableUX <integer> = 0x0000000000000001 (1)
- 00:00:03.375999 EnableVPID <integer> = 0x0000000000000001 (1)
- 00:00:03.375999 Exclusive <integer> = 0x0000000000000000 (0)
- 00:00:03.376000 HMForced <integer> = 0x0000000000000001 (1)
- 00:00:03.376000 IBPBOnVMEntry <integer> = 0x0000000000000000 (0)
- 00:00:03.376001 IBPBOnVMExit <integer> = 0x0000000000000000 (0)
- 00:00:03.376001 L1DFlushOnSched <integer> = 0x0000000000000001 (1)
- 00:00:03.376002 L1DFlushOnVMEntry <integer> = 0x0000000000000000 (0)
- 00:00:03.376002 LovelyMesaDrvWorkaround <integer> = 0x0000000000000001 (1)
- 00:00:03.376003 MDSClearOnSched <integer> = 0x0000000000000001 (1)
- 00:00:03.376003 MDSClearOnVMEntry <integer> = 0x0000000000000000 (0)
- 00:00:03.376004 SpecCtrlByHost <integer> = 0x0000000000000000 (0)
- 00:00:03.376004 UseNEMInstead <integer> = 0x0000000000000000 (0)
- 00:00:03.376005
- 00:00:03.376005 [/MM/] (level 1)
- 00:00:03.376006 CanUseLargerHeap <integer> = 0x0000000000000000 (0)
- 00:00:03.376006
- 00:00:03.376006 [/NEM/] (level 1)
- 00:00:03.376007 Allow64BitGuests <integer> = 0x0000000000000001 (1)
- 00:00:03.376007 LovelyMesaDrvWorkaround <integer> = 0x0000000000000001 (1)
- 00:00:03.376008
- 00:00:03.376008 [/PDM/] (level 1)
- 00:00:03.376009
- 00:00:03.376009 [/PDM/AsyncCompletion/] (level 2)
- 00:00:03.376009
- 00:00:03.376009 [/PDM/AsyncCompletion/File/] (level 3)
- 00:00:03.376010
- 00:00:03.376010 [/PDM/AsyncCompletion/File/BwGroups/] (level 4)
- 00:00:03.376011
- 00:00:03.376011 [/PDM/BlkCache/] (level 2)
- 00:00:03.376012 CacheSize <integer> = 0x0000000000500000 (5 242 880, 5 MB)
- 00:00:03.376013
- 00:00:03.376013 [/PDM/Devices/] (level 2)
- 00:00:03.376013
- 00:00:03.376014 [/PDM/Drivers/] (level 2)
- 00:00:03.376014
- 00:00:03.376014 [/PDM/Drivers/VBoxC/] (level 3)
- 00:00:03.376015 Path <string> = "VBoxC" (cb=6)
- 00:00:03.376015
- 00:00:03.376016 [/PDM/NetworkShaper/] (level 2)
- 00:00:03.376016
- 00:00:03.376016 [/PDM/NetworkShaper/BwGroups/] (level 3)
- 00:00:03.376017
- 00:00:03.376017 [/TM/] (level 1)
- 00:00:03.376018 UTCOffset <integer> = 0x0000000000000000 (0)
- 00:00:03.376018
- 00:00:03.376018 [/USB/] (level 1)
- 00:00:03.376019
- 00:00:03.376019 [/USB/HidMouse/] (level 2)
- 00:00:03.376019
- 00:00:03.376020 [/USB/HidMouse/0/] (level 3)
- 00:00:03.376020
- 00:00:03.376020 [/USB/HidMouse/0/Config/] (level 4)
- 00:00:03.376021 Mode <string> = "absolute" (cb=9)
- 00:00:03.376021
- 00:00:03.376022 [/USB/HidMouse/0/LUN#0/] (level 4)
- 00:00:03.376022 Driver <string> = "MouseQueue" (cb=11)
- 00:00:03.376023
- 00:00:03.376023 [/USB/HidMouse/0/LUN#0/AttachedDriver/] (level 5)
- 00:00:03.376024 Driver <string> = "MainMouse" (cb=10)
- 00:00:03.376024
- 00:00:03.376024 [/USB/HidMouse/0/LUN#0/AttachedDriver/Config/] (level 6)
- 00:00:03.376025 Object <integer> = 0x0000000001c1d2b0 (29 479 600)
- 00:00:03.376026
- 00:00:03.376026 [/USB/HidMouse/0/LUN#0/Config/] (level 5)
- 00:00:03.376027 QueueSize <integer> = 0x0000000000000080 (128)
- 00:00:03.376028
- 00:00:03.376028 [/USB/USBProxy/] (level 2)
- 00:00:03.376028
- 00:00:03.376029 [/USB/USBProxy/GlobalConfig/] (level 3)
- 00:00:03.376029
- 00:00:03.376030 ********************* End of CFGM dump **********************
- 00:00:03.376075 HM: HMR3Init: VT-x w/ nested paging and unrestricted guest execution hw support
- 00:00:03.376126 MM: cbHyperHeap=0x200000 (2097152)
- 00:00:03.378982 CPUM: fXStateHostMask=0x7; initial: 0x7; host XCR0=0x1f
- 00:00:03.379620 CPUM: Matched host CPU INTEL 0x6/0x9e/0xb Intel_Core7_CoffeeLake with CPU DB entry 'Intel Core i7-6700K' (INTEL 0x6/0x5e/0x3 Intel_Core7_Skylake)
- 00:00:03.379662 CPUM: MXCSR_MASK=0xffff (host: 0xffff)
- 00:00:03.379670 CPUM: Microcode revision 0x000000B4
- 00:00:03.379679 CPUM: Changing leaf 13[0]: EBX=0x440 -> 0x340, ECX=0x440 -> 0x340
- 00:00:03.379686 CPUM: MSR/CPUID reconciliation insert: 0x0000010b IA32_FLUSH_CMD
- 00:00:03.379700 CPUM: SetGuestCpuIdFeature: Enabled PAE
- 00:00:03.379864 PGM: Host paging mode: AMD64+NX
- 00:00:03.379870 PGM: PGMPool: cMaxPages=2304 (u64MaxPages=2084)
- 00:00:03.379873 PGM: pgmR3PoolInit: cMaxPages=0x900 cMaxUsers=0x1200 cMaxPhysExts=0x1200 fCacheEnable=true
- 00:00:03.391956 TM: GIP - u32Mode=3 (Invariant) u32UpdateHz=93 u32UpdateIntervalNS=10736000 enmUseTscDelta=2 (Practically Zero) fGetGipCpu=0x1b cCpus=4
- 00:00:03.391977 TM: GIP - u64CpuHz=3 600 000 880 (0xd693a770) SUPGetCpuHzFromGip => 3 600 000 880
- 00:00:03.391981 TM: GIP - CPU: iCpuSet=0x0 idCpu=0x0 idApic=0x0 iGipCpu=0x0 i64TSCDelta=0 enmState=3 u64CpuHz=3600000880(*) cErrors=0
- 00:00:03.391985 TM: GIP - CPU: iCpuSet=0x1 idCpu=0x1 idApic=0x2 iGipCpu=0x3 i64TSCDelta=0 enmState=3 u64CpuHz=3599999746(*) cErrors=0
- 00:00:03.391988 TM: GIP - CPU: iCpuSet=0x2 idCpu=0x2 idApic=0x4 iGipCpu=0x2 i64TSCDelta=0 enmState=3 u64CpuHz=3599997324(*) cErrors=0
- 00:00:03.391991 TM: GIP - CPU: iCpuSet=0x3 idCpu=0x3 idApic=0x6 iGipCpu=0x1 i64TSCDelta=0 enmState=3 u64CpuHz=3599970182(*) cErrors=0
- 00:00:03.392021 TM: cTSCTicksPerSecond=3 600 000 880 (0xd693a770) enmTSCMode=3 (Dynamic)
- 00:00:03.392023 TM: TSCTiedToExecution=false TSCNotTiedToHalt=false
- 00:00:03.392489 EMR3Init: fIemExecutesAll=false fGuruOnTripleFault=true
- 00:00:03.392597 IEM: TargetCpu=CURRENT, Microarch=Intel_Core7_CoffeeLake
- 00:00:03.392724 GIM: Using provider 'KVM' (Implementation version: 0)
- 00:00:03.392730 CPUM: SetGuestCpuIdFeature: Enabled Hypervisor Present bit
- 00:00:03.392824 AIOMgr: Default manager type is 'Async'
- 00:00:03.392831 AIOMgr: Default file backend is 'NonBuffered'
- 00:00:03.393007 BlkCache: Cache successfully initialized. Cache size is 5242880 bytes
- 00:00:03.393014 BlkCache: Cache commit interval is 10000 ms
- 00:00:03.393017 BlkCache: Cache commit threshold is 2621440 bytes
- 00:00:04.095673 PcBios: [SMP] BIOS with 1 CPUs
- 00:00:04.095691 PcBios: Using the 386+ BIOS image.
- 00:00:04.095736 PcBios: MPS table at 000e1300
- 00:00:04.098333 PcBios: fCheckShutdownStatusForSoftReset=true fClearShutdownStatusOnHardReset=true
- 00:00:04.129424 SUP: seg #0: R 0x00000000 LB 0x00001000
- 00:00:04.129435 SUP: seg #1: R X 0x00001000 LB 0x0001f000
- 00:00:04.129438 SUP: seg #2: R 0x00020000 LB 0x0000c000
- 00:00:04.129441 SUP: seg #3: RW 0x0002c000 LB 0x00001000
- 00:00:04.129443 SUP: seg #4: R 0x0002d000 LB 0x00002000
- 00:00:04.129445 SUP: seg #5: RW 0x0002f000 LB 0x00001000
- 00:00:04.129448 SUP: seg #6: R 0x00030000 LB 0x00001000
- 00:00:04.129450 SUP: seg #7: RWX 0x00031000 LB 0x00001000
- 00:00:04.129452 SUP: seg #8: R 0x00032000 LB 0x00002000
- 00:00:04.129505 SUP: Loaded VBoxDDR0.r0 (D:\virtualbox\VBoxDDR0.r0) at 0xXXXXXXXXXXXXXXXX - ModuleInit at XXXXXXXXXXXXXXXX and ModuleTerm at XXXXXXXXXXXXXXXX using the native ring-0 loader
- 00:00:04.129510 SUP: windbg> .reload /f D:\virtualbox\VBoxDDR0.r0=0xXXXXXXXXXXXXXXXX
- 00:00:04.129721 CPUM: SetGuestCpuIdFeature: Enabled xAPIC
- 00:00:04.129726 CPUM: SetGuestCpuIdFeature: Enabled x2APIC
- 00:00:04.129895 IOAPIC: Using implementation 2.0! Chipset type ICH9
- 00:00:04.129935 PIT: mode=3 count=0x10000 (65536) - 18.20 Hz (ch=0)
- 00:00:04.130070 VMMDev: cbDefaultBudget: 265 972 544 (fda6b40)
- 00:00:04.147763 Shared Folders service loaded
- 00:00:04.159742 Guest Control service loaded
- 00:00:04.183610 VGA: Using the 386+ BIOS image.
- 00:00:04.187627 DrvVD: Flushes will be ignored
- 00:00:04.187640 DrvVD: Async flushes will be passed to the disk
- 00:00:04.187842 VD: VDInit finished with VINF_SUCCESS
- 00:00:04.187956 VD: Opening the disk took 306378 ns
- 00:00:04.187987 PIIX3 ATA: LUN#0: disk, PCHS=16383/16/63, total number of sectors 16777216
- 00:00:04.188030 PIIX3 ATA: LUN#1: no unit
- 00:00:04.188077 DrvVD: Flushes will be ignored
- 00:00:04.188081 DrvVD: Async flushes will be passed to the disk
- 00:00:04.188099 PIIX3 ATA: LUN#2: CD/DVD, total number of sectors 0, passthrough disabled
- 00:00:04.188104 PIIX3 ATA: LUN#3: no unit
- 00:00:04.188152 PIIX3 ATA: Ctl#1: finished processing RESET
- 00:00:04.188171 PIIX3 ATA: Ctl#0: finished processing RESET
- 00:00:04.188254 E1000#0: Chip=82540EM LinkUpDelay=3000ms EthernetCRC=on GSO=enabled Itr=disabled ItrRx=enabled TID=disabled R0=enabled RC=disabled
- 00:00:04.199329 NAT: Guest address guess set to 10.0.2.15 by initialization
- 00:00:04.215894 NAT: DNS#0: 202.96.128.166
- 00:00:04.215909 NAT: DNS#1: 144.144.144.144
- 00:00:04.216632 AC97: Using codec 'STAC9700'
- 00:00:04.266590 Audio: Found 4 devices for driver 'WasAPI'
- 00:00:04.266601 Audio: Device 'T278Q (英特尔(R) 显示器音频)':
- 00:00:04.266601 Audio: ID = {0.0.0.00000000}.{1a0e857a-4577-48b0-b9eb-cea48caf8867}
- 00:00:04.266602 Audio: Usage = output
- 00:00:04.266602 Audio: Flags = DEFAULT_OUT
- 00:00:04.266603 Audio: Input channels = 0
- 00:00:04.266603 Audio: Output channels = 2
- 00:00:04.266606 Audio: Device 'T278Q (英特尔(R) 显示器音频)':
- 00:00:04.266606 Audio: ID = {0.0.0.00000000}.{1a0e857a-4577-48b0-b9eb-cea48caf8867}
- 00:00:04.266607 Audio: Usage = output
- 00:00:04.266607 Audio: Flags = NONE
- 00:00:04.266607 Audio: Input channels = 0
- 00:00:04.266607 Audio: Output channels = 2
- 00:00:04.266610 Audio: Device '麦克风 (High Definition Audio Device)':
- 00:00:04.266610 Audio: ID = {0.0.1.00000000}.{36ac4eb9-d1ef-4c1b-a629-6d5b4e7524d0}
- 00:00:04.266610 Audio: Usage = input
- 00:00:04.266611 Audio: Flags = DEFAULT_IN
- 00:00:04.266611 Audio: Input channels = 2
- 00:00:04.266611 Audio: Output channels = 0
- 00:00:04.266623 Audio: Device '麦克风 (High Definition Audio Device)':
- 00:00:04.266623 Audio: ID = {0.0.1.00000000}.{36ac4eb9-d1ef-4c1b-a629-6d5b4e7524d0}
- 00:00:04.266623 Audio: Usage = input
- 00:00:04.266624 Audio: Flags = NONE
- 00:00:04.266624 Audio: Input channels = 2
- 00:00:04.266624 Audio: Output channels = 0
- 00:00:04.266801 AC97: Reset
- 00:00:04.266807 AC97: Mixer reset (EAID=0x809, EACS=0x9)
- 00:00:04.266810 AC97: Record select to left=mic, right=mic
- 00:00:04.267292 VUSB: Attached 'HidMouse' to port 1 on RootHub#0 (FullSpeed)
- 00:00:04.267316 PGM: The CPU physical address width is 39 bits
- 00:00:04.267320 PGM: PGMR3InitFinalize: 4 MB PSE mask 0000007fffffffff -> VINF_SUCCESS
- 00:00:04.267451 TM: TMR3InitFinalize: fTSCModeSwitchAllowed=true
- 00:00:04.267586 VMM: Thread-context hooks unavailable
- 00:00:04.267590 VMM: RTThreadPreemptIsPending() can be trusted
- 00:00:04.267597 VMM: Kernel preemption is possible
- 00:00:04.268192 HM: fWorldSwitcher=0x0 (fIbpbOnVmExit=false fIbpbOnVmEntry=false fL1dFlushOnVmEntry=false); fL1dFlushOnSched=true fMdsClearOnVmEntry=false
- 00:00:04.268197 HM: Using VT-x implementation 3.0
- 00:00:04.268200 HM: Max resume loops = 8192
- 00:00:04.268200 HM: Host CR4 = 0x370678
- 00:00:04.268201 HM: Host EFER = 0xd01
- 00:00:04.268202 HM: MSR_IA32_SMM_MONITOR_CTL = 0x0
- 00:00:04.268202 HM: MSR_IA32_FEATURE_CONTROL = 0x5
- 00:00:04.268202 HM: LOCK
- 00:00:04.268203 HM: VMXON
- 00:00:04.268203 HM: MSR_IA32_VMX_BASIC = 0xda040000000004
- 00:00:04.268204 HM: VMCS id = 0x4
- 00:00:04.268204 HM: VMCS size = 1024 bytes
- 00:00:04.268205 HM: VMCS physical address limit = None
- 00:00:04.268205 HM: VMCS memory type = Write Back (WB)
- 00:00:04.268206 HM: Dual-monitor treatment support = true
- 00:00:04.268206 HM: OUTS & INS instruction-info = true
- 00:00:04.268206 HM: Supports true-capability MSRs = true
- 00:00:04.268207 HM: VM-entry Xcpt error-code optional = false
- 00:00:04.268207 HM: MSR_IA32_VMX_PINBASED_CTLS = 0x7f00000016
- 00:00:04.268208 HM: EXT_INT_EXIT
- 00:00:04.268208 HM: NMI_EXIT
- 00:00:04.268208 HM: VIRTUAL_NMI
- 00:00:04.268208 HM: PREEMPT_TIMER
- 00:00:04.268209 HM: POSTED_INT (must be cleared)
- 00:00:04.268210 HM: MSR_IA32_VMX_PROCBASED_CTLS = 0xfff9fffe0401e172
- 00:00:04.268211 HM: INT_WINDOW_EXIT
- 00:00:04.268211 HM: USE_TSC_OFFSETTING
- 00:00:04.268211 HM: HLT_EXIT
- 00:00:04.268212 HM: INVLPG_EXIT
- 00:00:04.268212 HM: MWAIT_EXIT
- 00:00:04.268212 HM: RDPMC_EXIT
- 00:00:04.268212 HM: RDTSC_EXIT
- 00:00:04.268213 HM: CR3_LOAD_EXIT (must be set)
- 00:00:04.268213 HM: CR3_STORE_EXIT (must be set)
- 00:00:04.268213 HM: CR8_LOAD_EXIT
- 00:00:04.268214 HM: CR8_STORE_EXIT
- 00:00:04.268214 HM: USE_TPR_SHADOW
- 00:00:04.268214 HM: NMI_WINDOW_EXIT
- 00:00:04.268215 HM: MOV_DR_EXIT
- 00:00:04.268215 HM: UNCOND_IO_EXIT
- 00:00:04.268215 HM: USE_IO_BITMAPS
- 00:00:04.268217 HM: MONITOR_TRAP_FLAG
- 00:00:04.268217 HM: USE_MSR_BITMAPS
- 00:00:04.268217 HM: MONITOR_EXIT
- 00:00:04.268218 HM: PAUSE_EXIT
- 00:00:04.268218 HM: USE_SECONDARY_CTLS
- 00:00:04.268219 HM: MSR_IA32_VMX_PROCBASED_CTLS2 = 0x5fbcff00000000
- 00:00:04.268220 HM: VIRT_APIC_ACCESS
- 00:00:04.268220 HM: EPT
- 00:00:04.268220 HM: DESC_TABLE_EXIT
- 00:00:04.268221 HM: RDTSCP
- 00:00:04.268221 HM: VIRT_X2APIC_MODE
- 00:00:04.268221 HM: VPID
- 00:00:04.268222 HM: WBINVD_EXIT
- 00:00:04.268222 HM: UNRESTRICTED_GUEST
- 00:00:04.268222 HM: APIC_REG_VIRT (must be cleared)
- 00:00:04.268222 HM: VIRT_INT_DELIVERY (must be cleared)
- 00:00:04.268223 HM: PAUSE_LOOP_EXIT
- 00:00:04.268223 HM: RDRAND_EXIT
- 00:00:04.268223 HM: INVPCID
- 00:00:04.268224 HM: VMFUNC
- 00:00:04.268224 HM: VMCS_SHADOWING (must be cleared)
- 00:00:04.268224 HM: ENCLS_EXIT
- 00:00:04.268224 HM: RDSEED_EXIT
- 00:00:04.268225 HM: PML
- 00:00:04.268225 HM: EPT_VE
- 00:00:04.268225 HM: CONCEAL_VMX_FROM_PT
- 00:00:04.268225 HM: XSAVES_XRSTORS
- 00:00:04.268226 HM: MODE_BASED_EPT_PERM
- 00:00:04.268226 HM: SPPTP_EPT (must be cleared)
- 00:00:04.268226 HM: PT_EPT (must be cleared)
- 00:00:04.268226 HM: TSC_SCALING (must be cleared)
- 00:00:04.268227 HM: USER_WAIT_PAUSE (must be cleared)
- 00:00:04.268227 HM: ENCLV_EXIT (must be cleared)
- 00:00:04.268227 HM: MSR_IA32_VMX_ENTRY_CTLS = 0x3ffff000011ff
- 00:00:04.268228 HM: LOAD_DEBUG (must be set)
- 00:00:04.268228 HM: IA32E_MODE_GUEST
- 00:00:04.268229 HM: ENTRY_TO_SMM
- 00:00:04.268229 HM: DEACTIVATE_DUAL_MON
- 00:00:04.268229 HM: LOAD_PERF_MSR
- 00:00:04.268229 HM: LOAD_PAT_MSR
- 00:00:04.268230 HM: LOAD_EFER_MSR
- 00:00:04.268230 HM: LOAD_BNDCFGS_MSR
- 00:00:04.268230 HM: CONCEAL_VMX_FROM_PT
- 00:00:04.268230 HM: LOAD_RTIT_CTL_MSR (must be cleared)
- 00:00:04.268231 HM: MSR_IA32_VMX_EXIT_CTLS = 0x1ffffff00036dff
- 00:00:04.268231 HM: SAVE_DEBUG (must be set)
- 00:00:04.268232 HM: HOST_ADDR_SPACE_SIZE
- 00:00:04.268232 HM: LOAD_PERF_MSR
- 00:00:04.268233 HM: ACK_EXT_INT
- 00:00:04.268233 HM: SAVE_PAT_MSR
- 00:00:04.268234 HM: LOAD_PAT_MSR
- 00:00:04.268234 HM: SAVE_EFER_MSR
- 00:00:04.268234 HM: LOAD_EFER_MSR
- 00:00:04.268234 HM: SAVE_PREEMPT_TIMER
- 00:00:04.268235 HM: CLEAR_BNDCFGS_MSR
- 00:00:04.268235 HM: CONCEAL_VMX_FROM_PT
- 00:00:04.268235 HM: CLEAR_RTIT_CTL_MSR (must be cleared)
- 00:00:04.268235 HM: MSR_IA32_VMX_TRUE_PINBASED_CTLS = 0x7f00000016
- 00:00:04.268236 HM: MSR_IA32_VMX_TRUE_PROCBASED_CTLS = 0xfff9fffe04006172
- 00:00:04.268237 HM: MSR_IA32_VMX_TRUE_ENTRY_CTLS = 0x3ffff000011fb
- 00:00:04.268237 HM: MSR_IA32_VMX_TRUE_EXIT_CTLS = 0x1ffffff00036dfb
- 00:00:04.268238 HM: MSR_IA32_VMX_MISC = 0x7004c1e7
- 00:00:04.268239 HM: PREEMPT_TIMER_TSC = 0x7
- 00:00:04.268239 HM: EXIT_SAVE_EFER_LMA = true
- 00:00:04.268239 HM: ACTIVITY_STATES = 0x7 ( HLT SHUTDOWN SIPI_WAIT )
- 00:00:04.268240 HM: INTEL_PT = true
- 00:00:04.268240 HM: SMM_READ_SMBASE_MSR = true
- 00:00:04.268240 HM: CR3_TARGET = 0x4
- 00:00:04.268241 HM: MAX_MSR = 0x0 ( 512 )
- 00:00:04.268241 HM: VMXOFF_BLOCK_SMI = true
- 00:00:04.268242 HM: VMWRITE_ALL = true
- 00:00:04.268242 HM: ENTRY_INJECT_SOFT_INT = 0x1
- 00:00:04.268242 HM: MSEG_ID = 0x0
- 00:00:04.268243 HM: MSR_IA32_VMX_VMCS_ENUM = 0x2e
- 00:00:04.268243 HM: HIGHEST_IDX = 0x17
- 00:00:04.268243 HM: MSR_IA32_VMX_EPT_VPID_CAP = 0xf0106734141
- 00:00:04.268244 HM: RWX_X_ONLY
- 00:00:04.268244 HM: PAGE_WALK_LENGTH_4
- 00:00:04.268244 HM: EMT_UC
- 00:00:04.268245 HM: EMT_WB
- 00:00:04.268245 HM: PDE_2M
- 00:00:04.268245 HM: PDPTE_1G
- 00:00:04.268245 HM: INVEPT
- 00:00:04.268246 HM: EPT_ACCESS_DIRTY
- 00:00:04.268246 HM: ADVEXITINFO_EPT
- 00:00:04.268246 HM: INVEPT_SINGLE_CONTEXT
- 00:00:04.268246 HM: INVEPT_ALL_CONTEXTS
- 00:00:04.268246 HM: INVVPID
- 00:00:04.268247 HM: INVVPID_INDIV_ADDR
- 00:00:04.268247 HM: INVVPID_SINGLE_CONTEXT
- 00:00:04.268247 HM: INVVPID_ALL_CONTEXTS
- 00:00:04.268247 HM: INVVPID_SINGLE_CONTEXT_RETAIN_GLOBALS
- 00:00:04.268248 HM: MSR_IA32_VMX_VMFUNC = 0x1
- 00:00:04.268248 HM: EPTP_SWITCHING
- 00:00:04.268248 HM: MSR_IA32_VMX_CR0_FIXED0 = 0x80000021
- 00:00:04.268249 HM: MSR_IA32_VMX_CR0_FIXED1 = 0xffffffff
- 00:00:04.268250 HM: MSR_IA32_VMX_CR4_FIXED0 = 0x2000
- 00:00:04.268250 HM: MSR_IA32_VMX_CR4_FIXED1 = 0x3727ff
- 00:00:04.268250 HM: APIC-access page physaddr = 0x000000028b32b000
- 00:00:04.268251 HM: VCPU 0: MSR bitmap physaddr = 0x000000008ca2f000
- 00:00:04.268252 HM: VCPU 0: VMCS physaddr = 0x0000000141d2c000
- 00:00:04.268253 HM: Guest support: 32-bit and 64-bit
- 00:00:04.268257 HM: Supports VMCS EFER fields = true
- 00:00:04.268257 HM: Enabled VMX
- 00:00:04.268260 CPUM: SetGuestCpuIdFeature: Enabled SYSENTER/EXIT
- 00:00:04.268261 CPUM: SetGuestCpuIdFeature: Enabled PAE
- 00:00:04.268261 CPUM: SetGuestCpuIdFeature: Enabled LONG MODE
- 00:00:04.268262 CPUM: SetGuestCpuIdFeature: Enabled SYSCALL/RET
- 00:00:04.268262 CPUM: SetGuestCpuIdFeature: Enabled LAHF/SAHF
- 00:00:04.268262 CPUM: SetGuestCpuIdFeature: Enabled NX
- 00:00:04.268263 HM: Enabled nested paging
- 00:00:04.268263 HM: EPT flush type = Single context
- 00:00:04.268263 HM: Enabled unrestricted guest execution
- 00:00:04.268264 HM: Enabled large page support
- 00:00:04.268264 HM: Enabled VPID
- 00:00:04.268264 HM: VPID flush type = Single context
- 00:00:04.268265 HM: Enabled VMX-preemption timer (cPreemptTimerShift=7)
- 00:00:04.268265 HM: VT-x/AMD-V init method: Local
- 00:00:04.268266 EM: Exit history optimizations: enabled=true enabled-r0=true enabled-r0-no-preemption=false
- 00:00:04.268312 PcBios: ATA LUN#0 LCHS=1024/255/63
- 00:00:04.268320 APIC: fPostedIntrsEnabled=false fVirtApicRegsEnabled=false fSupportsTscDeadline=false
- 00:00:04.268324 TMR3UtcNow: nsNow=1 662 555 289 098 524 400 nsPrev=0 -> cNsDelta=1 662 555 289 098 524 400 (offLag=0 offVirtualSync=0 offVirtualSyncGivenUp=0, NowAgain=1 662 555 289 098 524 400)
- 00:00:04.268331 VMM: fUsePeriodicPreemptionTimers=false
- 00:00:04.268336 CPUM: Logical host processors: 4 present, 4 max, 4 online, online mask: 000000000000000f
- 00:00:04.268337 CPUM: Physical host cores: 4
- 00:00:04.268338 ************************* CPUID dump ************************
- 00:00:04.268342 Raw Standard CPUID Leaves
- 00:00:04.268342 Leaf/sub-leaf eax ebx ecx edx
- 00:00:04.268343 Gst: 00000000/0000 00000016 756e6547 6c65746e 49656e69
- 00:00:04.268345 Hst: 00000016 756e6547 6c65746e 49656e69
- 00:00:04.268345 Gst: 00000001/0000 000906eb 00010800 d6fa220b 178bfbff
- 00:00:04.268346 Hst: 000906eb 04100800 7ffafbbf bfebfbff
- 00:00:04.268347 Gst: 00000002/0000 76036301 00f0b6ff 00000000 00c30000
- 00:00:04.268348 Hst: 76036301 00f0b6ff 00000000 00c30000
- 00:00:04.268349 Gst: 00000003/0000 00000000 00000000 00000000 00000000
- 00:00:04.268349 Hst: 00000000 00000000 00000000 00000000
- 00:00:04.268350 Gst: 00000004/0000 00000121 01c0003f 0000003f 00000000
- 00:00:04.268351 Hst: 1c004121 01c0003f 0000003f 00000000
- 00:00:04.268351 Gst: 00000004/0001 00000122 01c0003f 0000003f 00000000
- 00:00:04.268352 Hst: 1c004122 01c0003f 0000003f 00000000
- 00:00:04.268353 Gst: 00000004/0002 00000143 00c0003f 000003ff 00000000
- 00:00:04.268353 Hst: 1c004143 00c0003f 000003ff 00000000
- 00:00:04.268354 Gst: 00000004/0003 00000163 02c0003f 00001fff 00000006
- 00:00:04.268355 Hst: 1c03c163 02c0003f 00001fff 00000006
- 00:00:04.268355 Gst: 00000004/0004 00000000 00000000 00000000 00000000
- 00:00:04.268356 Hst: 00000000 00000000 00000000 00000000
- 00:00:04.268356 Gst: 00000005/0000 00000040 00000040 00000000 00000000
- 00:00:04.268357 Hst: 00000040 00000040 00000003 11142120
- 00:00:04.268358 Gst: 00000006/0000 00000000 00000000 00000000 00000000
- 00:00:04.268359 Hst: 000027f5 00000002 00000009 00000000
- 00:00:04.268359 Gst: 00000007/0000 00000000 00842421 00000000 10000400
- 00:00:04.268360 Hst: 00000000 029c67af 00000000 9c002400
- 00:00:04.268360 Gst: 00000007/0001 00000000 00000000 00000000 00000000
- 00:00:04.268361 Hst: 00000000 00000000 00000000 00000000
- 00:00:04.268361 Gst: 00000008/0000 00000000 00000000 00000000 00000000
- 00:00:04.268362 Hst: 00000000 00000000 00000000 00000000
- 00:00:04.268362 Gst: 00000009/0000 00000000 00000000 00000000 00000000
- 00:00:04.268363 Hst: 00000000 00000000 00000000 00000000
- 00:00:04.268363 Gst: 0000000a/0000 00000000 00000000 00000000 00000000
- 00:00:04.268364 Hst: 07300804 00000000 00000000 00000603
- 00:00:04.268364 Gst: 0000000b/0000 00000000 00000001 00000100 00000000
- 00:00:04.268365 Hst: 00000001 00000001 00000100 00000004
- 00:00:04.268365 Gst: 0000000b/0001 00000001 00000001 00000201 00000000
- 00:00:04.268366 Hst: 00000004 00000004 00000201 00000004
- 00:00:04.268366 Gst: 0000000b/0002 00000000 00000000 00000002 00000000
- 00:00:04.268367 Hst: 00000000 00000000 00000002 00000004
- 00:00:04.268367 Gst: 0000000c/0000 00000000 00000000 00000000 00000000
- 00:00:04.268368 Hst: 00000000 00000000 00000000 00000000
- 00:00:04.268368 Gst: 0000000d/0000 00000007 00000340 00000340 00000000
- 00:00:04.268369 Hst: 0000001f 00000440 00000440 00000000
- 00:00:04.268370 Gst: 0000000d/0001 00000000 00000440 00000000 00000000
- 00:00:04.268370 Hst: 0000000f 00000440 00000100 00000000
- 00:00:04.268371 Gst: 0000000d/0002 00000100 00000240 00000000 00000000
- 00:00:04.268371 Hst: 00000100 00000240 00000000 00000000
- 00:00:04.268372 Gst: 0000000d/0003 00000000 00000000 00000000 00000000
- 00:00:04.268372 Hst: 00000040 000003c0 00000000 00000000
- 00:00:04.268373 Gst: 0000000d/0004 00000000 00000000 00000000 00000000
- 00:00:04.268373 Hst: 00000040 00000400 00000000 00000000
- 00:00:04.268374 Gst: 0000000d/0005 00000000 00000000 00000000 00000000
- 00:00:04.268374 Hst: 00000000 00000000 00000000 00000000
- 00:00:04.268375 Gst: 0000000d/0006 00000000 00000000 00000000 00000000
- 00:00:04.268375 Hst: 00000000 00000000 00000000 00000000
- 00:00:04.268376 Gst: 0000000d/0007 00000000 00000000 00000000 00000000
- 00:00:04.268376 Hst: 00000000 00000000 00000000 00000000
- 00:00:04.268377 Gst: 0000000d/0008 00000000 00000000 00000000 00000000
- 00:00:04.268377 Hst: 00000080 00000000 00000001 00000000
- 00:00:04.268378 Gst: 0000000d/0009 00000000 00000000 00000000 00000000
- 00:00:04.268378 Hst: 00000000 00000000 00000000 00000000
- 00:00:04.268394 Gst: 0000000e/0000 00000000 00000000 00000000 00000000
- 00:00:04.268395 Hst: 00000000 00000000 00000000 00000000
- 00:00:04.268395 Gst: 0000000f/0000 00000000 00000000 00000000 00000000
- 00:00:04.268395 Hst: 00000000 00000000 00000000 00000000
- 00:00:04.268396 Gst: 00000010/0000 00000000 00000000 00000000 00000000
- 00:00:04.268396 Hst: 00000000 00000000 00000000 00000000
- 00:00:04.268397 Gst: 00000011/0000 00000000 00000000 00000000 00000000
- 00:00:04.268397 Hst: 00000000 00000000 00000000 00000000
- 00:00:04.268398 Gst: 00000012/0000 00000000 00000000 00000000 00000000
- 00:00:04.268398 Hst: 00000000 00000000 00000000 00000000
- 00:00:04.268399 Gst: 00000013/0000 00000000 00000000 00000000 00000000
- 00:00:04.268399 Hst: 00000000 00000000 00000000 00000000
- 00:00:04.268400 Gst: 00000014/0000 00000000 00000000 00000000 00000000
- 00:00:04.268400 Hst: 00000001 0000000f 00000007 00000000
- 00:00:04.268401 Hst: 00000015/0000 00000002 0000012c 00000000 00000000
- 00:00:04.268402 Hst: 00000016/0000 00000e10 00000e10 00000064 00000000
- 00:00:04.268403 Name: GenuineIntel
- 00:00:04.268404 Supports: 0x00000000-0x00000016
- 00:00:04.268406 Family: 6 Extended: 0 Effective: 6
- 00:00:04.268407 Model: 14 Extended: 9 Effective: 158
- 00:00:04.268407 Stepping: 11
- 00:00:04.268408 Type: 0 (primary)
- 00:00:04.268409 APIC ID: 0x00
- 00:00:04.268409 Logical CPUs: 1
- 00:00:04.268410 CLFLUSH Size: 8
- 00:00:04.268410 Brand ID: 0x00
- 00:00:04.268411 Features
- 00:00:04.268411 Mnemonic - Description = guest (host)
- 00:00:04.268412 FPU - x87 FPU on Chip = 1 (1)
- 00:00:04.268414 VME - Virtual 8086 Mode Enhancements = 1 (1)
- 00:00:04.268414 DE - Debugging extensions = 1 (1)
- 00:00:04.268415 PSE - Page Size Extension = 1 (1)
- 00:00:04.268416 TSC - Time Stamp Counter = 1 (1)
- 00:00:04.268416 MSR - Model Specific Registers = 1 (1)
- 00:00:04.268417 PAE - Physical Address Extension = 1 (1)
- 00:00:04.268418 MCE - Machine Check Exception = 1 (1)
- 00:00:04.268418 CX8 - CMPXCHG8B instruction = 1 (1)
- 00:00:04.268419 APIC - APIC On-Chip = 1 (1)
- 00:00:04.268420 SEP - SYSENTER and SYSEXIT Present = 1 (1)
- 00:00:04.268420 MTRR - Memory Type Range Registers = 1 (1)
- 00:00:04.268421 PGE - PTE Global Bit = 1 (1)
- 00:00:04.268422 MCA - Machine Check Architecture = 1 (1)
- 00:00:04.268422 CMOV - Conditional Move instructions = 1 (1)
- 00:00:04.268423 PAT - Page Attribute Table = 1 (1)
- 00:00:04.268423 PSE-36 - 36-bit Page Size Extension = 1 (1)
- 00:00:04.268424 PSN - Processor Serial Number = 0 (0)
- 00:00:04.268425 CLFSH - CLFLUSH instruction = 1 (1)
- 00:00:04.268425 DS - Debug Store = 0 (1)
- 00:00:04.268426 ACPI - Thermal Mon. & Soft. Clock Ctrl. = 0 (1)
- 00:00:04.268427 MMX - Intel MMX Technology = 1 (1)
- 00:00:04.268427 FXSR - FXSAVE and FXRSTOR instructions = 1 (1)
- 00:00:04.268428 SSE - SSE support = 1 (1)
- 00:00:04.268429 SSE2 - SSE2 support = 1 (1)
- 00:00:04.268429 SS - Self Snoop = 0 (1)
- 00:00:04.268430 HTT - Hyper-Threading Technology = 1 (1)
- 00:00:04.268431 TM - Therm. Monitor = 0 (1)
- 00:00:04.268431 PBE - Pending Break Enabled = 0 (1)
- 00:00:04.268432 SSE3 - SSE3 support = 1 (1)
- 00:00:04.268433 PCLMUL - PCLMULQDQ support (for AES-GCM) = 1 (1)
- 00:00:04.268433 DTES64 - DS Area 64-bit Layout = 0 (1)
- 00:00:04.268434 MONITOR - MONITOR/MWAIT instructions = 1 (1)
- 00:00:04.268434 CPL-DS - CPL Qualified Debug Store = 0 (1)
- 00:00:04.268435 VMX - Virtual Machine Extensions = 0 (1)
- 00:00:04.268436 SMX - Safer Mode Extensions = 0 (0)
- 00:00:04.268436 EST - Enhanced SpeedStep Technology = 0 (1)
- 00:00:04.268437 TM2 - Terminal Monitor 2 = 0 (1)
- 00:00:04.268438 SSSE3 - Supplemental Streaming SIMD Extensions 3 = 1 (1)
- 00:00:04.268438 CNTX-ID - L1 Context ID = 0 (0)
- 00:00:04.268439 SDBG - Silicon Debug interface = 0 (1)
- 00:00:04.268439 FMA - Fused Multiply Add extensions = 0 (1)
- 00:00:04.268440 CX16 - CMPXCHG16B instruction = 1 (1)
- 00:00:04.268441 TPRUPDATE - xTPR Update Control = 0 (1)
- 00:00:04.268441 PDCM - Perf/Debug Capability MSR = 0 (1)
- 00:00:04.268442 PCID - Process Context Identifiers = 1 (1)
- 00:00:04.268442 DCA - Direct Cache Access = 0 (0)
- 00:00:04.268443 SSE4_1 - SSE4_1 support = 1 (1)
- 00:00:04.268444 SSE4_2 - SSE4_2 support = 1 (1)
- 00:00:04.268444 X2APIC - x2APIC support = 1 (1)
- 00:00:04.268445 MOVBE - MOVBE instruction = 1 (1)
- 00:00:04.268446 POPCNT - POPCNT instruction = 1 (1)
- 00:00:04.268446 TSCDEADL - Time Stamp Counter Deadline = 0 (1)
- 00:00:04.268447 AES - AES instructions = 1 (1)
- 00:00:04.268448 XSAVE - XSAVE instruction = 1 (1)
- 00:00:04.268448 OSXSAVE - OSXSAVE instruction = 0 (1)
- 00:00:04.268449 AVX - AVX support = 1 (1)
- 00:00:04.268450 F16C - 16-bit floating point conversion instructions = 0 (1)
- 00:00:04.268450 RDRAND - RDRAND instruction = 1 (1)
- 00:00:04.268451 HVP - Hypervisor Present (we're a guest) = 1 (0)
- 00:00:04.268451 Structured Extended Feature Flags Enumeration (leaf 7):
- 00:00:04.268452 Mnemonic - Description = guest (host)
- 00:00:04.268452 FSGSBASE - RDFSBASE/RDGSBASE/WRFSBASE/WRGSBASE instr. = 1 (1)
- 00:00:04.268453 TSCADJUST - Supports MSR_IA32_TSC_ADJUST = 0 (1)
- 00:00:04.268453 SGX - Supports Software Guard Extensions = 0 (1)
- 00:00:04.268454 BMI1 - Advanced Bit Manipulation extension 1 = 0 (1)
- 00:00:04.268454 HLE - Hardware Lock Elision = 0 (0)
- 00:00:04.268455 AVX2 - Advanced Vector Extensions 2 = 1 (1)
- 00:00:04.268456 FDP_EXCPTN_ONLY - FPU DP only updated on exceptions = 0 (0)
- 00:00:04.268456 SMEP - Supervisor Mode Execution Prevention = 0 (1)
- 00:00:04.268457 BMI2 - Advanced Bit Manipulation extension 2 = 0 (1)
- 00:00:04.268457 ERMS - Enhanced REP MOVSB/STOSB instructions = 0 (1)
- 00:00:04.268458 INVPCID - INVPCID instruction = 1 (1)
- 00:00:04.268458 RTM - Restricted Transactional Memory = 0 (0)
- 00:00:04.268459 PQM - Platform Quality of Service Monitoring = 0 (0)
- 00:00:04.268460 DEPFPU_CS_DS - Deprecates FPU CS, FPU DS values if set = 1 (1)
- 00:00:04.268460 MPE - Intel Memory Protection Extensions = 0 (1)
- 00:00:04.268461 PQE - Platform Quality of Service Enforcement = 0 (0)
- 00:00:04.268461 AVX512F - AVX512 Foundation instructions = 0 (0)
- 00:00:04.268462 RDSEED - RDSEED instruction = 1 (1)
- 00:00:04.268462 ADX - ADCX/ADOX instructions = 0 (1)
- 00:00:04.268463 SMAP - Supervisor Mode Access Prevention = 0 (1)
- 00:00:04.268464 CLFLUSHOPT - CLFLUSHOPT (Cache Line Flush) instruction = 1 (1)
- 00:00:04.268464 INTEL_PT - Intel Processor Trace = 0 (1)
- 00:00:04.268465 AVX512PF - AVX512 Prefetch instructions = 0 (0)
- 00:00:04.268465 AVX512ER - AVX512 Exponential & Reciprocal instructions = 0 (0)
- 00:00:04.268466 AVX512CD - AVX512 Conflict Detection instructions = 0 (0)
- 00:00:04.268466 SHA - Secure Hash Algorithm extensions = 0 (0)
- 00:00:04.268467 PREFETCHWT1 - PREFETCHWT1 instruction = 0 (0)
- 00:00:04.268468 UMIP - User mode insturction prevention = 0 (0)
- 00:00:04.268468 PKU - Protection Key for Usermode pages = 0 (0)
- 00:00:04.268469 OSPKE - CR4.PKU mirror = 0 (0)
- 00:00:04.268470 MAWAU - Value used by BNDLDX & BNDSTX = 0x0 (0x0)
- 00:00:04.268470 RDPID - Read processor ID support = 0 (0)
- 00:00:04.268471 SGX_LC - Supports SGX Launch Configuration = 0 (0)
- 00:00:04.268472 MD_CLEAR - Supports MDS related buffer clearing = 1 (1)
- 00:00:04.268472 13 - Reserved = 0 (1)
- 00:00:04.268473 IBRS_IBPB - IA32_SPEC_CTRL.IBRS and IA32_PRED_CMD.IBPB = 0 (1)
- 00:00:04.268473 STIBP - Supports IA32_SPEC_CTRL.STIBP = 0 (1)
- 00:00:04.268474 FLUSH_CMD - Supports IA32_FLUSH_CMD = 1 (1)
- 00:00:04.268475 ARCHCAP - Supports IA32_ARCH_CAP = 0 (0)
- 00:00:04.268475 CORECAP - Supports IA32_CORE_CAP = 0 (0)
- 00:00:04.268476 SSBD - Supports IA32_SPEC_CTRL.SSBD = 0 (1)
- 00:00:04.268477 Processor Extended State Enumeration (leaf 0xd):
- 00:00:04.268477 XSAVE area cur/max size by XCR0, guest: 0x340/0x340
- 00:00:04.268478 XSAVE area cur/max size by XCR0, host: 0x440/0x440
- 00:00:04.268478 Valid XCR0 bits, guest: 0x00000000`00000007 ( x87 SSE YMM_Hi128 )
- 00:00:04.268480 Valid XCR0 bits, host: 0x00000000`0000001f ( x87 SSE YMM_Hi128 BNDREGS BNDCSR )
- 00:00:04.268481 XSAVE features, guest:
- 00:00:04.268482 XSAVE features, host: XSAVEOPT XSAVEC XGETBC1 XSAVES
- 00:00:04.268483 XSAVE area cur size XCR0|XSS, guest: 0x440
- 00:00:04.268483 XSAVE area cur size XCR0|XSS, host: 0x440
- 00:00:04.268484 Valid IA32_XSS bits, guest: 0x00000000`00000000
- 00:00:04.268484 Valid IA32_XSS bits, host: 0x00000100`00000000 ( 40 )
- 00:00:04.268485 State #2, guest: off=0x0240, cb=0x0100 IA32_XSS-bit -- YMM_Hi128
- 00:00:04.268486 State #2, host: off=0x0240, cb=0x0100 IA32_XSS-bit -- YMM_Hi128
- 00:00:04.268487 State #3, host: off=0x03c0, cb=0x0040 IA32_XSS-bit -- BNDREGS
- 00:00:04.268488 State #4, host: off=0x0400, cb=0x0040 IA32_XSS-bit -- BNDCSR
- 00:00:04.268490 State #8, host: off=0x0000, cb=0x0080 XCR0-bit -- 8
- 00:00:04.268498 Unknown CPUID Leaves
- 00:00:04.268498 Leaf/sub-leaf eax ebx ecx edx
- 00:00:04.268498 Gst: 00000014/0001 00000000 00000000 00000000 00000000
- 00:00:04.268499 Hst: 02490002 003f3fff 00000000 00000000
- 00:00:04.268500 Gst: 00000014/0002 00000000 00000000 00000000 00000000
- 00:00:04.268500 Hst: 00000000 00000000 00000000 00000000
- 00:00:04.268501 Gst: 00000015/0000 00000000 00000000 00000000 00000000
- 00:00:04.268501 Hst: 00000002 0000012c 00000000 00000000
- 00:00:04.268502 Gst: 00000016/0000 00000000 00000000 00000000 00000000
- 00:00:04.268503 Hst: 00000e10 00000e10 00000064 00000000
- 00:00:04.268504 Raw Hypervisor CPUID Leaves
- 00:00:04.268504 Leaf/sub-leaf eax ebx ecx edx
- 00:00:04.268505 Gst: 40000000/0000 40000001 4b4d564b 564b4d56 0000004d
- 00:00:04.268506 Hst: 00000e10 00000e10 00000064 00000000
- 00:00:04.268506 Gst: 40000001/0000 01000089 00000000 00000000 00000000
- 00:00:04.268507 Hst: 00000e10 00000e10 00000064 00000000
- 00:00:04.268508 Raw Extended CPUID Leaves
- 00:00:04.268508 Leaf/sub-leaf eax ebx ecx edx
- 00:00:04.268508 Gst: 80000000/0000 80000008 00000000 00000000 00000000
- 00:00:04.268509 Hst: 80000008 00000000 00000000 00000000
- 00:00:04.268510 Gst: 80000001/0000 00000000 00000000 00000121 28100800
- 00:00:04.268510 Hst: 00000000 00000000 00000121 2c100800
- 00:00:04.268511 Gst: 80000002/0000 65746e49 2952286c 726f4320 4d542865
- 00:00:04.268512 Hst: 65746e49 2952286c 726f4320 4d542865
- 00:00:04.268513 Gst: 80000003/0000 33692029 3031382d 50432030 20402055
- 00:00:04.268514 Hst: 33692029 3031382d 50432030 20402055
- 00:00:04.268515 Gst: 80000004/0000 30362e33 007a4847 00000000 00000000
- 00:00:04.268516 Hst: 30362e33 007a4847 00000000 00000000
- 00:00:04.268517 Gst: 80000005/0000 00000000 00000000 00000000 00000000
- 00:00:04.268517 Hst: 00000000 00000000 00000000 00000000
- 00:00:04.268518 Gst: 80000006/0000 00000000 00000000 01006040 00000000
- 00:00:04.268518 Hst: 00000000 00000000 01006040 00000000
- 00:00:04.268519 Gst: 80000007/0000 00000000 00000000 00000000 00000100
- 00:00:04.268520 Hst: 00000000 00000000 00000000 00000100
- 00:00:04.268520 Gst: 80000008/0000 00003027 00000000 00000000 00000000
- 00:00:04.268521 Hst: 00003027 00000000 00000000 00000000
- 00:00:04.268521 Ext Name:
- 00:00:04.268522 Ext Supports: 0x80000000-0x80000008
- 00:00:04.268522 Family: 0 Extended: 0 Effective: 0
- 00:00:04.268523 Model: 0 Extended: 0 Effective: 0
- 00:00:04.268523 Stepping: 0
- 00:00:04.268523 Brand ID: 0x000
- 00:00:04.268524 Ext Features
- 00:00:04.268524 Mnemonic - Description = guest (host)
- 00:00:04.268526 FPU - x87 FPU on Chip = 0 (0)
- 00:00:04.268526 VME - Virtual 8086 Mode Enhancements = 0 (0)
- 00:00:04.268527 DE - Debugging extensions = 0 (0)
- 00:00:04.268528 PSE - Page Size Extension = 0 (0)
- 00:00:04.268528 TSC - Time Stamp Counter = 0 (0)
- 00:00:04.268529 MSR - K86 Model Specific Registers = 0 (0)
- 00:00:04.268530 PAE - Physical Address Extension = 0 (0)
- 00:00:04.268530 MCE - Machine Check Exception = 0 (0)
- 00:00:04.268531 CX8 - CMPXCHG8B instruction = 0 (0)
- 00:00:04.268531 APIC - APIC On-Chip = 0 (0)
- 00:00:04.268532 SEP - SYSCALL/SYSRET = 1 (1)
- 00:00:04.268533 MTRR - Memory Type Range Registers = 0 (0)
- 00:00:04.268533 PGE - PTE Global Bit = 0 (0)
- 00:00:04.268534 MCA - Machine Check Architecture = 0 (0)
- 00:00:04.268535 CMOV - Conditional Move instructions = 0 (0)
- 00:00:04.268535 PAT - Page Attribute Table = 0 (0)
- 00:00:04.268536 PSE-36 - 36-bit Page Size Extension = 0 (0)
- 00:00:04.268537 NX - No-Execute/Execute-Disable = 1 (1)
- 00:00:04.268537 AXMMX - AMD Extensions to MMX instructions = 0 (0)
- 00:00:04.268538 MMX - Intel MMX Technology = 0 (0)
- 00:00:04.268538 FXSR - FXSAVE and FXRSTOR Instructions = 0 (0)
- 00:00:04.268539 FFXSR - AMD fast FXSAVE and FXRSTOR instructions = 0 (0)
- 00:00:04.268540 Page1GB - 1 GB large page = 0 (1)
- 00:00:04.268540 RDTSCP - RDTSCP instruction = 1 (1)
- 00:00:04.268541 LM - AMD64 Long Mode = 1 (1)
- 00:00:04.268542 3DNOWEXT - AMD Extensions to 3DNow = 0 (0)
- 00:00:04.268542 3DNOW - AMD 3DNow = 0 (0)
- 00:00:04.268543 LahfSahf - LAHF/SAHF support in 64-bit mode = 1 (1)
- 00:00:04.268544 CmpLegacy - Core multi-processing legacy mode = 0 (0)
- 00:00:04.268544 SVM - AMD Secure Virtual Machine extensions = 0 (0)
- 00:00:04.268545 EXTAPIC - AMD Extended APIC registers = 0 (0)
- 00:00:04.268545 CR8L - AMD LOCK MOV CR0 means MOV CR8 = 0 (0)
- 00:00:04.268546 ABM - AMD Advanced Bit Manipulation = 1 (1)
- 00:00:04.268546 SSE4A - SSE4A instructions = 0 (0)
- 00:00:04.268547 MISALIGNSSE - AMD Misaligned SSE mode = 0 (0)
- 00:00:04.268548 3DNOWPRF - AMD PREFETCH and PREFETCHW instructions = 1 (1)
- 00:00:04.268548 OSVW - AMD OS Visible Workaround = 0 (0)
- 00:00:04.268549 IBS - Instruct Based Sampling = 0 (0)
- 00:00:04.268549 XOP - Extended Operation support = 0 (0)
- 00:00:04.268550 SKINIT - SKINIT, STGI, and DEV support = 0 (0)
- 00:00:04.268551 WDT - AMD Watchdog Timer support = 0 (0)
- 00:00:04.268551 LWP - Lightweight Profiling support = 0 (0)
- 00:00:04.268552 FMA4 - Four operand FMA instruction support = 0 (0)
- 00:00:04.268552 NodeId - NodeId in MSR C001_100C = 0 (0)
- 00:00:04.268553 TBM - Trailing Bit Manipulation instructions = 0 (0)
- 00:00:04.268554 TOPOEXT - Topology Extensions = 0 (0)
- 00:00:04.268554 PRFEXTCORE - Performance Counter Extensions support = 0 (0)
- 00:00:04.268555 PRFEXTNB - NB Performance Counter Extensions support = 0 (0)
- 00:00:04.268555 DATABPEXT - Data-access Breakpoint Extension = 0 (0)
- 00:00:04.268556 PERFTSC - Performance Time Stamp Counter = 0 (0)
- 00:00:04.268556 PCX_L2I - L2I/L3 Performance Counter Extensions = 0 (0)
- 00:00:04.268557 MWAITX - MWAITX and MONITORX instructions = 0 (0)
- 00:00:04.268558 Full Name: "Intel(R) Core(TM) i3-8100 CPU @ 3.60GHz"
- 00:00:04.268558 TLB 2/4M Instr/Uni: res0 0 entries
- 00:00:04.268559 TLB 2/4M Data: res0 0 entries
- 00:00:04.268560 TLB 4K Instr/Uni: res0 0 entries
- 00:00:04.268560 TLB 4K Data: res0 0 entries
- 00:00:04.268560 L1 Instr Cache Line Size: 0 bytes
- 00:00:04.268561 L1 Instr Cache Lines Per Tag: 0
- 00:00:04.268561 L1 Instr Cache Associativity: res0
- 00:00:04.268561 L1 Instr Cache Size: 0 KB
- 00:00:04.268562 L1 Data Cache Line Size: 0 bytes
- 00:00:04.268562 L1 Data Cache Lines Per Tag: 0
- 00:00:04.268562 L1 Data Cache Associativity: res0
- 00:00:04.268562 L1 Data Cache Size: 0 KB
- 00:00:04.268563 L2 TLB 2/4M Instr/Uni: off 0 entries
- 00:00:04.268563 L2 TLB 2/4M Data: off 0 entries
- 00:00:04.268564 L2 TLB 4K Instr/Uni: off 0 entries
- 00:00:04.268564 L2 TLB 4K Data: off 0 entries
- 00:00:04.268564 L2 Cache Line Size: 0 bytes
- 00:00:04.268565 L2 Cache Lines Per Tag: 0
- 00:00:04.268565 L2 Cache Associativity: off
- 00:00:04.268565 L2 Cache Size: 0 KB
- 00:00:04.268566 TS - Temperature Sensor = 0 (0)
- 00:00:04.268566 FID - Frequency ID control = 0 (0)
- 00:00:04.268572 VID - Voltage ID control = 0 (0)
- 00:00:04.268572 TscInvariant - Invariant Time Stamp Counter = 1 (1)
- 00:00:04.268573 CBP - Core Performance Boost = 0 (0)
- 00:00:04.268574 EffFreqRO - Read-only Effective Frequency Interface = 0 (0)
- 00:00:04.268574 ProcFdbkIf - Processor Feedback Interface = 0 (0)
- 00:00:04.268575 ProcPwrRep - Core power reporting interface support = 0 (0)
- 00:00:04.268576 Physical Address Width: 39 bits
- 00:00:04.268576 Virtual Address Width: 48 bits
- 00:00:04.268576 Guest Physical Address Width: 0 bits
- 00:00:04.268577 Physical Core Count: 1
- 00:00:04.268578
- 00:00:04.268578 ******************** End of CPUID dump **********************
- 00:00:04.268578 *********************** VT-x features ***********************
- 00:00:04.268579 Nested hardware virtualization - VMX features
- 00:00:04.268579 Mnemonic - Description = guest (host)
- 00:00:04.268580 VMX - Virtual-Machine Extensions = 0 (1)
- 00:00:04.268580 InsOutInfo - INS/OUTS instruction info. = 0 (1)
- 00:00:04.268580 ExtIntExit - External interrupt exiting = 0 (1)
- 00:00:04.268581 NmiExit - NMI exiting = 0 (1)
- 00:00:04.268581 VirtNmi - Virtual NMIs = 0 (1)
- 00:00:04.268582 PreemptTimer - VMX preemption timer = 0 (1)
- 00:00:04.268582 PostedInt - Posted interrupts = 0 (0)
- 00:00:04.268582 IntWindowExit - Interrupt-window exiting = 0 (1)
- 00:00:04.268583 TscOffsetting - TSC offsetting = 0 (1)
- 00:00:04.268583 HltExit - HLT exiting = 0 (1)
- 00:00:04.268585 InvlpgExit - INVLPG exiting = 0 (1)
- 00:00:04.268585 MwaitExit - MWAIT exiting = 0 (1)
- 00:00:04.268585 RdpmcExit - RDPMC exiting = 0 (1)
- 00:00:04.268586 RdtscExit - RDTSC exiting = 0 (1)
- 00:00:04.268586 Cr3LoadExit - CR3-load exiting = 0 (1)
- 00:00:04.268586 Cr3StoreExit - CR3-store exiting = 0 (1)
- 00:00:04.268587 Cr8LoadExit - CR8-load exiting = 0 (1)
- 00:00:04.268587 Cr8StoreExit - CR8-store exiting = 0 (1)
- 00:00:04.268587 UseTprShadow - Use TPR shadow = 0 (1)
- 00:00:04.268588 NmiWindowExit - NMI-window exiting = 0 (1)
- 00:00:04.268588 MovDRxExit - Mov-DR exiting = 0 (1)
- 00:00:04.268588 UncondIoExit - Unconditional I/O exiting = 0 (1)
- 00:00:04.268589 UseIoBitmaps - Use I/O bitmaps = 0 (1)
- 00:00:04.268589 MonitorTrapFlag - Monitor Trap Flag = 0 (1)
- 00:00:04.268591 UseMsrBitmaps - MSR bitmaps = 0 (1)
- 00:00:04.268591 MonitorExit - MONITOR exiting = 0 (1)
- 00:00:04.268592 PauseExit - PAUSE exiting = 0 (1)
- 00:00:04.268592 SecondaryExecCtl - Activate secondary controls = 0 (1)
- 00:00:04.268592 VirtApic - Virtualize-APIC accesses = 0 (1)
- 00:00:04.268593 Ept - Extended Page Tables = 0 (1)
- 00:00:04.268593 DescTableExit - Descriptor-table exiting = 0 (1)
- 00:00:04.268593 Rdtscp - Enable RDTSCP = 0 (1)
- 00:00:04.268594 VirtX2ApicMode - Virtualize-x2APIC mode = 0 (1)
- 00:00:04.268594 Vpid - Enable VPID = 0 (1)
- 00:00:04.268594 WbinvdExit - WBINVD exiting = 0 (1)
- 00:00:04.268595 UnrestrictedGuest - Unrestricted guest = 0 (1)
- 00:00:04.268595 ApicRegVirt - APIC-register virtualization = 0 (0)
- 00:00:04.268596 VirtIntDelivery - Virtual-interrupt delivery = 0 (0)
- 00:00:04.268596 PauseLoopExit - PAUSE-loop exiting = 0 (1)
- 00:00:04.268596 RdrandExit - RDRAND exiting = 0 (1)
- 00:00:04.268597 Invpcid - Enable INVPCID = 0 (1)
- 00:00:04.268597 VmFuncs - Enable VM Functions = 0 (1)
- 00:00:04.268597 VmcsShadowing - VMCS shadowing = 0 (0)
- 00:00:04.268598 RdseedExiting - RDSEED exiting = 0 (1)
- 00:00:04.268598 PML - Page-Modification Log (PML) = 0 (1)
- 00:00:04.268598 EptVe - EPT violations can cause #VE = 0 (1)
- 00:00:04.268599 XsavesXRstors - Enable XSAVES/XRSTORS = 0 (1)
- 00:00:04.268599 EntryLoadDebugCtls - Load debug controls on VM-entry = 0 (1)
- 00:00:04.268599 Ia32eModeGuest - IA-32e mode guest = 0 (1)
- 00:00:04.268600 EntryLoadEferMsr - Load IA32_EFER MSR on VM-entry = 0 (1)
- 00:00:04.268600 EntryLoadPatMsr - Load IA32_PAT MSR on VM-entry = 0 (1)
- 00:00:04.268600 ExitSaveDebugCtls - Save debug controls on VM-exit = 0 (1)
- 00:00:04.268601 HostAddrSpaceSize - Host address-space size = 0 (1)
- 00:00:04.268601 ExitAckExtInt - Acknowledge interrupt on VM-exit = 0 (1)
- 00:00:04.268601 ExitSavePatMsr - Save IA32_PAT MSR on VM-exit = 0 (1)
- 00:00:04.268602 ExitLoadPatMsr - Load IA32_PAT MSR on VM-exit = 0 (1)
- 00:00:04.268602 ExitSaveEferMsr - Save IA32_EFER MSR on VM-exit = 0 (1)
- 00:00:04.268602 ExitLoadEferMsr - Load IA32_EFER MSR on VM-exit = 0 (1)
- 00:00:04.268603 SavePreemptTimer - Save VMX-preemption timer = 0 (1)
- 00:00:04.268603 ExitSaveEferLma - Save IA32_EFER.LMA on VM-exit = 0 (1)
- 00:00:04.268603 IntelPt - Intel PT (Processor Trace) in VMX operation = 0 (1)
- 00:00:04.268604 VmwriteAll - VMWRITE to any supported VMCS field = 0 (1)
- 00:00:04.268604 EntryInjectSoftInt - Inject softint. with 0-len instr. = 0 (1)
- 00:00:04.268604
- 00:00:04.268605 ******************* End of VT-x features ********************
- 00:00:04.268615 VMEmt: Halt method global1 (5)
- 00:00:04.268644 VMEmt: HaltedGlobal1 config: cNsSpinBlockThresholdCfg=50000
- 00:00:04.268649 Changing the VM state from 'CREATING' to 'CREATED'
- 00:00:04.269403 Changing the VM state from 'CREATED' to 'POWERING_ON'
- 00:00:04.269586 Changing the VM state from 'POWERING_ON' to 'RUNNING'
- 00:00:04.269596 Console: Machine state changed to 'Running'
- 00:00:04.269859 GUI: Capturing keyboard on resume
- 00:00:04.273302 VMMDev: Guest Log: BIOS: VirtualBox 6.1.38
- 00:00:04.273364 PCI: Setting up resources and interrupts
- 00:00:04.273711 PIT: mode=2 count=0x10000 (65536) - 18.20 Hz (ch=0)
- 00:00:04.283780 Display::i_handleDisplayResize: uScreenId=0 pvVRAM=0000000000000000 w=720 h=400 bpp=0 cbLine=0x0 flags=0x0 origin=0,0
- 00:00:04.284753 VMMDev: Guest Log: CPUID EDX: 0x178bfbff
- 00:00:04.284866 PIIX3 ATA: Ctl#0: RESET, DevSel=0 AIOIf=0 CmdIf0=0x00 (-1 usec ago) CmdIf1=0x00 (-1 usec ago)
- 00:00:04.284967 PIIX3 ATA: Ctl#0: finished processing RESET
- 00:00:04.285616 VMMDev: Guest Log: BIOS: ata0-0: PCHS=16383/16/63 LCHS=1024/255/63
- 00:00:04.286030 PIIX3 ATA: Ctl#1: RESET, DevSel=0 AIOIf=0 CmdIf0=0x00 (-1 usec ago) CmdIf1=0x00 (-1 usec ago)
- 00:00:04.286057 PIIX3 ATA: Ctl#1: finished processing RESET
- 00:00:04.287577 PIT: mode=2 count=0x48d3 (18643) - 64.00 Hz (ch=0)
- 00:00:04.304389 Display::i_handleDisplayResize: uScreenId=0 pvVRAM=000000000d960000 w=640 h=480 bpp=32 cbLine=0xA00 flags=0x0 origin=0,0
- 00:00:04.770541 GUI: UIMachineViewNormal::resendSizeHint: Restoring guest size-hint for screen 0 to 800x600
- 00:00:04.774300 GUI: 2D video acceleration is disabled
- 00:00:04.774595 GUI: HID LEDs sync is enabled
- 00:00:04.781979 GUI: UIMachineLogicNormal::sltCheckForRequestedVisualStateType: Requested-state=0, Machine-state=5
- 00:00:06.765719 PIT: mode=2 count=0x10000 (65536) - 18.20 Hz (ch=0)
- 00:00:06.765961 VMMDev: Guest Log: BIOS: Boot : bseqnr=1, bootseq=0231
- 00:00:06.766151 VMMDev: Guest Log: BIOS: Boot from Floppy 0 failed
- 00:00:06.766355 VMMDev: Guest Log: BIOS: Boot : bseqnr=2, bootseq=0023
- 00:00:06.766883 VMMDev: Guest Log: BIOS: CDROM boot failure code : 0003
- 00:00:06.767055 VMMDev: Guest Log: BIOS: Boot from CD-ROM failed
- 00:00:06.767325 VMMDev: Guest Log: BIOS: Boot : bseqnr=3, bootseq=0002
- 00:00:06.767604 VMMDev: Guest Log: BIOS: Boot from Hard Disk 0 failed
- 00:00:06.768137 VMMDev: Guest Log: No bootable medium found! System halted.
- 00:00:06.820698 Display::i_handleDisplayResize: uScreenId=0 pvVRAM=0000000000000000 w=720 h=400 bpp=0 cbLine=0x0 flags=0x0 origin=0,0
- 00:00:09.647837 GUI: Machine-window #0 deactivated
- 00:00:09.647861 GUI: Releasing mouse on focus out
- 00:00:09.647883 GUI: Releasing keyboard on focus out
- 00:00:09.658852 GUI: Machine-view #0 unfocused, reason=3
- 00:03:10.549977 GUI: Machine-window #0 activated
- 00:03:10.550071 GUI: Capturing keyboard on focus in
- 00:03:10.550097 GUI: Machine-view #0 focused, reason=3
- 00:03:10.550149 GUI: Releasing mouse on focus out
- 00:03:10.550168 GUI: Releasing keyboard on focus out
- 00:03:10.554023 GUI: Machine-view #0 unfocused, reason=0
- 00:03:10.634230 GUI: Capturing keyboard on focus in
- 00:03:10.634258 GUI: Machine-view #0 focused, reason=7
- 00:03:11.975343 GUI: Machine-window #0 deactivated
- 00:03:11.975372 GUI: Releasing mouse on focus out
- 00:03:11.975380 GUI: Releasing keyboard on focus out
- 00:03:11.980242 GUI: Machine-view #0 unfocused, reason=3
- 00:03:15.669512 GUI: Machine-window #0 activated
- 00:03:15.669604 GUI: Machine-view #0 focused, reason=3
- 00:03:15.670745 GUI: Capturing keyboard/mouse on mouse click
- 00:03:29.777719 GUI: Releasing keyboard/mouse on Host Combo release
- 00:03:32.329039 GUI: Releasing mouse on focus out
- 00:03:32.329065 GUI: Releasing keyboard on focus out
- 00:03:32.329477 GUI: Machine-view #0 unfocused, reason=4
- 00:03:57.242921 GUI: Capturing keyboard on focus in
- 00:03:57.242956 GUI: Machine-view #0 focused, reason=4
- 00:03:57.244603 GUI: Releasing mouse on focus out
- 00:03:57.244621 GUI: Releasing keyboard on focus out
- 00:03:57.245341 GUI: Machine-view #0 unfocused, reason=7
- 00:03:57.246197 GUI: UIMediumEnumerator: Medium-enumeration started...
- 00:03:57.268736 GUI: UIMediumEnumerator: Medium-enumeration finished!
- 00:03:57.270841 GUI: Machine-window #0 deactivated
- 00:03:59.165712 GUI: Machine-window #0 activated
- 00:03:59.165752 GUI: Capturing keyboard on focus in
- 00:03:59.165764 GUI: Machine-view #0 focused, reason=3
- 00:04:00.234183 GUI: Releasing mouse on focus out
- 00:04:00.234375 GUI: Releasing keyboard on focus out
- 00:04:00.235666 GUI: Machine-view #0 unfocused, reason=4
- 00:04:04.989599 GUI: Capturing keyboard on focus in
- 00:04:04.989672 GUI: Machine-view #0 focused, reason=4
- 00:04:05.076952 GUI: Machine-window #0 deactivated
- 00:04:05.076979 GUI: Releasing mouse on focus out
- 00:04:05.076987 GUI: Releasing keyboard on focus out
- 00:04:05.080549 GUI: Machine-view #0 unfocused, reason=3
- 00:04:06.252930 GUI: Machine-window #0 activated
- 00:04:06.252959 GUI: Machine-view #0 focused, reason=3
- 00:04:14.304066 GUI: Releasing mouse on focus out
- 00:04:14.304223 GUI: Releasing keyboard on focus out
- 00:04:14.305508 GUI: Machine-view #0 unfocused, reason=4
- 00:04:15.347021 GUI: Capturing keyboard on focus in
- 00:04:15.347053 GUI: Machine-view #0 focused, reason=4
- 00:04:15.429614 GUI: Machine-window #0 deactivated
- 00:04:15.429642 GUI: Releasing mouse on focus out
- 00:04:15.429650 GUI: Releasing keyboard on focus out
- 00:04:15.433205 GUI: Machine-view #0 unfocused, reason=3
- 00:04:16.652592 GUI: Machine-window #0 activated
- 00:04:16.652634 GUI: Machine-view #0 focused, reason=3
- 00:04:17.653469 Changing the VM state from 'RUNNING' to 'SUSPENDING'
- 00:04:17.733185 PDMR3Suspend: 79 694 931 ns run time
- 00:04:17.733196 Changing the VM state from 'SUSPENDING' to 'SUSPENDED'
- 00:04:17.733206 Console: Machine state changed to 'Paused'
- 00:04:17.742226 GUI: Machine-window #0 deactivated
- 00:04:17.742253 GUI: Releasing mouse on focus out
- 00:04:17.742265 GUI: Releasing keyboard on focus out
- 00:04:17.746857 GUI: Machine-view #0 unfocused, reason=3
- 00:04:17.754321 GUI: Releasing keyboard on pause/stuck
- 00:04:17.754610 GUI: Releasing mouse on pause/stuck
- 00:04:19.150655 GUI: Machine-window #0 activated
- 00:04:19.150685 GUI: Machine-view #0 focused, reason=3
- 00:04:19.151568 GUI: Request for close-action to power VM off.
- 00:04:19.151584 GUI: Passing request to power VM off from machine-logic to UI session.
- 00:04:19.151587 GUI: Powering VM down on UI session power off request...
- 00:04:19.151881 Console: Machine state changed to 'Stopping'
- 00:04:19.152682 Console::powerDown(): A request to power off the VM has been issued (mMachineState=Stopping, InUninit=0)
- 00:04:19.152869 Changing the VM state from 'SUSPENDED' to 'POWERING_OFF'
- 00:04:19.152880 ****************** Guest state at power off for VCpu 0 ******************
- 00:04:19.152886 Guest CPUM (VCPU 0) state:
- 00:04:19.152888 eax=00000000 ebx=00000000 ecx=0000f000 edx=00000500 esi=00000548 edi=00000000
- 00:04:19.152889 eip=00001d54 esp=000077aa ebp=000077d0 iopl=0 nv up di pl zr na pe nc
- 00:04:19.152891 cs={f000 base=00000000000f0000 limit=0000ffff flags=0000009b} dr0=00000000 dr1=00000000
- 00:04:19.152893 ds={f000 base=00000000000f0000 limit=0000ffff flags=00000093} dr2=00000000 dr3=00000000
- 00:04:19.152894 es={0000 base=0000000000000000 limit=0000ffff flags=00000093} dr4=00000000 dr5=00000000
- 00:04:19.152895 fs={0000 base=0000000000000000 limit=0000ffff flags=00000093} dr6=ffff0ff0 dr7=00000400
- 00:04:19.152896 gs={0000 base=0000000000000000 limit=0000ffff flags=00000093} cr0=00000010 cr2=00000000
- 00:04:19.152897 ss={0000 base=0000000000000000 limit=0000ffff flags=00000093} cr3=00000000 cr4=00000000
- 00:04:19.152898 gdtr=00000000000fe89f:0047 idtr=0000000000000000:ffff eflags=00200002
- 00:04:19.152899 ldtr={0000 base=00000000 limit=0000ffff flags=00000082}
- 00:04:19.152900 tr ={0000 base=00000000 limit=0000ffff flags=0000008b}
- 00:04:19.152901 SysEnter={cs=0000 eip=00000000 esp=00000000}
- 00:04:19.152901 xcr=0000000000000001 xcr1=0000000000000000 xss=0000000000000000 (fXStateMask=0000000000000000)
- 00:04:19.152903 FCW=037f FSW=0000 FTW=0000 FOP=0000 MXCSR=00001f80 MXCSR_MASK=0000ffff
- 00:04:19.152904 FPUIP=00000000 CS=0000 Rsrvd1=0000 FPUDP=00000000 DS=0000 Rsvrd2=0000
- 00:04:19.152905 ST(0)=FPR0={0000'00000000'00000000} t0 +0.0000000000000000000000 * 2 ^ -16383 (*)
- 00:04:19.152907 ST(1)=FPR1={0000'00000000'00000000} t0 +0.0000000000000000000000 * 2 ^ -16383 (*)
- 00:04:19.152908 ST(2)=FPR2={0000'00000000'00000000} t0 +0.0000000000000000000000 * 2 ^ -16383 (*)
- 00:04:19.152909 ST(3)=FPR3={0000'00000000'00000000} t0 +0.0000000000000000000000 * 2 ^ -16383 (*)
- 00:04:19.152910 ST(4)=FPR4={0000'00000000'00000000} t0 +0.0000000000000000000000 * 2 ^ -16383 (*)
- 00:04:19.152911 ST(5)=FPR5={0000'00000000'00000000} t0 +0.0000000000000000000000 * 2 ^ -16383 (*)
- 00:04:19.152912 ST(6)=FPR6={0000'00000000'00000000} t0 +0.0000000000000000000000 * 2 ^ -16383 (*)
- 00:04:19.152913 ST(7)=FPR7={0000'00000000'00000000} t0 +0.0000000000000000000000 * 2 ^ -16383 (*)
- 00:04:19.152914 XMM0 =00000000'00000000'00000000'00000000 XMM1 =00000000'00000000'00000000'00000000
- 00:04:19.152916 XMM2 =00000000'00000000'00000000'00000000 XMM3 =00000000'00000000'00000000'00000000
- 00:04:19.152917 XMM4 =00000000'00000000'00000000'00000000 XMM5 =00000000'00000000'00000000'00000000
- 00:04:19.152918 XMM6 =00000000'00000000'00000000'00000000 XMM7 =00000000'00000000'00000000'00000000
- 00:04:19.152919 XMM8 =00000000'00000000'00000000'00000000 XMM9 =00000000'00000000'00000000'00000000
- 00:04:19.152920 XMM10=00000000'00000000'00000000'00000000 XMM11=00000000'00000000'00000000'00000000
- 00:04:19.152921 XMM12=00000000'00000000'00000000'00000000 XMM13=00000000'00000000'00000000'00000000
- 00:04:19.152922 XMM14=00000000'00000000'00000000'00000000 XMM15=00000000'00000000'00000000'00000000
- 00:04:19.152923 EFER =0000000000000000
- 00:04:19.152924 PAT =0007040600070406
- 00:04:19.152924 STAR =0000000000000000
- 00:04:19.152925 CSTAR =0000000000000000
- 00:04:19.152925 LSTAR =0000000000000000
- 00:04:19.152925 SFMASK =0000000000000000
- 00:04:19.152925 KERNELGSBASE =0000000000000000
- 00:04:19.152927 ***
- 00:04:19.152929 VCPU[0] hardware virtualization state:
- 00:04:19.152930 fLocalForcedActions = 0x0
- 00:04:19.152930 No/inactive hwvirt state
- 00:04:19.152931 ***
- 00:04:19.152934 Guest paging mode (VCPU #0): Real (changed 4 times), A20 disabled (changed 1 times)
- 00:04:19.152938 Shadow paging mode (VCPU #0): EPT
- 00:04:19.152939 Host paging mode: AMD64+NX
- 00:04:19.152940 ***
- 00:04:19.152941 Active Timers (pVM=000000000b030000)
- 00:04:19.152941 pTimerR3 offNext offPrev offSched Clock Time Expire HzHint State Description
- 00:04:19.152944 000000000b654200 00000780 00000000 00000000 Real 1686539410 1686537931 0 2-ACTIVE VGA Refresh Timer
- 00:04:19.152958 000000000b654980 ffffff80 fffff880 00000000 Real 1686539410 1686537934 0 2-ACTIVE EMT Yielder
- 00:04:19.152960 000000000b654900 00000000 00000080 00000000 Real 1686539410 1686538779 0 2-ACTIVE CPU Load Timer
- 00:04:19.152962 000000000b64d680 00000100 00000000 00000000 VrSy 253383701621 253395035069 18 2-ACTIVE i8254 Programmable Interval Timer
- 00:04:19.152965 000000000b64d780 00007080 ffffff00 00000000 VrSy 253383701621 253990000000 0 2-ACTIVE MC146818 RTC (CMOS) - Second
- 00:04:19.152967 000000000b654800 00000000 ffff8f80 00000000 VrSy 253383701621 599932015941 0 2-ACTIVE ACPI PM Timer
- 00:04:19.152970 ***
- 00:04:19.152971 Guest GDT (GCAddr=00000000000fe89f limit=47):
- 00:04:19.152976 0010 - 0000ffff 00cf9b00 - base=00000000 limit=ffffffff dpl=0 CodeER Accessed Present Page 32-bit
- 00:04:19.152977 0018 - 0000ffff 00cf9300 - base=00000000 limit=ffffffff dpl=0 DataRW Accessed Present Page 32-bit
- 00:04:19.152978 0020 - 0000ffff 00009b0f - base=000f0000 limit=0000ffff dpl=0 CodeER Accessed Present 16-bit
- 00:04:19.152979 0028 - 0000ffff 00009300 - base=00000000 limit=0000ffff dpl=0 DataRW Accessed Present 16-bit
- 00:04:19.152980 0040 - 0400ffff 00009300 - base=00000400 limit=0000ffff dpl=0 DataRW Accessed Present 16-bit
- 00:04:19.152981 ************** End of Guest state at power off ***************
- 00:04:19.153221 PDMR3PowerOff: 228 134 ns run time
- 00:04:19.153236 Changing the VM state from 'POWERING_OFF' to 'OFF'
- 00:04:19.153905 Changing the VM state from 'OFF' to 'DESTROYING'
- 00:04:19.153971 ************************* Statistics *************************
- 00:04:19.153975 /CPUM/MSR-Totals/Reads 0 times
- 00:04:19.153978 /CPUM/MSR-Totals/ReadsRaisingGP 0 times
- 00:04:19.153981 /CPUM/MSR-Totals/ReadsUnknown 0 times
- 00:04:19.153983 /CPUM/MSR-Totals/Writes 0 times
- 00:04:19.153986 /CPUM/MSR-Totals/WritesRaisingGP 0 times
- 00:04:19.153988 /CPUM/MSR-Totals/WritesToIgnoredBits 0 times
- 00:04:19.153990 /CPUM/MSR-Totals/WritesUnknown 0 times
- 00:04:19.153993 /Devices/8237A/DmaRun 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
- 00:04:19.153996 /Devices/IDE0/ATA0/Unit0/AtapiDMA 0 times
- 00:04:19.153999 /Devices/IDE0/ATA0/Unit0/AtapiPIO 0 times
- 00:04:19.154001 /Devices/IDE0/ATA0/Unit0/DMA 0 times
- 00:04:19.154003 /Devices/IDE0/ATA0/Unit0/PIO 2 times
- 00:04:19.154006 /Devices/IDE0/ATA0/Unit0/ReadBytes 512 bytes
- 00:04:19.154008 /Devices/IDE0/ATA0/Unit0/StatusYields 1329 ticks/call ( 2658 ticks, 2 times, max 1940, min 718)
- 00:04:19.154011 /Devices/IDE0/ATA0/Unit0/WrittenBytes 0 bytes
- 00:04:19.154014 /Devices/IDE0/ATA0/Unit1/AtapiDMA 0 times
- 00:04:19.154016 /Devices/IDE0/ATA0/Unit1/AtapiPIO 0 times
- 00:04:19.154018 /Devices/IDE0/ATA0/Unit1/DMA 0 times
- 00:04:19.154020 /Devices/IDE0/ATA0/Unit1/PIO 0 times
- 00:04:19.154022 /Devices/IDE0/ATA0/Unit1/ReadBytes 0 bytes
- 00:04:19.154025 /Devices/IDE0/ATA0/Unit1/StatusYields 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
- 00:04:19.154027 /Devices/IDE0/ATA0/Unit1/WrittenBytes 0 bytes
- 00:04:19.154030 /Devices/IDE0/ATA1/Unit0/AtapiDMA 0 times
- 00:04:19.154032 /Devices/IDE0/ATA1/Unit0/AtapiPIO 0 times
- 00:04:19.154034 /Devices/IDE0/ATA1/Unit0/DMA 0 times
- 00:04:19.154036 /Devices/IDE0/ATA1/Unit0/PIO 0 times
- 00:04:19.154039 /Devices/IDE0/ATA1/Unit0/ReadBytes 0 bytes
- 00:04:19.154041 /Devices/IDE0/ATA1/Unit0/StatusYields 1458 ticks/call ( 7292 ticks, 5 times, max 3714, min 564)
- 00:04:19.154044 /Devices/IDE0/ATA1/Unit0/WrittenBytes 0 bytes
- 00:04:19.154046 /Devices/IDE0/ATA1/Unit1/AtapiDMA 0 times
- 00:04:19.154049 /Devices/IDE0/ATA1/Unit1/AtapiPIO 0 times
- 00:04:19.154051 /Devices/IDE0/ATA1/Unit1/DMA 0 times
- 00:04:19.154053 /Devices/IDE0/ATA1/Unit1/PIO 0 times
- 00:04:19.154055 /Devices/IDE0/ATA1/Unit1/ReadBytes 0 bytes
- 00:04:19.154057 /Devices/IDE0/ATA1/Unit1/StatusYields 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
- 00:04:19.154060 /Devices/IDE0/ATA1/Unit1/WrittenBytes 0 bytes
- 00:04:19.154062 /Devices/VMMDev/BalloonChunks 0 count
- 00:04:19.154065 /Devices/VMMDev/FastIrqAckR3 0 count
- 00:04:19.154067 /Devices/VMMDev/FastIrqAckRZ 0 count
- 00:04:19.154069 /Devices/VMMDev/HGCM-Guest/BudgetAvailable 265972544 bytes
- 00:04:19.154072 /Devices/VMMDev/HGCM-Guest/BudgetConfig 265972544 bytes
- 00:04:19.154075 /Devices/VMMDev/HGCM-Guest/cTotalMessages 0 count
- 00:04:19.154080 /Devices/VMMDev/HGCM-Guest/cbHeapTotal 0 bytes
- 00:04:19.154085 /Devices/VMMDev/HGCM-Legacy/BudgetAvailable 265972544 bytes
- 00:04:19.154087 /Devices/VMMDev/HGCM-Legacy/BudgetConfig 265972544 bytes
- 00:04:19.154090 /Devices/VMMDev/HGCM-Legacy/cTotalMessages 0 count
- 00:04:19.154092 /Devices/VMMDev/HGCM-Legacy/cbHeapTotal 0 bytes
- 00:04:19.154094 /Devices/VMMDev/HGCM-OtherDrv/BudgetAvailable 265972544 bytes
- 00:04:19.154097 /Devices/VMMDev/HGCM-OtherDrv/BudgetConfig 265972544 bytes
- 00:04:19.154099 /Devices/VMMDev/HGCM-OtherDrv/cTotalMessages 0 count
- 00:04:19.154101 /Devices/VMMDev/HGCM-OtherDrv/cbHeapTotal 0 bytes
- 00:04:19.154104 /Devices/VMMDev/HGCM-Reserved1/BudgetAvailable 265972544 bytes
- 00:04:19.154106 /Devices/VMMDev/HGCM-Reserved1/BudgetConfig 265972544 bytes
- 00:04:19.154108 /Devices/VMMDev/HGCM-Reserved1/cTotalMessages 0 count
- 00:04:19.154111 /Devices/VMMDev/HGCM-Reserved1/cbHeapTotal 0 bytes
- 00:04:19.154113 /Devices/VMMDev/HGCM-Root/BudgetAvailable 265972544 bytes
- 00:04:19.154115 /Devices/VMMDev/HGCM-Root/BudgetConfig 265972544 bytes
- 00:04:19.154117 /Devices/VMMDev/HGCM-Root/cTotalMessages 0 count
- 00:04:19.154119 /Devices/VMMDev/HGCM-Root/cbHeapTotal 0 bytes
- 00:04:19.154122 /Devices/VMMDev/HGCM-System/BudgetAvailable 265972544 bytes
- 00:04:19.154124 /Devices/VMMDev/HGCM-System/BudgetConfig 265972544 bytes
- 00:04:19.154126 /Devices/VMMDev/HGCM-System/cTotalMessages 0 count
- 00:04:19.154128 /Devices/VMMDev/HGCM-System/cbHeapTotal 0 bytes
- 00:04:19.154131 /Devices/VMMDev/HGCM-User/BudgetAvailable 265972544 bytes
- 00:04:19.154133 /Devices/VMMDev/HGCM-User/BudgetConfig 265972544 bytes
- 00:04:19.154136 /Devices/VMMDev/HGCM-User/cTotalMessages 0 count
- 00:04:19.154138 /Devices/VMMDev/HGCM-User/cbHeapTotal 0 bytes
- 00:04:19.154140 /Devices/VMMDev/HGCM-VBoxGuest/BudgetAvailable 265972544 bytes
- 00:04:19.154143 /Devices/VMMDev/HGCM-VBoxGuest/BudgetConfig 265972544 bytes
- 00:04:19.154145 /Devices/VMMDev/HGCM-VBoxGuest/cTotalMessages 0 count
- 00:04:19.154147 /Devices/VMMDev/HGCM-VBoxGuest/cbHeapTotal 0 bytes
- 00:04:19.154149 /Devices/VMMDev/LargeReqBufAllocs 0 count
- 00:04:19.154152 /Devices/VMMDev/SlowIrqAck 0 count
- 00:04:19.154154 /Devices/e1000#0/ReceiveBytes 0 bytes
- 00:04:19.154156 /Devices/e1000#0/TransmitBytes 0 bytes
- 00:04:19.154158 /Devices/e1000#0/iStatIntLost 0 ns
- 00:04:19.154161 /Devices/e1000#0/iStatIntLostOne 0 ns
- 00:04:19.154163 /Devices/e1000#0/u64ArmedAt 0 ns
- 00:04:19.154166 /Devices/e1000#0/uStatDescCtx 0 ns
- 00:04:19.154168 /Devices/e1000#0/uStatDescDat 0 ns
- 00:04:19.154170 /Devices/e1000#0/uStatDescLeg 0 ns
- 00:04:19.154173 /Devices/e1000#0/uStatInt 0 ns
- 00:04:19.154175 /Devices/e1000#0/uStatIntEarly 0 ns
- 00:04:19.154177 /Devices/e1000#0/uStatIntICS 0 ns
- 00:04:19.154179 /Devices/e1000#0/uStatIntIMS 0 ns
- 00:04:19.154181 /Devices/e1000#0/uStatIntLate 0 ns
- 00:04:19.154183 /Devices/e1000#0/uStatIntLower 0 ns
- 00:04:19.154186 /Devices/e1000#0/uStatIntMasked 0 ns
- 00:04:19.154188 /Devices/e1000#0/uStatIntRDTR 0 ns
- 00:04:19.154190 /Devices/e1000#0/uStatIntRXDMT0 0 ns
- 00:04:19.154192 /Devices/e1000#0/uStatIntRx 0 ns
- 00:04:19.154195 /Devices/e1000#0/uStatIntSkip 0 ns
- 00:04:19.154197 /Devices/e1000#0/uStatIntTXQE 0 ns
- 00:04:19.154199 /Devices/e1000#0/uStatIntTry 0 ns
- 00:04:19.154201 /Devices/e1000#0/uStatIntTx 0 ns
- 00:04:19.154203 /Devices/e1000#0/uStatMaxTxDelay 0 ns
- 00:04:19.154205 /Devices/e1000#0/uStatNoIntICR 0 ns
- 00:04:19.154208 /Devices/e1000#0/uStatRAD 0 ns
- 00:04:19.154210 /Devices/e1000#0/uStatRID 0 ns
- 00:04:19.154212 /Devices/e1000#0/uStatRxFrm 0 ns
- 00:04:19.154214 /Devices/e1000#0/uStatTAD 0 ns
- 00:04:19.154216 /Devices/e1000#0/uStatTID 0 ns
- 00:04:19.154220 /Devices/e1000#0/uStatTx1514 0 ns
- 00:04:19.154223 /Devices/e1000#0/uStatTx16384 0 ns
- 00:04:19.154225 /Devices/e1000#0/uStatTx2962 0 ns
- 00:04:19.154227 /Devices/e1000#0/uStatTx32768 0 ns
- 00:04:19.154229 /Devices/e1000#0/uStatTx4410 0 ns
- 00:04:19.154232 /Devices/e1000#0/uStatTx5858 0 ns
- 00:04:19.154234 /Devices/e1000#0/uStatTx7306 0 ns
- 00:04:19.154236 /Devices/e1000#0/uStatTx8754 0 ns
- 00:04:19.154238 /Devices/e1000#0/uStatTxDelayExp 0 ns
- 00:04:19.154240 /Devices/e1000#0/uStatTxDelayed 0 ns
- 00:04:19.154243 /Devices/e1000#0/uStatTxFrm 0 ns
- 00:04:19.154245 /Devices/e1000#0/uStatTxIDE 0 ns
- 00:04:19.154247 /Devices/e1000#0/uStatTxLarge 0 ns
- 00:04:19.154249 /Devices/e1000#0/uStatTxNoRS 0 ns
- 00:04:19.154253 /Devices/ichac97/Stream0/reg-CR 0
- 00:04:19.154256 /Devices/ichac97/Stream0/reg-SR 0
- 00:04:19.154259 /Devices/ichac97/Stream1/reg-CR 0
- 00:04:19.154261 /Devices/ichac97/Stream1/reg-SR 0
- 00:04:19.154265 /Devices/ichac97/Stream2/reg-CR 0
- 00:04:19.154267 /Devices/ichac97/Stream2/reg-SR 0
- 00:04:19.154269 /Devices/ichac97/UnimplementedNabmReads 0 times
- 00:04:19.154271 /Devices/ichac97/UnimplementedNabmWrites 0 times
- 00:04:19.154273 /Devices/ichac97/UnimplementedNamReads 0 times
- 00:04:19.154276 /Devices/ichac97/UnimplementedNamWrites 0 times
- 00:04:19.154278 /Devices/mc146818/Irq 0 times
- 00:04:19.154281 /Devices/mc146818/TimerCB 0 times
- 00:04:19.154283 /Devices/vga/HgmsiMdaCgaAccesses 0 times
- 00:04:19.154285 /Devices/vga/VMSVGA/Cmd/3dActivateSurface 0 times
- 00:04:19.154288 /Devices/vga/VMSVGA/Cmd/3dBeginQuery 0 times
- 00:04:19.154290 /Devices/vga/VMSVGA/Cmd/3dBlitSurfaceToScreenProf 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
- 00:04:19.154293 /Devices/vga/VMSVGA/Cmd/3dClear 0 times
- 00:04:19.154296 /Devices/vga/VMSVGA/Cmd/3dContextDefine 0 times
- 00:04:19.154298 /Devices/vga/VMSVGA/Cmd/3dContextDestroy 0 times
- 00:04:19.154300 /Devices/vga/VMSVGA/Cmd/3dDeactivateSurface 0 times
- 00:04:19.154302 /Devices/vga/VMSVGA/Cmd/3dDrawPrimitives 0 times
- 00:04:19.154304 /Devices/vga/VMSVGA/Cmd/3dEndQuery 0 times
- 00:04:19.154307 /Devices/vga/VMSVGA/Cmd/3dGenerateMipmaps 0 times
- 00:04:19.154309 /Devices/vga/VMSVGA/Cmd/3dPresent 0 times
- 00:04:19.154311 /Devices/vga/VMSVGA/Cmd/3dPresentReadBack 0 times
- 00:04:19.154313 /Devices/vga/VMSVGA/Cmd/3dSetClipPlane 0 times
- 00:04:19.154316 /Devices/vga/VMSVGA/Cmd/3dSetLightData 0 times
- 00:04:19.154318 /Devices/vga/VMSVGA/Cmd/3dSetLightEnable 0 times
- 00:04:19.154320 /Devices/vga/VMSVGA/Cmd/3dSetMaterial 0 times
- 00:04:19.154322 /Devices/vga/VMSVGA/Cmd/3dSetRenderState 0 times
- 00:04:19.154324 /Devices/vga/VMSVGA/Cmd/3dSetRenderTarget 0 times
- 00:04:19.154327 /Devices/vga/VMSVGA/Cmd/3dSetScissorRect 0 times
- 00:04:19.154329 /Devices/vga/VMSVGA/Cmd/3dSetShader 0 times
- 00:04:19.154331 /Devices/vga/VMSVGA/Cmd/3dSetShaderConst 0 times
- 00:04:19.154333 /Devices/vga/VMSVGA/Cmd/3dSetTextureState 0 times
- 00:04:19.154335 /Devices/vga/VMSVGA/Cmd/3dSetTransform 0 times
- 00:04:19.154337 /Devices/vga/VMSVGA/Cmd/3dSetViewPort 0 times
- 00:04:19.154340 /Devices/vga/VMSVGA/Cmd/3dSetZRange 0 times
- 00:04:19.154342 /Devices/vga/VMSVGA/Cmd/3dShaderDefine 0 times
- 00:04:19.154344 /Devices/vga/VMSVGA/Cmd/3dShaderDestroy 0 times
- 00:04:19.154346 /Devices/vga/VMSVGA/Cmd/3dSurfaceCopy 0 times
- 00:04:19.154348 /Devices/vga/VMSVGA/Cmd/3dSurfaceDefine 0 times
- 00:04:19.154350 /Devices/vga/VMSVGA/Cmd/3dSurfaceDefineV2 0 times
- 00:04:19.154352 /Devices/vga/VMSVGA/Cmd/3dSurfaceDestroy 0 times
- 00:04:19.154355 /Devices/vga/VMSVGA/Cmd/3dSurfaceDma 0 times
- 00:04:19.154358 /Devices/vga/VMSVGA/Cmd/3dSurfaceScreen 0 times
- 00:04:19.154360 /Devices/vga/VMSVGA/Cmd/3dSurfaceStretchBlt 0 times
- 00:04:19.154363 /Devices/vga/VMSVGA/Cmd/3dWaitForQuery 0 times
- 00:04:19.154365 /Devices/vga/VMSVGA/Cmd/AnnotationCopy 0 times
- 00:04:19.154367 /Devices/vga/VMSVGA/Cmd/AnnotationFill 0 times
- 00:04:19.154369 /Devices/vga/VMSVGA/Cmd/BlitGmrFbToScreen 0 times
- 00:04:19.154371 /Devices/vga/VMSVGA/Cmd/BlitScreentoGmrFb 0 times
- 00:04:19.154373 /Devices/vga/VMSVGA/Cmd/DefineAlphaCursor 0 times
- 00:04:19.154375 /Devices/vga/VMSVGA/Cmd/DefineCursor 0 times
- 00:04:19.154377 /Devices/vga/VMSVGA/Cmd/DefineGmr2 0 times
- 00:04:19.154379 /Devices/vga/VMSVGA/Cmd/DefineGmr2/Free 0 times
- 00:04:19.154382 /Devices/vga/VMSVGA/Cmd/DefineGmr2/Modify 0 times
- 00:04:19.154384 /Devices/vga/VMSVGA/Cmd/DefineGmrFb 0 times
- 00:04:19.154386 /Devices/vga/VMSVGA/Cmd/DefineScreen 0 times
- 00:04:19.154388 /Devices/vga/VMSVGA/Cmd/DestroyScreen 0 times
- 00:04:19.154390 /Devices/vga/VMSVGA/Cmd/Escape 0 times
- 00:04:19.154392 /Devices/vga/VMSVGA/Cmd/Fence 0 times
- 00:04:19.154395 /Devices/vga/VMSVGA/Cmd/InvalidCmd 0 times
- 00:04:19.154397 /Devices/vga/VMSVGA/Cmd/RemapGmr2 0 times
- 00:04:19.154399 /Devices/vga/VMSVGA/Cmd/RemapGmr2/Modify 0 times
- 00:04:19.154401 /Devices/vga/VMSVGA/Cmd/Update 0 times
- 00:04:19.154404 /Devices/vga/VMSVGA/Cmd/UpdateVerbose 0 times
- 00:04:19.154406 /Devices/vga/VMSVGA/EmtDelayOnBusyFifo 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
- 00:04:19.154409 /Devices/vga/VMSVGA/FifoCommands 0 times
- 00:04:19.154411 /Devices/vga/VMSVGA/FifoCursorFetchAgain 0 times
- 00:04:19.154413 /Devices/vga/VMSVGA/FifoCursorNoChange 0 times
- 00:04:19.154416 /Devices/vga/VMSVGA/FifoCursorPosition 0 times
- 00:04:19.154418 /Devices/vga/VMSVGA/FifoCursorVisiblity 0 times
- 00:04:19.154420 /Devices/vga/VMSVGA/FifoErrors 0 times
- 00:04:19.154422 /Devices/vga/VMSVGA/FifoExtendedSleep 50692532118 ticks/call (912465578126 ticks, 18 times, max 54003882257, min 4702)
- 00:04:19.154426 /Devices/vga/VMSVGA/FifoStalls 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
- 00:04:19.154429 /Devices/vga/VMSVGA/FifoTodoTimeout 0 times
- 00:04:19.154431 /Devices/vga/VMSVGA/FifoTodoWoken 0 times
- 00:04:19.154433 /Devices/vga/VMSVGA/FifoUnknownCommands 0 times
- 00:04:19.154435 /Devices/vga/VMSVGA/FifoWatchdogWakeUps 0 times
- 00:04:19.154437 /Devices/vga/VMSVGA/Reg/BitsPerPixelRead 0 times
- 00:04:19.154440 /Devices/vga/VMSVGA/Reg/BitsPerPixelWrite 0 times
- 00:04:19.154442 /Devices/vga/VMSVGA/Reg/BlueMaskRead 0 times
- 00:04:19.154444 /Devices/vga/VMSVGA/Reg/BusyRead 0 times
- 00:04:19.154446 /Devices/vga/VMSVGA/Reg/BusyWrite 0 times
- 00:04:19.154449 /Devices/vga/VMSVGA/Reg/BytesPerLineRead 0 times
- 00:04:19.154451 /Devices/vga/VMSVGA/Reg/CapabilitesRead 0 times
- 00:04:19.154453 /Devices/vga/VMSVGA/Reg/ConfigDoneRead 0 times
- 00:04:19.154455 /Devices/vga/VMSVGA/Reg/ConfigDoneWrite 0 times
- 00:04:19.154457 /Devices/vga/VMSVGA/Reg/CursorXxxxRead 0 times
- 00:04:19.154459 /Devices/vga/VMSVGA/Reg/CursorXxxxWrite 0 times
- 00:04:19.154461 /Devices/vga/VMSVGA/Reg/DepthRead 0 times
- 00:04:19.154464 /Devices/vga/VMSVGA/Reg/DepthWrite 0 times
- 00:04:19.154466 /Devices/vga/VMSVGA/Reg/DisplayHeightRead 0 times
- 00:04:19.154468 /Devices/vga/VMSVGA/Reg/DisplayHeightWrite 0 times
- 00:04:19.154470 /Devices/vga/VMSVGA/Reg/DisplayIdRead 0 times
- 00:04:19.154472 /Devices/vga/VMSVGA/Reg/DisplayIdWrite 0 times
- 00:04:19.154475 /Devices/vga/VMSVGA/Reg/DisplayIsPrimaryRead 0 times
- 00:04:19.154477 /Devices/vga/VMSVGA/Reg/DisplayIsPrimaryWrite 0 times
- 00:04:19.154479 /Devices/vga/VMSVGA/Reg/DisplayPositionXRead 0 times
- 00:04:19.154482 /Devices/vga/VMSVGA/Reg/DisplayPositionXWrite 0 times
- 00:04:19.154485 /Devices/vga/VMSVGA/Reg/DisplayPositionYRead 0 times
- 00:04:19.154487 /Devices/vga/VMSVGA/Reg/DisplayPositionYWrite 0 times
- 00:04:19.154489 /Devices/vga/VMSVGA/Reg/DisplayWidthRead 0 times
- 00:04:19.154491 /Devices/vga/VMSVGA/Reg/DisplayWidthWrite 0 times
- 00:04:19.154493 /Devices/vga/VMSVGA/Reg/EnableRead 0 times
- 00:04:19.154495 /Devices/vga/VMSVGA/Reg/EnableWrite 0 times
- 00:04:19.154497 /Devices/vga/VMSVGA/Reg/FbOffsetRead 0 times
- 00:04:19.154500 /Devices/vga/VMSVGA/Reg/FbSizeRead 0 times
- 00:04:19.154502 /Devices/vga/VMSVGA/Reg/FbStartRead 0 times
- 00:04:19.154504 /Devices/vga/VMSVGA/Reg/GmrDescriptorWrite 0 times
- 00:04:19.154506 /Devices/vga/VMSVGA/Reg/GmrDescriptorWrite/Errors 0 times
- 00:04:19.154508 /Devices/vga/VMSVGA/Reg/GmrDescriptorWrite/Free 0 times
- 00:04:19.154510 /Devices/vga/VMSVGA/Reg/GmrIdRead 0 times
- 00:04:19.154513 /Devices/vga/VMSVGA/Reg/GmrIdWrite 0 times
- 00:04:19.154515 /Devices/vga/VMSVGA/Reg/GmrMaxDescriptorLengthRead 0 times
- 00:04:19.154517 /Devices/vga/VMSVGA/Reg/GmrMaxIdsRead 0 times
- 00:04:19.154519 /Devices/vga/VMSVGA/Reg/GmrsMaxPagesRead 0 times
- 00:04:19.154521 /Devices/vga/VMSVGA/Reg/GreenMaskRead 0 times
- 00:04:19.154523 /Devices/vga/VMSVGA/Reg/GuestIdRead 0 times
- 00:04:19.154525 /Devices/vga/VMSVGA/Reg/GuestIdWrite 0 times
- 00:04:19.154527 /Devices/vga/VMSVGA/Reg/HeightRead 0 times
- 00:04:19.154529 /Devices/vga/VMSVGA/Reg/HeightWrite 0 times
- 00:04:19.154532 /Devices/vga/VMSVGA/Reg/HostBitsPerPixelRead 0 times
- 00:04:19.154534 /Devices/vga/VMSVGA/Reg/IdRead 0 times
- 00:04:19.154536 /Devices/vga/VMSVGA/Reg/IdWrite 0 times
- 00:04:19.154539 /Devices/vga/VMSVGA/Reg/IrqMaskRead 0 times
- 00:04:19.154541 /Devices/vga/VMSVGA/Reg/IrqMaskWrite 0 times
- 00:04:19.154543 /Devices/vga/VMSVGA/Reg/MaxHeightRead 0 times
- 00:04:19.154545 /Devices/vga/VMSVGA/Reg/MaxWidthRead 0 times
- 00:04:19.154547 /Devices/vga/VMSVGA/Reg/MemRegsRead 0 times
- 00:04:19.154550 /Devices/vga/VMSVGA/Reg/MemSizeRead 0 times
- 00:04:19.154552 /Devices/vga/VMSVGA/Reg/MemStartRead 0 times
- 00:04:19.154554 /Devices/vga/VMSVGA/Reg/MemorySizeRead 0 times
- 00:04:19.154556 /Devices/vga/VMSVGA/Reg/NumDisplaysRead 0 times
- 00:04:19.154558 /Devices/vga/VMSVGA/Reg/NumDisplaysWrite 0 times
- 00:04:19.154560 /Devices/vga/VMSVGA/Reg/NumGuestDisplaysRead 0 times
- 00:04:19.154563 /Devices/vga/VMSVGA/Reg/NumGuestDisplaysWrite 0 times
- 00:04:19.154565 /Devices/vga/VMSVGA/Reg/PaletteRead 0 times
- 00:04:19.154567 /Devices/vga/VMSVGA/Reg/PaletteWrite 0 times
- 00:04:19.154569 /Devices/vga/VMSVGA/Reg/PitchLockRead 0 times
- 00:04:19.154571 /Devices/vga/VMSVGA/Reg/PitchLockWrite 0 times
- 00:04:19.154573 /Devices/vga/VMSVGA/Reg/PseudoColorWrite 0 times
- 00:04:19.154575 /Devices/vga/VMSVGA/Reg/PsuedoColorRead 0 times
- 00:04:19.154577 /Devices/vga/VMSVGA/Reg/ReadOnlyWrite 0 times
- 00:04:19.154579 /Devices/vga/VMSVGA/Reg/RedMaskRead 0 times
- 00:04:19.154581 /Devices/vga/VMSVGA/Reg/ScratchRead 0 times
- 00:04:19.154584 /Devices/vga/VMSVGA/Reg/ScratchSizeRead 0 times
- 00:04:19.154586 /Devices/vga/VMSVGA/Reg/ScratchWrite 0 times
- 00:04:19.154588 /Devices/vga/VMSVGA/Reg/SyncRead 0 times
- 00:04:19.154590 /Devices/vga/VMSVGA/Reg/SyncWrite 0 times
- 00:04:19.154592 /Devices/vga/VMSVGA/Reg/TopRead 0 times
- 00:04:19.154594 /Devices/vga/VMSVGA/Reg/TopWrite 0 times
- 00:04:19.154596 /Devices/vga/VMSVGA/Reg/TracesRead 0 times
- 00:04:19.154598 /Devices/vga/VMSVGA/Reg/TracesWrite 0 times
- 00:04:19.154600 /Devices/vga/VMSVGA/Reg/UnknownRead 0 times
- 00:04:19.154602 /Devices/vga/VMSVGA/Reg/UnknownWrite 0 times
- 00:04:19.154605 /Devices/vga/VMSVGA/Reg/VramSizeRead 0 times
- 00:04:19.154608 /Devices/vga/VMSVGA/Reg/WidthRead 0 times
- 00:04:19.154610 /Devices/vga/VMSVGA/Reg/WidthWrite 0 times
- 00:04:19.154612 /Devices/vga/VMSVGA/Reg/WriteOnlyRead 0 times
- 00:04:19.154615 /Drivers/AUDIO-0/TotalStreamsCreated 0 count
- 00:04:19.154617 /Drivers/AUDIO-1/TotalStreamsCreated 0 count
- 00:04:19.154620 /Drivers/AUDIO-2/TotalStreamsCreated 0 count
- 00:04:19.154625 /EM/CPU0/ExitHashing/Used 0 times
- 00:04:19.154627 /EM/CPU0/ExitOpt/Exec 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
- 00:04:19.154630 /EM/CPU0/ExitOpt/ExecInstructions 0 times
- 00:04:19.154632 /EM/CPU0/ExitOpt/ExecSavedExit 0 times
- 00:04:19.154634 /EM/CPU0/ExitOpt/Probe 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
- 00:04:19.154637 /EM/CPU0/ExitOpt/ProbeInstructions 0 times
- 00:04:19.154639 /EM/CPU0/ExitOpt/ProbedExecWithMax 0 times
- 00:04:19.154641 /EM/CPU0/ExitOpt/ProbedNormal 0 times
- 00:04:19.154643 /EM/CPU0/ExitOpt/ProbedToRing3 0 times
- 00:04:19.154647 /GMM/ChunkTlbHits 8909 times
- 00:04:19.154649 /GMM/ChunkTlbMisses 1 times
- 00:04:19.154656 /GMM/VM/Allocated/cBasePages 545 pages
- 00:04:19.154659 /GMM/VM/Allocated/cFixedPages 0 pages
- 00:04:19.154662 /GMM/VM/Allocated/cShadowPages 0 pages
- 00:04:19.154664 /GMM/VM/Reserved/cBasePages 1048679 pages
- 00:04:19.154666 /GMM/VM/Reserved/cFixedPages 5636 pages
- 00:04:19.154669 /GMM/VM/Reserved/cShadowPages 1 pages
- 00:04:19.154671 /GMM/VM/cBalloonedPages 0 pages
- 00:04:19.154673 /GMM/VM/cMaxBalloonedPages 0 pages
- 00:04:19.154676 /GMM/VM/cPrivatePages 545 pages
- 00:04:19.154678 /GMM/VM/cReqActuallyBalloonedPages 0 pages
- 00:04:19.154680 /GMM/VM/cReqBalloonedPages 0 pages
- 00:04:19.154683 /GMM/VM/cReqDeflatePages 0 pages
- 00:04:19.154685 /GMM/VM/cShareableModules 0 count
- 00:04:19.154687 /GMM/VM/cSharedPages 0 pages
- 00:04:19.154690 /GMM/VM/enmPolicy 1
- 00:04:19.154692 /GMM/VM/enmPriority 2
- 00:04:19.154695 /GMM/VM/fBallooningEnabled false
- 00:04:19.154697 /GMM/VM/fMayAllocate true
- 00:04:19.154699 /GMM/VM/fSharedPagingEnabled false
- 00:04:19.154702 /GMM/cAllocatedPages 545 pages
- 00:04:19.154704 /GMM/cBalloonedPages 0 pages
- 00:04:19.154706 /GMM/cChunks 2 count
- 00:04:19.154709 /GMM/cDuplicatePages 0 pages
- 00:04:19.154711 /GMM/cFreedChunks 0 count
- 00:04:19.154713 /GMM/cLeftBehindSharedPages 0 pages
- 00:04:19.154716 /GMM/cMaxPages 4294967295 pages
- 00:04:19.154718 /GMM/cOverCommittedPages 0 pages
- 00:04:19.154720 /GMM/cReservedPages 1054316 pages
- 00:04:19.154723 /GMM/cShareableModules 0 count
- 00:04:19.154725 /GMM/cSharedPages 0 pages
- 00:04:19.154728 /GMM/idFreeGeneration 4611686018427387775
- 00:04:19.154786 /GVMM/EMTs 1 calls
- 00:04:19.154789 /GVMM/HostCPUs 4 calls
- 00:04:19.154792 /GVMM/HostCpus/0 0
- 00:04:19.154794 /GVMM/HostCpus/0/CurTimerHz 0 Hz
- 00:04:19.154796 /GVMM/HostCpus/0/DesiredHz 0 Hz
- 00:04:19.154799 /GVMM/HostCpus/0/PPTChanges 0 times
- 00:04:19.154801 /GVMM/HostCpus/0/PPTStarts 0 times
- 00:04:19.154803 /GVMM/HostCpus/0/idxCpuSet 0
- 00:04:19.154805 /GVMM/HostCpus/1 1
- 00:04:19.154807 /GVMM/HostCpus/1/CurTimerHz 0 Hz
- 00:04:19.154810 /GVMM/HostCpus/1/DesiredHz 0 Hz
- 00:04:19.154812 /GVMM/HostCpus/1/PPTChanges 0 times
- 00:04:19.154814 /GVMM/HostCpus/1/PPTStarts 0 times
- 00:04:19.154816 /GVMM/HostCpus/1/idxCpuSet 1
- 00:04:19.154820 /GVMM/HostCpus/2 2
- 00:04:19.154824 /GVMM/HostCpus/2/CurTimerHz 0 Hz
- 00:04:19.154826 /GVMM/HostCpus/2/DesiredHz 0 Hz
- 00:04:19.154828 /GVMM/HostCpus/2/PPTChanges 0 times
- 00:04:19.154830 /GVMM/HostCpus/2/PPTStarts 0 times
- 00:04:19.154832 /GVMM/HostCpus/2/idxCpuSet 2
- 00:04:19.154835 /GVMM/HostCpus/3 3
- 00:04:19.154837 /GVMM/HostCpus/3/CurTimerHz 0 Hz
- 00:04:19.154839 /GVMM/HostCpus/3/DesiredHz 0 Hz
- 00:04:19.154841 /GVMM/HostCpus/3/PPTChanges 0 times
- 00:04:19.154843 /GVMM/HostCpus/3/PPTStarts 0 times
- 00:04:19.154845 /GVMM/HostCpus/3/idxCpuSet 3
- 00:04:19.154848 /GVMM/Sum/HaltBlocking 7357 calls
- 00:04:19.154850 /GVMM/Sum/HaltCalls 51586 calls
- 00:04:19.154853 /GVMM/Sum/HaltNotBlocking 44229 calls
- 00:04:19.154855 /GVMM/Sum/HaltTimeouts 6809 calls
- 00:04:19.154858 /GVMM/Sum/HaltWakeUps 0 calls
- 00:04:19.154860 /GVMM/Sum/PokeCalls 0 calls
- 00:04:19.154862 /GVMM/Sum/PokeNotBusy 0 calls
- 00:04:19.154865 /GVMM/Sum/PollCalls 7 calls
- 00:04:19.154867 /GVMM/Sum/PollHalts 0 calls
- 00:04:19.154869 /GVMM/Sum/PollWakeUps 0 calls
- 00:04:19.154871 /GVMM/Sum/WakeUpCalls 548 calls
- 00:04:19.154873 /GVMM/Sum/WakeUpNotHalted 4 calls
- 00:04:19.154876 /GVMM/Sum/WakeUpWakeUps 0 calls
- 00:04:19.154878 /GVMM/VM/HaltBlocking 7357 calls
- 00:04:19.154881 /GVMM/VM/HaltCalls 51586 calls
- 00:04:19.154883 /GVMM/VM/HaltNotBlocking 44229 calls
- 00:04:19.154887 /GVMM/VM/HaltTimeouts 6809 calls
- 00:04:19.154889 /GVMM/VM/HaltWakeUps 0 calls
- 00:04:19.154891 /GVMM/VM/PokeCalls 0 calls
- 00:04:19.154894 /GVMM/VM/PokeNotBusy 0 calls
- 00:04:19.154896 /GVMM/VM/PollCalls 7 calls
- 00:04:19.154898 /GVMM/VM/PollHalts 0 calls
- 00:04:19.154900 /GVMM/VM/PollWakeUps 0 calls
- 00:04:19.154903 /GVMM/VM/WakeUpCalls 548 calls
- 00:04:19.154905 /GVMM/VM/WakeUpNotHalted 4 calls
- 00:04:19.154907 /GVMM/VM/WakeUpWakeUps 0 calls
- 00:04:19.154910 /GVMM/VMs 1 calls
- 00:04:19.154912 /HGCM/FailedPageListLocking 0 count
- 00:04:19.154914 /HGCM/LargeCmdAllocs 0 count
- 00:04:19.154917 /HGCM/MsgArrival 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
- 00:04:19.154920 /HGCM/MsgCompletion 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
- 00:04:19.154922 /HGCM/MsgTotal 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
- 00:04:19.154925 /HM/CPU0/Exit/HostNmiInGC 0 times
- 00:04:19.154927 /HM/CPU0/Exit/HostNmiInGCIpi 0 times
- 00:04:19.154929 /HM/CPU0/Exit/Trap/Gst/#AC 0 times
- 00:04:19.154932 /HM/CPU0/Exit/Trap/Gst/#AC-split-lock 0 times
- 00:04:19.154934 /HM/CPU0/Switch/Preempting 0 times
- 00:04:19.154936 /IEM/CPU0/CodeTlb-Misses 0 count
- 00:04:19.154939 /IEM/CPU0/CodeTlb-PhysRev ffffffffffff9c00
- 00:04:19.154941 /IEM/CPU0/CodeTlb-Revision fffff38000000000
- 00:04:19.154944 /IEM/CPU0/CodeTlb-SlowReads 0
- 00:04:19.154946 /IEM/CPU0/DataTlb-Misses 0 count
- 00:04:19.154948 /IEM/CPU0/DataTlb-PhysRev ffffffffffff9c00
- 00:04:19.154951 /IEM/CPU0/DataTlb-Revision fffff38000000000
- 00:04:19.154953 /IEM/CPU0/cInstructions 763 count
- 00:04:19.154956 /IEM/CPU0/cLongJumps 0 bytes
- 00:04:19.154958 /IEM/CPU0/cPendingCommit 0 bytes
- 00:04:19.154960 /IEM/CPU0/cPotentialExits 41210 count
- 00:04:19.154964 /IEM/CPU0/cRetAspectNotImplemented 0 count
- 00:04:19.154966 /IEM/CPU0/cRetErrStatuses 0 count
- 00:04:19.154969 /IEM/CPU0/cRetInfStatuses 0 count
- 00:04:19.154971 /IEM/CPU0/cRetInstrNotImplemented 0 count
- 00:04:19.154973 /IEM/CPU0/cbWritten 73938 bytes
- 00:04:19.154976 /IOM/MmioMappingsStale 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
- 00:04:19.154978 /MM/HyperHeap/cbFree 1995312 bytes
- 00:04:19.154981 /MM/HyperHeap/cbHeap 2096832 bytes
- 00:04:19.154983 /PDM/BlkCache/cbCached 0 bytes
- 00:04:19.154986 /PDM/BlkCache/cbCachedFru 0 bytes
- 00:04:19.154988 /PDM/BlkCache/cbCachedMruIn 0 bytes
- 00:04:19.154990 /PDM/BlkCache/cbCachedMruOut 0 bytes
- 00:04:19.154992 /PDM/BlkCache/cbMax 5242880 bytes
- 00:04:19.154995 /PDM/CritSects/8237A#0Auto/ContentionR3 0 times
- 00:04:19.154997 /PDM/CritSects/8237A#0Auto/ContentionRZLock 0 times
- 00:04:19.154999 /PDM/CritSects/8237A#0Auto/ContentionRZUnlock 0 times
- 00:04:19.155002 /PDM/CritSects/AC'97/ContentionR3 0 times
- 00:04:19.155004 /PDM/CritSects/AC'97/ContentionRZLock 0 times
- 00:04:19.155006 /PDM/CritSects/AC'97/ContentionRZUnlock 0 times
- 00:04:19.155008 /PDM/CritSects/ATA#0-Ctl/ContentionR3 0 times
- 00:04:19.155011 /PDM/CritSects/ATA#0-Ctl/ContentionRZLock 0 times
- 00:04:19.155013 /PDM/CritSects/ATA#0-Ctl/ContentionRZUnlock 0 times
- 00:04:19.155015 /PDM/CritSects/ATA#0-Req/ContentionR3 0 times
- 00:04:19.155017 /PDM/CritSects/ATA#0-Req/ContentionRZLock 0 times
- 00:04:19.155019 /PDM/CritSects/ATA#0-Req/ContentionRZUnlock 0 times
- 00:04:19.155022 /PDM/CritSects/ATA#1-Ctl/ContentionR3 1 times
- 00:04:19.155024 /PDM/CritSects/ATA#1-Ctl/ContentionRZLock 0 times
- 00:04:19.155027 /PDM/CritSects/ATA#1-Ctl/ContentionRZUnlock 0 times
- 00:04:19.155030 /PDM/CritSects/ATA#1-Req/ContentionR3 0 times
- 00:04:19.155032 /PDM/CritSects/ATA#1-Req/ContentionRZLock 0 times
- 00:04:19.155034 /PDM/CritSects/ATA#1-Req/ContentionRZUnlock 0 times
- 00:04:19.155037 /PDM/CritSects/E1000#0/ContentionR3 0 times
- 00:04:19.155039 /PDM/CritSects/E1000#0/ContentionRZLock 0 times
- 00:04:19.155041 /PDM/CritSects/E1000#0/ContentionRZUnlock 0 times
- 00:04:19.155044 /PDM/CritSects/E1000#0RX/ContentionR3 0 times
- 00:04:19.155046 /PDM/CritSects/E1000#0RX/ContentionRZLock 0 times
- 00:04:19.155048 /PDM/CritSects/E1000#0RX/ContentionRZUnlock 0 times
- 00:04:19.155051 /PDM/CritSects/E1000#0TX/ContentionR3 0 times
- 00:04:19.155053 /PDM/CritSects/E1000#0TX/ContentionRZLock 0 times
- 00:04:19.155055 /PDM/CritSects/E1000#0TX/ContentionRZUnlock 0 times
- 00:04:19.155058 /PDM/CritSects/GIMDev#0Auto/ContentionR3 0 times
- 00:04:19.155060 /PDM/CritSects/GIMDev#0Auto/ContentionRZLock 0 times
- 00:04:19.155062 /PDM/CritSects/GIMDev#0Auto/ContentionRZUnlock 0 times
- 00:04:19.155064 /PDM/CritSects/MM-HYPER/ContentionR3 0 times
- 00:04:19.155067 /PDM/CritSects/MM-HYPER/ContentionRZLock 0 times
- 00:04:19.155069 /PDM/CritSects/MM-HYPER/ContentionRZUnlock 0 times
- 00:04:19.155071 /PDM/CritSects/NOP/ContentionR3 0 times
- 00:04:19.155074 /PDM/CritSects/NOP/ContentionRZLock 0 times
- 00:04:19.155076 /PDM/CritSects/NOP/ContentionRZUnlock 0 times
- 00:04:19.155079 /PDM/CritSects/OHCI#0Irq/ContentionR3 0 times
- 00:04:19.155081 /PDM/CritSects/OHCI#0Irq/ContentionRZLock 0 times
- 00:04:19.155083 /PDM/CritSects/OHCI#0Irq/ContentionRZUnlock 0 times
- 00:04:19.155086 /PDM/CritSects/PDM/ContentionR3 0 times
- 00:04:19.155088 /PDM/CritSects/PDM/ContentionRZLock 0 times
- 00:04:19.155090 /PDM/CritSects/PDM/ContentionRZUnlock 0 times
- 00:04:19.155092 /PDM/CritSects/PGM/ContentionR3 0 times
- 00:04:19.155094 /PDM/CritSects/PGM/ContentionRZLock 0 times
- 00:04:19.155098 /PDM/CritSects/PGM/ContentionRZUnlock 0 times
- 00:04:19.155101 /PDM/CritSects/TM Timer Lock/ContentionR3 0 times
- 00:04:19.155104 /PDM/CritSects/TM Timer Lock/ContentionRZLock 0 times
- 00:04:19.155106 /PDM/CritSects/TM Timer Lock/ContentionRZUnlock 0 times
- 00:04:19.155108 /PDM/CritSects/TM VirtualSync Lock/ContentionR3 0 times
- 00:04:19.155111 /PDM/CritSects/TM VirtualSync Lock/ContentionRZLock 0 times
- 00:04:19.155113 /PDM/CritSects/TM VirtualSync Lock/ContentionRZUnlock 0 times
- 00:04:19.155115 /PDM/CritSects/VGA#0/ContentionR3 0 times
- 00:04:19.155118 /PDM/CritSects/VGA#0/ContentionRZLock 0 times
- 00:04:19.155120 /PDM/CritSects/VGA#0/ContentionRZUnlock 0 times
- 00:04:19.155122 /PDM/CritSects/VGA#0_IRQ/ContentionR3 0 times
- 00:04:19.155125 /PDM/CritSects/VGA#0_IRQ/ContentionRZLock 0 times
- 00:04:19.155127 /PDM/CritSects/VGA#0_IRQ/ContentionRZUnlock 0 times
- 00:04:19.155129 /PDM/CritSects/VMMDev#0/ContentionR3 0 times
- 00:04:19.155132 /PDM/CritSects/VMMDev#0/ContentionRZLock 0 times
- 00:04:19.155134 /PDM/CritSects/VMMDev#0/ContentionRZUnlock 0 times
- 00:04:19.155136 /PDM/CritSects/acpi#0/ContentionR3 0 times
- 00:04:19.155139 /PDM/CritSects/acpi#0/ContentionRZLock 0 times
- 00:04:19.155141 /PDM/CritSects/acpi#0/ContentionRZUnlock 0 times
- 00:04:19.155144 /PDM/CritSects/mc146818#0Auto/ContentionR3 0 times
- 00:04:19.155146 /PDM/CritSects/mc146818#0Auto/ContentionRZLock 0 times
- 00:04:19.155148 /PDM/CritSects/mc146818#0Auto/ContentionRZUnlock 0 times
- 00:04:19.155150 /PDM/CritSects/pcarch#0Auto/ContentionR3 0 times
- 00:04:19.155153 /PDM/CritSects/pcarch#0Auto/ContentionRZLock 0 times
- 00:04:19.155155 /PDM/CritSects/pcarch#0Auto/ContentionRZUnlock 0 times
- 00:04:19.155158 /PDM/CritSects/pcbios#0Auto/ContentionR3 0 times
- 00:04:19.155160 /PDM/CritSects/pcbios#0Auto/ContentionRZLock 0 times
- 00:04:19.155163 /PDM/CritSects/pcbios#0Auto/ContentionRZUnlock 0 times
- 00:04:19.155165 /PDM/CritSects/pckbd#0Auto/ContentionR3 0 times
- 00:04:19.155168 /PDM/CritSects/pckbd#0Auto/ContentionRZLock 0 times
- 00:04:19.155170 /PDM/CritSects/pckbd#0Auto/ContentionRZUnlock 0 times
- 00:04:19.155173 /PDM/CritSects/pit#0/ContentionR3 0 times
- 00:04:19.155175 /PDM/CritSects/pit#0/ContentionRZLock 0 times
- 00:04:19.155177 /PDM/CritSects/pit#0/ContentionRZUnlock 0 times
- 00:04:19.155179 /PDM/CritSects/usb-ohci#0Auto/ContentionR3 0 times
- 00:04:19.155182 /PDM/CritSects/usb-ohci#0Auto/ContentionRZLock 0 times
- 00:04:19.155184 /PDM/CritSects/usb-ohci#0Auto/ContentionRZUnlock 0 times
- 00:04:19.155186 /PDM/CritSectsRw/IOM Lock/ContentionR3EnterExcl 0 times
- 00:04:19.155189 /PDM/CritSectsRw/IOM Lock/ContentionR3EnterShared 0 times
- 00:04:19.155191 /PDM/CritSectsRw/IOM Lock/ContentionRZEnterExcl 0 times
- 00:04:19.155193 /PDM/CritSectsRw/IOM Lock/ContentionRZEnterShared 0 times
- 00:04:19.155196 /PDM/CritSectsRw/IOM Lock/ContentionRZLeaveExcl 0 times
- 00:04:19.155198 /PDM/CritSectsRw/IOM Lock/ContentionRZLeaveShared 0 times
- 00:04:19.155200 /PDM/CritSectsRw/IOM Lock/R3EnterExcl 73 times
- 00:04:19.155202 /PDM/CritSectsRw/IOM Lock/R3EnterShared 499 times
- 00:04:19.155205 /PDM/CritSectsRw/IOM Lock/RZEnterExcl 0 times
- 00:04:19.155207 /PDM/CritSectsRw/IOM Lock/RZEnterShared 7170 times
- 00:04:19.155209 /PDM/Queue/DevHlp/AllocFailures 0 times
- 00:04:19.155211 /PDM/Queue/DevHlp/Flush 0 calls
- 00:04:19.155214 /PDM/Queue/DevHlp/FlushLeftovers 0 times
- 00:04:19.155216 /PDM/Queue/DevHlp/Insert 0 calls
- 00:04:19.155218 /PDM/Queue/DevHlp/cItems 8 count
- 00:04:19.155220 /PDM/Queue/DevHlp/cbItem 64 bytes
- 00:04:19.155223 /PDM/Queue/Keyboard/AllocFailures 0 times
- 00:04:19.155225 /PDM/Queue/Keyboard/Flush 0 calls
- 00:04:19.155229 /PDM/Queue/Keyboard/FlushLeftovers 0 times
- 00:04:19.155231 /PDM/Queue/Keyboard/Insert 36 calls
- 00:04:19.155233 /PDM/Queue/Keyboard/cItems 64 count
- 00:04:19.155236 /PDM/Queue/Keyboard/cbItem 32 bytes
- 00:04:19.155238 /PDM/Queue/Mouse/AllocFailures 0 times
- 00:04:19.155240 /PDM/Queue/Mouse/Flush 0 calls
- 00:04:19.155242 /PDM/Queue/Mouse/FlushLeftovers 0 times
- 00:04:19.155245 /PDM/Queue/Mouse/Insert 0 calls
- 00:04:19.155247 /PDM/Queue/Mouse/cItems 128 count
- 00:04:19.155249 /PDM/Queue/Mouse/cbItem 48 bytes
- 00:04:19.155251 /PDM/Queue/Mouse_1/AllocFailures 0 times
- 00:04:19.155254 /PDM/Queue/Mouse_1/Flush 0 calls
- 00:04:19.155256 /PDM/Queue/Mouse_1/FlushLeftovers 0 times
- 00:04:19.155258 /PDM/Queue/Mouse_1/Insert 0 calls
- 00:04:19.155261 /PDM/Queue/Mouse_1/cItems 128 count
- 00:04:19.155263 /PDM/Queue/Mouse_1/cbItem 48 bytes
- 00:04:19.155265 /PDM/Tasks/000-E1000-Xmit-retriggered 0 times
- 00:04:19.155267 /PDM/Tasks/000-E1000-Xmit-runs 0 times
- 00:04:19.155270 /PGM/CPU0/cA20Changes 1 times
- 00:04:19.155272 /PGM/CPU0/cGuestModeChanges 4 times
- 00:04:19.155274 /PGM/ChunkR3Map/Mapped 2 count
- 00:04:19.155277 /PGM/ChunkR3Map/Unmapped 0 count
- 00:04:19.155279 /PGM/ChunkR3Map/c 2 count
- 00:04:19.155281 /PGM/ChunkR3Map/cMax 4294967295 count
- 00:04:19.155284 /PGM/LargePage/Recheck 0 times
- 00:04:19.155286 /PGM/LargePage/Refused 1 times
- 00:04:19.155288 /PGM/LargePage/Reused 0 times
- 00:04:19.155291 /PGM/Mmio2QueryAndResetDirtyBitmap 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
- 00:04:19.155294 /PGM/Page/cAllPages 1054254 count
- 00:04:19.155296 /PGM/Page/cBalloonedPages 0 count
- 00:04:19.155299 /PGM/Page/cHandyPages 55 count
- 00:04:19.155301 /PGM/Page/cLargePages 0 count
- 00:04:19.155303 /PGM/Page/cLargePagesDisabled 0 count
- 00:04:19.155305 /PGM/Page/cMonitoredPages 0 count
- 00:04:19.155308 /PGM/Page/cPrivatePages 6126 count
- 00:04:19.155310 /PGM/Page/cPureMmioPages 67 count
- 00:04:19.155312 /PGM/Page/cReadLockedPages 0 count
- 00:04:19.155314 /PGM/Page/cReusedSharedPages 0 count
- 00:04:19.155316 /PGM/Page/cSharedPages 0 count
- 00:04:19.155319 /PGM/Page/cWriteLockedPages 0 count
- 00:04:19.155321 /PGM/Page/cWrittenToPages 0 count
- 00:04:19.155323 /PGM/Page/cZeroPages 1048061 count
- 00:04:19.155326 /PGM/Pool/Grow 9295512 ticks ( 9295512 ticks, 1 times, max 9295512, min 9295512)
- 00:04:19.155329 /PGM/ShMod/Check 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
- 00:04:19.155332 /PGM/cRelocations 0 times
- 00:04:19.155334 /PROF/CPU0/EM/Capped 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
- 00:04:19.155337 /PROF/CPU0/EM/ForcedActions 693 times
- 00:04:19.155339 /PROF/CPU0/EM/Halted 682 times
- 00:04:19.155341 /PROF/CPU0/EM/NEMExec 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
- 00:04:19.155344 /PROF/CPU0/EM/NEMExecuteCalled 0 times
- 00:04:19.155346 /PROF/CPU0/EM/RAWTotal 0 times
- 00:04:19.155348 /PROF/CPU0/EM/REMTotal 0 times
- 00:04:19.155351 /PROF/CPU0/EM/RecordedExits 8102 times
- 00:04:19.155353 /PROF/CPU0/EM/Total 912469087015 ticks/call (912469087015 ticks, 1 times, max 912469087015, min 912469087015)
- 00:04:19.155357 /PROF/CPU0/VM/Halt/Block 4872008 ns/call (250523556512 ticks, 51421 times, max 56124497, min 1)
- 00:04:19.155360 /PROF/CPU0/VM/Halt/BlockInsomnia 475136 ns/call ( 21282335598 ticks, 44792 times, max 54862646, min 1)
- 00:04:19.155364 /PROF/CPU0/VM/Halt/BlockOnTime 19286600 ns/call ( 12169845162 ticks, 631 times, max 54965889, min 688)
- 00:04:19.155368 /PROF/CPU0/VM/Halt/BlockOverslept 552126 ns/call ( 3311656387 ticks, 5998 times, max 1207747, min 50115)
- 00:04:19.155372 /PROF/CPU0/VM/Halt/R0HaltBlock 14670128 ns/call ( 2317880340 ticks, 158 times, max 16553598, min 76789)
- 00:04:19.155375 /PROF/CPU0/VM/Halt/R0HaltBlockInsomnia 13400189 ns/call ( 562807957 ticks, 42 times, max 15517875, min 76789)
- 00:04:19.155378 /PROF/CPU0/VM/Halt/R0HaltBlockOnTime 15243900 ns/call ( 670731624 ticks, 44 times, max 15637257, min 13353817)
- 00:04:19.155381 /PROF/CPU0/VM/Halt/R0HaltBlockOverslept 528902 ns/call ( 38080964 ticks, 72 times, max 981669, min 54443)
- 00:04:19.155384 /PROF/CPU0/VM/Halt/R0HaltExec 0 times
- 00:04:19.155386 /PROF/CPU0/VM/Halt/R0HaltExec/FromBlock 0 times
- 00:04:19.155389 /PROF/CPU0/VM/Halt/R0HaltExec/FromSpin 0 times
- 00:04:19.155391 /PROF/CPU0/VM/Halt/R0HaltHistoryCounter 159 times
- 00:04:19.155393 /PROF/CPU0/VM/Halt/R0HaltHistorySucceeded 0 times
- 00:04:19.155395 /PROF/CPU0/VM/Halt/R0HaltHistoryToRing3 159 times
- 00:04:19.155398 /PROF/CPU0/VM/Halt/R0HaltToR3 159 times
- 00:04:19.155400 /PROF/CPU0/VM/Halt/R0HaltToR3/FromSpin 0 times
- 00:04:19.155402 /PROF/CPU0/VM/Halt/R0HaltToR3/Other 1 times
- 00:04:19.155404 /PROF/CPU0/VM/Halt/R0HaltToR3/PendingFF 0 times
- 00:04:19.155406 /PROF/CPU0/VM/Halt/R0HaltToR3/PostWaitNoInt 151 times
- 00:04:19.155409 /PROF/CPU0/VM/Halt/R0HaltToR3/PostWaitPendingFF 7 times
- 00:04:19.155411 /PROF/CPU0/VM/Halt/R0HaltToR3/SmallDelta 0 times
- 00:04:19.155413 /PROF/CPU0/VM/Halt/Timers 3716 ns/call ( 283162023 ticks, 76187 times, max 12908685, min 2)
- 00:04:19.155416 /PROF/CPU0/VM/Halt/Yield 10367 ns/call ( 72575 ticks, 7 times, max 13575, min 7022)
- 00:04:19.155420 /Public/NetAdapter/0/BytesReceived 0 bytes
- 00:04:19.155422 /Public/NetAdapter/0/BytesTransmitted 0 bytes
- 00:04:19.155424 /Public/NetAdapter/0/e1000 0
- 00:04:19.155426 /Public/Storage/PIIX3IDE0/Port0/BytesRead 512 bytes
- 00:04:19.155429 /Public/Storage/PIIX3IDE0/Port0/QueryBufAttempts 0 count
- 00:04:19.155431 /Public/Storage/PIIX3IDE0/Port0/QueryBufSuccess 0 count
- 00:04:19.155433 /Public/Storage/PIIX3IDE0/Port0/ReqsRead 1 count
- 00:04:19.155436 /Public/Storage/PIIX3IDE0/Port0/ReqsSubmitted 1 count
- 00:04:19.155438 /Public/Storage/PIIX3IDE0/Port0/ReqsSucceeded 1 count
- 00:04:19.155440 /Public/Storage/PIIX3IDE0/Port2/QueryBufAttempts 0 count
- 00:04:19.155443 /Public/Storage/PIIX3IDE0/Port2/QueryBufSuccess 0 count
- 00:04:19.155445 /SELM/LoadHidSel/GstReadErrors 0 times
- 00:04:19.155448 /SELM/LoadHidSel/NoGoodGuest 0 times
- 00:04:19.155450 /TM/CPU/00/cNsExecuting 6706944 ns
- 00:04:19.155453 /TM/CPU/00/cNsHalted 250838077427 ns
- 00:04:19.155456 /TM/CPU/00/cNsOther 2618788842 ns
- 00:04:19.155458 /TM/CPU/00/cNsTotal 253463573213 ns
- 00:04:19.155461 /TM/CPU/00/cPeriodsExecuting 8102 count
- 00:04:19.155463 /TM/CPU/00/cPeriodsHalted 682 count
- 00:04:19.155465 /TM/CPU/00/pctExecuting 0 %
- 00:04:19.155468 /TM/CPU/00/pctHalted 99 %
- 00:04:19.155470 /TM/CPU/00/pctOther 0 %
- 00:04:19.155472 /TM/CPU/pctExecuting 0 %
- 00:04:19.155474 /TM/CPU/pctHalted 99 %
- 00:04:19.155476 /TM/CPU/pctOther 0 %
- 00:04:19.155479 /TM/MaxHzHint 0 Hz
- 00:04:19.155481 /TM/PIT/Handler 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
- 00:04:19.155484 /TM/PIT/Irq 0 times
- 00:04:19.155487 /TM/R3/1nsSteps 2243 times
- 00:04:19.155490 /TM/TSC/offCPU0 0 ticks
- 00:04:19.155493 /TM/VirtualSync/CurrentOffset 0 ns
- 00:04:19.155496 /VUSB/0/cUrbsInPool 0 count
- 00:04:19.155499 ********************* End of statistics **********************
- 00:04:19.155601 VUSB: Detached 'HidMouse' from port 1 on RootHub#0
- 00:04:19.158897 NAT: Zone(nm:mbuf_cluster, used:0)
- 00:04:19.159369 NAT: Zone(nm:mbuf_packet, used:0)
- 00:04:19.159375 NAT: Zone(nm:mbuf, used:0)
- 00:04:19.159626 NAT: Zone(nm:mbuf_jumbo_pagesize, used:0)
- 00:04:19.160098 NAT: Zone(nm:mbuf_jumbo_9k, used:0)
- 00:04:19.160425 NAT: Zone(nm:mbuf_jumbo_16k, used:0)
- 00:04:19.160595 NAT: Zone(nm:mbuf_ext_refcnt, used:0)
- 00:04:19.160680 E1000#0: Interrupt attempts: 0
- 00:04:19.160689 E1000#0: Interrupts raised : 0
- 00:04:19.160691 E1000#0: Interrupts lowered: 0
- 00:04:19.160693 E1000#0: ICR outside ISR : 0
- 00:04:19.160695 E1000#0: IMS raised ints : 0
- 00:04:19.160698 E1000#0: Interrupts skipped: 0
- 00:04:19.160700 E1000#0: Masked interrupts : 0
- 00:04:19.160702 E1000#0: Early interrupts : 0
- 00:04:19.160704 E1000#0: Late interrupts : 0
- 00:04:19.160706 E1000#0: Lost interrupts : 0
- 00:04:19.160708 E1000#0: Interrupts by RX : 0
- 00:04:19.160710 E1000#0: Interrupts by TX : 0
- 00:04:19.160712 E1000#0: Interrupts by ICS : 0
- 00:04:19.160715 E1000#0: Interrupts by RDTR: 0
- 00:04:19.160717 E1000#0: Interrupts by RDMT: 0
- 00:04:19.160719 E1000#0: Interrupts by TXQE: 0
- 00:04:19.160721 E1000#0: TX int delay asked: 0
- 00:04:19.160723 E1000#0: TX delayed: 0
- 00:04:19.160725 E1000#0: TX delay expired: 0
- 00:04:19.160728 E1000#0: TX no report asked: 0
- 00:04:19.160730 E1000#0: TX abs timer expd : 0
- 00:04:19.160732 E1000#0: TX int timer expd : 0
- 00:04:19.160734 E1000#0: RX abs timer expd : 0
- 00:04:19.160788 E1000#0: RX int timer expd : 0
- 00:04:19.160794 E1000#0: TX CTX descriptors: 0
- 00:04:19.160796 E1000#0: TX DAT descriptors: 0
- 00:04:19.160799 E1000#0: TX LEG descriptors: 0
- 00:04:19.160823 E1000#0: Received frames : 0
- 00:04:19.160826 E1000#0: Transmitted frames: 0
- 00:04:19.160828 E1000#0: TX frames up to 1514: 0
- 00:04:19.160830 E1000#0: TX frames up to 2962: 0
- 00:04:19.160832 E1000#0: TX frames up to 4410: 0
- 00:04:19.160834 E1000#0: TX frames up to 5858: 0
- 00:04:19.160836 E1000#0: TX frames up to 7306: 0
- 00:04:19.160843 E1000#0: TX frames up to 8754: 0
- 00:04:19.160846 E1000#0: TX frames up to 16384: 0
- 00:04:19.160848 E1000#0: TX frames up to 32768: 0
- 00:04:19.160850 E1000#0: Larger TX frames : 0
- 00:04:19.160852 E1000#0: Max TX Delay : 0
- 00:04:19.161847 GIM: KVM: Resetting MSRs
- 00:04:19.163968 Changing the VM state from 'DESTROYING' to 'TERMINATED'
- 00:04:19.164853 Console: Machine state changed to 'PoweredOff'
- 00:04:19.717083 GUI: Passing request to close Runtime UI from machine-logic to UI session.
|