VBox.log.3 129 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040
  1. 00:00:03.120862 VirtualBox VM 6.1.38 r153438 win.amd64 (Sep 1 2022 14:20:23) release log
  2. 00:00:03.120867 Log opened 2022-09-07T12:54:47.951017000Z
  3. 00:00:03.120867 Build Type: release
  4. 00:00:03.120869 OS Product: Windows 10
  5. 00:00:03.120870 OS Release: 10.0.19044
  6. 00:00:03.120870 OS Service Pack:
  7. 00:00:03.184192 DMI Product Name: ONDA H310S
  8. 00:00:03.188013 DMI Product Version: 1.00
  9. 00:00:03.188025 Firmware type: BIOS
  10. 00:00:03.188029 Host RAM: 16233MB (15.8GB) total, 5809MB (5.6GB) available
  11. 00:00:03.188031 Executable: D:\virtualbox\VirtualBoxVM.exe
  12. 00:00:03.188032 Process ID: 11960
  13. 00:00:03.188032 Package type: WINDOWS_64BITS_GENERIC
  14. 00:00:03.189021 Installed Extension Packs:
  15. 00:00:03.189048 None installed!
  16. 00:00:03.189823 Console: Machine state changed to 'Starting'
  17. 00:00:03.189951 Qt version: 5.6.2
  18. 00:00:03.191434 GUI: UIMediumEnumerator: Medium-enumeration finished!
  19. 00:00:03.340730 SUP: seg #0: R 0x00000000 LB 0x00001000
  20. 00:00:03.340741 SUP: seg #1: R X 0x00001000 LB 0x00109000
  21. 00:00:03.340744 SUP: seg #2: R 0x0010a000 LB 0x0004a000
  22. 00:00:03.340747 SUP: seg #3: RW 0x00154000 LB 0x00013000
  23. 00:00:03.340749 SUP: seg #4: R 0x00167000 LB 0x0000e000
  24. 00:00:03.340751 SUP: seg #5: RW 0x00175000 LB 0x00003000
  25. 00:00:03.340754 SUP: seg #6: R 0x00178000 LB 0x0000b000
  26. 00:00:03.340756 SUP: seg #7: RWX 0x00183000 LB 0x00002000
  27. 00:00:03.340758 SUP: seg #8: R 0x00185000 LB 0x00007000
  28. 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
  29. 00:00:03.341373 SUP: VMMR0EntryEx located at XXXXXXXXXXXXXXXX and VMMR0EntryFast at XXXXXXXXXXXXXXXX
  30. 00:00:03.341376 SUP: windbg> .reload /f D:\virtualbox\VMMR0.r0=0xXXXXXXXXXXXXXXXX
  31. 00:00:03.342200 Guest OS type: 'Linux_64'
  32. 00:00:03.342838 fHMForced=true - No raw-mode support in this build!
  33. 00:00:03.345046 File system of 'D:\gitOptions\zz-adminStudy\tang\Snapshots' (snapshots) is unknown
  34. 00:00:03.345054 File system of 'D:\gitOptions\zz-adminStudy\tang\tang.vdi' is ntfs
  35. 00:00:03.362345 Shared Clipboard: Service loaded
  36. 00:00:03.362353 Shared Clipboard: Mode: Off
  37. 00:00:03.362577 Shared Clipboard: Service running in normal mode
  38. 00:00:03.374673 Drag and drop service loaded
  39. 00:00:03.374682 Drag and drop mode: Off
  40. 00:00:03.375785 ************************* CFGM dump *************************
  41. 00:00:03.375786 [/] (level 0)
  42. 00:00:03.375788 CpuExecutionCap <integer> = 0x0000000000000064 (100)
  43. 00:00:03.375789 EnablePAE <integer> = 0x0000000000000001 (1)
  44. 00:00:03.375790 HMEnabled <integer> = 0x0000000000000001 (1)
  45. 00:00:03.375791 MemBalloonSize <integer> = 0x0000000000000000 (0)
  46. 00:00:03.375792 Name <string> = "tang" (cb=5)
  47. 00:00:03.375792 NumCPUs <integer> = 0x0000000000000001 (1)
  48. 00:00:03.375793 PageFusionAllowed <integer> = 0x0000000000000000 (0)
  49. 00:00:03.375794 RamHoleSize <integer> = 0x0000000020000000 (536 870 912, 512 MB)
  50. 00:00:03.375795 RamSize <integer> = 0x0000000100000000 (4 294 967 296, 4 096 MB, 4.0 GB)
  51. 00:00:03.375797 TimerMillies <integer> = 0x000000000000000a (10)
  52. 00:00:03.375798 UUID <bytes> = "dc 52 66 3f f2 6e 81 43 bc c0 ae 37 42 59 c3 34" (cb=16)
  53. 00:00:03.375805
  54. 00:00:03.375805 [/CPUM/] (level 1)
  55. 00:00:03.375806 GuestCpuName <string> = "host" (cb=5)
  56. 00:00:03.375807 NestedHWVirt <integer> = 0x0000000000000000 (0)
  57. 00:00:03.375809 PortableCpuIdLevel <integer> = 0x0000000000000000 (0)
  58. 00:00:03.375810 SpecCtrl <integer> = 0x0000000000000000 (0)
  59. 00:00:03.375810
  60. 00:00:03.375810 [/CPUM/IsaExts/] (level 2)
  61. 00:00:03.375811
  62. 00:00:03.375811 [/DBGC/] (level 1)
  63. 00:00:03.375812 GlobalInitScript <string> = "C:\Users\zzzzz\.VirtualBox/dbgc-init" (cb=37)
  64. 00:00:03.375813 HistoryFile <string> = "C:\Users\zzzzz\.VirtualBox/dbgc-history" (cb=40)
  65. 00:00:03.375813 LocalInitScript <string> = "D:\gitOptions\zz-adminStudy\tang/dbgc-init" (cb=43)
  66. 00:00:03.375814
  67. 00:00:03.375814 [/DBGF/] (level 1)
  68. 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)
  69. 00:00:03.375816
  70. 00:00:03.375816 [/Devices/] (level 1)
  71. 00:00:03.375816
  72. 00:00:03.375817 [/Devices/8237A/] (level 2)
  73. 00:00:03.375817
  74. 00:00:03.375817 [/Devices/8237A/0/] (level 3)
  75. 00:00:03.375818 Trusted <integer> = 0x0000000000000001 (1)
  76. 00:00:03.375819
  77. 00:00:03.375819 [/Devices/GIMDev/] (level 2)
  78. 00:00:03.375820
  79. 00:00:03.375820 [/Devices/GIMDev/0/] (level 3)
  80. 00:00:03.375820 Trusted <integer> = 0x0000000000000001 (1)
  81. 00:00:03.375821
  82. 00:00:03.375821 [/Devices/VMMDev/] (level 2)
  83. 00:00:03.375822
  84. 00:00:03.375822 [/Devices/VMMDev/0/] (level 3)
  85. 00:00:03.375823 PCIBusNo <integer> = 0x0000000000000000 (0)
  86. 00:00:03.375823 PCIDeviceNo <integer> = 0x0000000000000004 (4)
  87. 00:00:03.375824 PCIFunctionNo <integer> = 0x0000000000000000 (0)
  88. 00:00:03.375824 Trusted <integer> = 0x0000000000000001 (1)
  89. 00:00:03.375825
  90. 00:00:03.375825 [/Devices/VMMDev/0/Config/] (level 4)
  91. 00:00:03.375826 GuestCoreDumpDir <string> = "D:\gitOptions\zz-adminStudy\tang\Snapshots" (cb=43)
  92. 00:00:03.375826
  93. 00:00:03.375827 [/Devices/VMMDev/0/LUN#0/] (level 4)
  94. 00:00:03.375827 Driver <string> = "HGCM" (cb=5)
  95. 00:00:03.375828
  96. 00:00:03.375828 [/Devices/VMMDev/0/LUN#0/Config/] (level 5)
  97. 00:00:03.375829 Object <integer> = 0x0000000008dff2c0 (148 894 400)
  98. 00:00:03.375830
  99. 00:00:03.375830 [/Devices/VMMDev/0/LUN#999/] (level 4)
  100. 00:00:03.375831 Driver <string> = "MainStatus" (cb=11)
  101. 00:00:03.375831
  102. 00:00:03.375831 [/Devices/VMMDev/0/LUN#999/Config/] (level 5)
  103. 00:00:03.375832 First <integer> = 0x0000000000000000 (0)
  104. 00:00:03.375833 Last <integer> = 0x0000000000000000 (0)
  105. 00:00:03.375833 papLeds <integer> = 0x0000000001cc6be8 (30 174 184)
  106. 00:00:03.375834
  107. 00:00:03.375834 [/Devices/acpi/] (level 2)
  108. 00:00:03.375835
  109. 00:00:03.375835 [/Devices/acpi/0/] (level 3)
  110. 00:00:03.375836 PCIBusNo <integer> = 0x0000000000000000 (0)
  111. 00:00:03.375836 PCIDeviceNo <integer> = 0x0000000000000007 (7)
  112. 00:00:03.375837 PCIFunctionNo <integer> = 0x0000000000000000 (0)
  113. 00:00:03.375837 Trusted <integer> = 0x0000000000000001 (1)
  114. 00:00:03.375838
  115. 00:00:03.375838 [/Devices/acpi/0/Config/] (level 4)
  116. 00:00:03.375839 CpuHotPlug <integer> = 0x0000000000000000 (0)
  117. 00:00:03.375840 FdcEnabled <integer> = 0x0000000000000000 (0)
  118. 00:00:03.375840 HostBusPciAddress <integer> = 0x0000000000000000 (0)
  119. 00:00:03.375841 HpetEnabled <integer> = 0x0000000000000000 (0)
  120. 00:00:03.375841 IOAPIC <integer> = 0x0000000000000001 (1)
  121. 00:00:03.375842 IocPciAddress <integer> = 0x0000000000010000 (65 536)
  122. 00:00:03.375843 NumCPUs <integer> = 0x0000000000000001 (1)
  123. 00:00:03.375843 Parallel0IoPortBase <integer> = 0x0000000000000000 (0)
  124. 00:00:03.375844 Parallel0Irq <integer> = 0x0000000000000000 (0)
  125. 00:00:03.375844 Parallel1IoPortBase <integer> = 0x0000000000000000 (0)
  126. 00:00:03.375845 Parallel1Irq <integer> = 0x0000000000000000 (0)
  127. 00:00:03.375845 Serial0IoPortBase <integer> = 0x0000000000000000 (0)
  128. 00:00:03.375846 Serial0Irq <integer> = 0x0000000000000000 (0)
  129. 00:00:03.375846 Serial1IoPortBase <integer> = 0x0000000000000000 (0)
  130. 00:00:03.375847 Serial1Irq <integer> = 0x0000000000000000 (0)
  131. 00:00:03.375847 ShowCpu <integer> = 0x0000000000000001 (1)
  132. 00:00:03.375848 ShowRtc <integer> = 0x0000000000000000 (0)
  133. 00:00:03.375848 SmcEnabled <integer> = 0x0000000000000000 (0)
  134. 00:00:03.375849
  135. 00:00:03.375849 [/Devices/acpi/0/LUN#0/] (level 4)
  136. 00:00:03.375850 Driver <string> = "ACPIHost" (cb=9)
  137. 00:00:03.375850
  138. 00:00:03.375850 [/Devices/acpi/0/LUN#0/Config/] (level 5)
  139. 00:00:03.375851
  140. 00:00:03.375851 [/Devices/apic/] (level 2)
  141. 00:00:03.375852
  142. 00:00:03.375852 [/Devices/apic/0/] (level 3)
  143. 00:00:03.375853 Trusted <integer> = 0x0000000000000001 (1)
  144. 00:00:03.375853
  145. 00:00:03.375854 [/Devices/apic/0/Config/] (level 4)
  146. 00:00:03.375855 IOAPIC <integer> = 0x0000000000000001 (1)
  147. 00:00:03.375855 Mode <integer> = 0x0000000000000003 (3)
  148. 00:00:03.375856 NumCPUs <integer> = 0x0000000000000001 (1)
  149. 00:00:03.375856
  150. 00:00:03.375856 [/Devices/e1000/] (level 2)
  151. 00:00:03.375857
  152. 00:00:03.375857 [/Devices/e1000/0/] (level 3)
  153. 00:00:03.375858 PCIBusNo <integer> = 0x0000000000000000 (0)
  154. 00:00:03.375858 PCIDeviceNo <integer> = 0x0000000000000003 (3)
  155. 00:00:03.375859 PCIFunctionNo <integer> = 0x0000000000000000 (0)
  156. 00:00:03.375859 Trusted <integer> = 0x0000000000000001 (1)
  157. 00:00:03.375860
  158. 00:00:03.375860 [/Devices/e1000/0/Config/] (level 4)
  159. 00:00:03.375861 AdapterType <integer> = 0x0000000000000000 (0)
  160. 00:00:03.375862 CableConnected <integer> = 0x0000000000000001 (1)
  161. 00:00:03.375862 LineSpeed <integer> = 0x0000000000000000 (0)
  162. 00:00:03.375863 MAC <bytes> = "08 00 27 5c 65 d0" (cb=6)
  163. 00:00:03.375864
  164. 00:00:03.375864 [/Devices/e1000/0/LUN#0/] (level 4)
  165. 00:00:03.375865 Driver <string> = "NAT" (cb=4)
  166. 00:00:03.375865
  167. 00:00:03.375865 [/Devices/e1000/0/LUN#0/Config/] (level 5)
  168. 00:00:03.375866 AliasMode <integer> = 0x0000000000000000 (0)
  169. 00:00:03.375867 BootFile <string> = "tang.pxe" (cb=9)
  170. 00:00:03.375867 DNSProxy <integer> = 0x0000000000000000 (0)
  171. 00:00:03.375868 Network <string> = "10.0.2.0/24" (cb=12)
  172. 00:00:03.375868 PassDomain <integer> = 0x0000000000000001 (1)
  173. 00:00:03.375869 TFTPPrefix <string> = "C:\Users\zzzzz\.VirtualBox\TFTP" (cb=32)
  174. 00:00:03.375869 UseHostResolver <integer> = 0x0000000000000000 (0)
  175. 00:00:03.375870
  176. 00:00:03.375870 [/Devices/e1000/0/LUN#999/] (level 4)
  177. 00:00:03.375871 Driver <string> = "MainStatus" (cb=11)
  178. 00:00:03.375871
  179. 00:00:03.375871 [/Devices/e1000/0/LUN#999/Config/] (level 5)
  180. 00:00:03.375872 First <integer> = 0x0000000000000000 (0)
  181. 00:00:03.375873 Last <integer> = 0x0000000000000000 (0)
  182. 00:00:03.375873 papLeds <integer> = 0x0000000001cc6ac8 (30 173 896)
  183. 00:00:03.375874
  184. 00:00:03.375874 [/Devices/i8254/] (level 2)
  185. 00:00:03.375875
  186. 00:00:03.375875 [/Devices/i8254/0/] (level 3)
  187. 00:00:03.375876
  188. 00:00:03.375876 [/Devices/i8254/0/Config/] (level 4)
  189. 00:00:03.375877
  190. 00:00:03.375877 [/Devices/i8259/] (level 2)
  191. 00:00:03.375877
  192. 00:00:03.375877 [/Devices/i8259/0/] (level 3)
  193. 00:00:03.375878 Trusted <integer> = 0x0000000000000001 (1)
  194. 00:00:03.375879
  195. 00:00:03.375879 [/Devices/i8259/0/Config/] (level 4)
  196. 00:00:03.375880
  197. 00:00:03.375880 [/Devices/ichac97/] (level 2)
  198. 00:00:03.375880
  199. 00:00:03.375880 [/Devices/ichac97/0/] (level 3)
  200. 00:00:03.375881 PCIBusNo <integer> = 0x0000000000000000 (0)
  201. 00:00:03.375882 PCIDeviceNo <integer> = 0x0000000000000005 (5)
  202. 00:00:03.375882 PCIFunctionNo <integer> = 0x0000000000000000 (0)
  203. 00:00:03.375882 Trusted <integer> = 0x0000000000000001 (1)
  204. 00:00:03.375883
  205. 00:00:03.375883 [/Devices/ichac97/0/AudioConfig/] (level 4)
  206. 00:00:03.375884
  207. 00:00:03.375884 [/Devices/ichac97/0/Config/] (level 4)
  208. 00:00:03.375885 Codec <string> = "STAC9700" (cb=9)
  209. 00:00:03.375885 DebugEnabled <integer> = 0x0000000000000000 (0)
  210. 00:00:03.375886
  211. 00:00:03.375886 [/Devices/ichac97/0/LUN#0/] (level 4)
  212. 00:00:03.375887 Driver <string> = "AUDIO" (cb=6)
  213. 00:00:03.375887
  214. 00:00:03.375887 [/Devices/ichac97/0/LUN#0/AttachedDriver/] (level 5)
  215. 00:00:03.375888 Driver <string> = "HostAudioWas" (cb=13)
  216. 00:00:03.375889
  217. 00:00:03.375889 [/Devices/ichac97/0/LUN#0/AttachedDriver/Config/] (level 6)
  218. 00:00:03.375890 VmName <string> = "tang" (cb=5)
  219. 00:00:03.375890 VmUuid <string> = "3f6652dc-6ef2-4381-bcc0-ae374259c334" (cb=37)
  220. 00:00:03.375891
  221. 00:00:03.375891 [/Devices/ichac97/0/LUN#0/Config/] (level 5)
  222. 00:00:03.375892 DriverName <string> = "HostAudioWas" (cb=13)
  223. 00:00:03.375892 InputEnabled <integer> = 0x0000000000000000 (0)
  224. 00:00:03.375893 OutputEnabled <integer> = 0x0000000000000001 (1)
  225. 00:00:03.375893
  226. 00:00:03.375893 [/Devices/ichac97/0/LUN#1/] (level 4)
  227. 00:00:03.375894 Driver <string> = "AUDIO" (cb=6)
  228. 00:00:03.375895
  229. 00:00:03.375895 [/Devices/ichac97/0/LUN#2/] (level 4)
  230. 00:00:03.375896 Driver <string> = "AUDIO" (cb=6)
  231. 00:00:03.375896
  232. 00:00:03.375896 [/Devices/ioapic/] (level 2)
  233. 00:00:03.375897
  234. 00:00:03.375897 [/Devices/ioapic/0/] (level 3)
  235. 00:00:03.375897 Trusted <integer> = 0x0000000000000001 (1)
  236. 00:00:03.375898
  237. 00:00:03.375898 [/Devices/ioapic/0/Config/] (level 4)
  238. 00:00:03.375899 NumCPUs <integer> = 0x0000000000000001 (1)
  239. 00:00:03.375899
  240. 00:00:03.375899 [/Devices/mc146818/] (level 2)
  241. 00:00:03.375900
  242. 00:00:03.375900 [/Devices/mc146818/0/] (level 3)
  243. 00:00:03.375901
  244. 00:00:03.375901 [/Devices/mc146818/0/Config/] (level 4)
  245. 00:00:03.375902 UseUTC <integer> = 0x0000000000000001 (1)
  246. 00:00:03.375902
  247. 00:00:03.375902 [/Devices/parallel/] (level 2)
  248. 00:00:03.375903
  249. 00:00:03.375903 [/Devices/pcarch/] (level 2)
  250. 00:00:03.375904
  251. 00:00:03.375904 [/Devices/pcarch/0/] (level 3)
  252. 00:00:03.375904 Trusted <integer> = 0x0000000000000001 (1)
  253. 00:00:03.375905
  254. 00:00:03.375905 [/Devices/pcarch/0/Config/] (level 4)
  255. 00:00:03.375906
  256. 00:00:03.375906 [/Devices/pcbios/] (level 2)
  257. 00:00:03.375906
  258. 00:00:03.375907 [/Devices/pcbios/0/] (level 3)
  259. 00:00:03.375907 Trusted <integer> = 0x0000000000000001 (1)
  260. 00:00:03.375908
  261. 00:00:03.375908 [/Devices/pcbios/0/Config/] (level 4)
  262. 00:00:03.375909 APIC <integer> = 0x0000000000000001 (1)
  263. 00:00:03.375909 BootDevice0 <string> = "FLOPPY" (cb=7)
  264. 00:00:03.375910 BootDevice1 <string> = "DVD" (cb=4)
  265. 00:00:03.375910 BootDevice2 <string> = "IDE" (cb=4)
  266. 00:00:03.375911 BootDevice3 <string> = "NONE" (cb=5)
  267. 00:00:03.375911 FloppyDevice <string> = "i82078" (cb=7)
  268. 00:00:03.375912 HardDiskDevice <string> = "piix3ide" (cb=9)
  269. 00:00:03.375912 IOAPIC <integer> = 0x0000000000000001 (1)
  270. 00:00:03.375913 McfgBase <integer> = 0x0000000000000000 (0)
  271. 00:00:03.375913 McfgLength <integer> = 0x0000000000000000 (0)
  272. 00:00:03.375914 NumCPUs <integer> = 0x0000000000000001 (1)
  273. 00:00:03.375914 PXEDebug <integer> = 0x0000000000000000 (0)
  274. 00:00:03.375915 UUID <bytes> = "dc 52 66 3f f2 6e 81 43 bc c0 ae 37 42 59 c3 34" (cb=16)
  275. 00:00:03.375916 UuidLe <integer> = 0x0000000000000001 (1)
  276. 00:00:03.375917
  277. 00:00:03.375917 [/Devices/pcbios/0/Config/NetBoot/] (level 5)
  278. 00:00:03.375917
  279. 00:00:03.375918 [/Devices/pcbios/0/Config/NetBoot/0/] (level 6)
  280. 00:00:03.375919 NIC <integer> = 0x0000000000000000 (0)
  281. 00:00:03.375919 PCIBusNo <integer> = 0x0000000000000000 (0)
  282. 00:00:03.375920 PCIDeviceNo <integer> = 0x0000000000000003 (3)
  283. 00:00:03.375920 PCIFunctionNo <integer> = 0x0000000000000000 (0)
  284. 00:00:03.375921
  285. 00:00:03.375921 [/Devices/pci/] (level 2)
  286. 00:00:03.375922
  287. 00:00:03.375922 [/Devices/pci/0/] (level 3)
  288. 00:00:03.375922 Trusted <integer> = 0x0000000000000001 (1)
  289. 00:00:03.375923
  290. 00:00:03.375923 [/Devices/pci/0/Config/] (level 4)
  291. 00:00:03.375924 IOAPIC <integer> = 0x0000000000000001 (1)
  292. 00:00:03.375924
  293. 00:00:03.375924 [/Devices/pcibridge/] (level 2)
  294. 00:00:03.375925
  295. 00:00:03.375925 [/Devices/pckbd/] (level 2)
  296. 00:00:03.375926
  297. 00:00:03.375926 [/Devices/pckbd/0/] (level 3)
  298. 00:00:03.375926 Trusted <integer> = 0x0000000000000001 (1)
  299. 00:00:03.375927
  300. 00:00:03.375927 [/Devices/pckbd/0/Config/] (level 4)
  301. 00:00:03.375928
  302. 00:00:03.375928 [/Devices/pckbd/0/LUN#0/] (level 4)
  303. 00:00:03.375928 Driver <string> = "KeyboardQueue" (cb=14)
  304. 00:00:03.375929
  305. 00:00:03.375929 [/Devices/pckbd/0/LUN#0/AttachedDriver/] (level 5)
  306. 00:00:03.375930 Driver <string> = "MainKeyboard" (cb=13)
  307. 00:00:03.375930
  308. 00:00:03.375931 [/Devices/pckbd/0/LUN#0/AttachedDriver/Config/] (level 6)
  309. 00:00:03.375932 Object <integer> = 0x0000000001c1fc00 (29 490 176)
  310. 00:00:03.375932
  311. 00:00:03.375933 [/Devices/pckbd/0/LUN#0/Config/] (level 5)
  312. 00:00:03.375933 QueueSize <integer> = 0x0000000000000040 (64)
  313. 00:00:03.375934
  314. 00:00:03.375934 [/Devices/pckbd/0/LUN#1/] (level 4)
  315. 00:00:03.375935 Driver <string> = "MouseQueue" (cb=11)
  316. 00:00:03.375935
  317. 00:00:03.375935 [/Devices/pckbd/0/LUN#1/AttachedDriver/] (level 5)
  318. 00:00:03.375936 Driver <string> = "MainMouse" (cb=10)
  319. 00:00:03.375937
  320. 00:00:03.375937 [/Devices/pckbd/0/LUN#1/AttachedDriver/Config/] (level 6)
  321. 00:00:03.375938 Object <integer> = 0x0000000001c1d2b0 (29 479 600)
  322. 00:00:03.375939
  323. 00:00:03.375939 [/Devices/pckbd/0/LUN#1/Config/] (level 5)
  324. 00:00:03.375939 QueueSize <integer> = 0x0000000000000080 (128)
  325. 00:00:03.375940
  326. 00:00:03.375940 [/Devices/pcnet/] (level 2)
  327. 00:00:03.375941
  328. 00:00:03.375941 [/Devices/piix3ide/] (level 2)
  329. 00:00:03.375942
  330. 00:00:03.375942 [/Devices/piix3ide/0/] (level 3)
  331. 00:00:03.375942 PCIBusNo <integer> = 0x0000000000000000 (0)
  332. 00:00:03.375943 PCIDeviceNo <integer> = 0x0000000000000001 (1)
  333. 00:00:03.375943 PCIFunctionNo <integer> = 0x0000000000000001 (1)
  334. 00:00:03.375944 Trusted <integer> = 0x0000000000000001 (1)
  335. 00:00:03.375944
  336. 00:00:03.375944 [/Devices/piix3ide/0/Config/] (level 4)
  337. 00:00:03.375945 Type <string> = "PIIX4" (cb=6)
  338. 00:00:03.375946
  339. 00:00:03.375946 [/Devices/piix3ide/0/LUN#0/] (level 4)
  340. 00:00:03.375946 Driver <string> = "VD" (cb=3)
  341. 00:00:03.375947
  342. 00:00:03.375947 [/Devices/piix3ide/0/LUN#0/Config/] (level 5)
  343. 00:00:03.375948 Format <string> = "VDI" (cb=4)
  344. 00:00:03.375948 Mountable <integer> = 0x0000000000000000 (0)
  345. 00:00:03.375949 Path <string> = "D:\gitOptions\zz-adminStudy\tang\tang.vdi" (cb=42)
  346. 00:00:03.375949 Type <string> = "HardDisk" (cb=9)
  347. 00:00:03.375950
  348. 00:00:03.375950 [/Devices/piix3ide/0/LUN#0/Config/VDConfig/] (level 6)
  349. 00:00:03.375951 AllocationBlockSize <string> = "1048576" (cb=8)
  350. 00:00:03.375951
  351. 00:00:03.375951 [/Devices/piix3ide/0/LUN#2/] (level 4)
  352. 00:00:03.375952 Driver <string> = "VD" (cb=3)
  353. 00:00:03.375952
  354. 00:00:03.375953 [/Devices/piix3ide/0/LUN#2/Config/] (level 5)
  355. 00:00:03.375953 EmptyDrive <integer> = 0x0000000000000001 (1)
  356. 00:00:03.375954 Mountable <integer> = 0x0000000000000001 (1)
  357. 00:00:03.375954 Type <string> = "DVD" (cb=4)
  358. 00:00:03.375955
  359. 00:00:03.375955 [/Devices/piix3ide/0/LUN#999/] (level 4)
  360. 00:00:03.375956 Driver <string> = "MainStatus" (cb=11)
  361. 00:00:03.375956
  362. 00:00:03.375956 [/Devices/piix3ide/0/LUN#999/Config/] (level 5)
  363. 00:00:03.375957 DeviceInstance <string> = "piix3ide/0" (cb=11)
  364. 00:00:03.375958 First <integer> = 0x0000000000000000 (0)
  365. 00:00:03.375958 Last <integer> = 0x0000000000000003 (3)
  366. 00:00:03.375959 pConsole <integer> = 0x0000000001cc57f0 (30 169 072)
  367. 00:00:03.375960 papLeds <integer> = 0x0000000001cc5fd0 (30 171 088)
  368. 00:00:03.375960 pmapMediumAttachments <integer> = 0x0000000001cc6c08 (30 174 216)
  369. 00:00:03.375961
  370. 00:00:03.375961 [/Devices/serial/] (level 2)
  371. 00:00:03.375962
  372. 00:00:03.375962 [/Devices/usb-ohci/] (level 2)
  373. 00:00:03.375963
  374. 00:00:03.375963 [/Devices/usb-ohci/0/] (level 3)
  375. 00:00:03.375963 PCIBusNo <integer> = 0x0000000000000000 (0)
  376. 00:00:03.375964 PCIDeviceNo <integer> = 0x0000000000000006 (6)
  377. 00:00:03.375964 PCIFunctionNo <integer> = 0x0000000000000000 (0)
  378. 00:00:03.375965 Trusted <integer> = 0x0000000000000001 (1)
  379. 00:00:03.375965
  380. 00:00:03.375966 [/Devices/usb-ohci/0/Config/] (level 4)
  381. 00:00:03.375967
  382. 00:00:03.375968 [/Devices/usb-ohci/0/LUN#0/] (level 4)
  383. 00:00:03.375968 Driver <string> = "VUSBRootHub" (cb=12)
  384. 00:00:03.375969
  385. 00:00:03.375969 [/Devices/usb-ohci/0/LUN#0/Config/] (level 5)
  386. 00:00:03.375970
  387. 00:00:03.375970 [/Devices/usb-ohci/0/LUN#999/] (level 4)
  388. 00:00:03.375971 Driver <string> = "MainStatus" (cb=11)
  389. 00:00:03.375971
  390. 00:00:03.375971 [/Devices/usb-ohci/0/LUN#999/Config/] (level 5)
  391. 00:00:03.375972 First <integer> = 0x0000000000000000 (0)
  392. 00:00:03.375972 Last <integer> = 0x0000000000000000 (0)
  393. 00:00:03.375973 papLeds <integer> = 0x0000000001cc6bf0 (30 174 192)
  394. 00:00:03.375974
  395. 00:00:03.375974 [/Devices/vga/] (level 2)
  396. 00:00:03.375974
  397. 00:00:03.375974 [/Devices/vga/0/] (level 3)
  398. 00:00:03.375975 PCIBusNo <integer> = 0x0000000000000000 (0)
  399. 00:00:03.375975 PCIDeviceNo <integer> = 0x0000000000000002 (2)
  400. 00:00:03.375976 PCIFunctionNo <integer> = 0x0000000000000000 (0)
  401. 00:00:03.375976 Trusted <integer> = 0x0000000000000001 (1)
  402. 00:00:03.375977
  403. 00:00:03.375977 [/Devices/vga/0/Config/] (level 4)
  404. 00:00:03.375978 3DEnabled <integer> = 0x0000000000000000 (0)
  405. 00:00:03.375978 CustomVideoModes <integer> = 0x0000000000000000 (0)
  406. 00:00:03.375979 FadeIn <integer> = 0x0000000000000001 (1)
  407. 00:00:03.375979 FadeOut <integer> = 0x0000000000000001 (1)
  408. 00:00:03.375980 HeightReduction <integer> = 0x0000000000000000 (0)
  409. 00:00:03.375980 LogoFile <string> = "" (cb=1)
  410. 00:00:03.375981 LogoTime <integer> = 0x0000000000000000 (0)
  411. 00:00:03.375981 MonitorCount <integer> = 0x0000000000000001 (1)
  412. 00:00:03.375982 ShowBootMenu <integer> = 0x0000000000000002 (2)
  413. 00:00:03.375982 VMSVGA3dEnabled <integer> = 0x0000000000000000 (0)
  414. 00:00:03.375983 VMSVGAEnabled <integer> = 0x0000000000000001 (1)
  415. 00:00:03.375983 VMSVGAPciBarLayout <integer> = 0x0000000000000001 (1)
  416. 00:00:03.375984 VMSVGAPciId <integer> = 0x0000000000000001 (1)
  417. 00:00:03.375984 VRamSize <integer> = 0x0000000001000000 (16 777 216, 16 MB)
  418. 00:00:03.375985
  419. 00:00:03.375985 [/Devices/vga/0/LUN#0/] (level 4)
  420. 00:00:03.375986 Driver <string> = "MainDisplay" (cb=12)
  421. 00:00:03.375987
  422. 00:00:03.375987 [/Devices/vga/0/LUN#0/Config/] (level 5)
  423. 00:00:03.375988 Object <integer> = 0x0000000001d02700 (30 418 688)
  424. 00:00:03.375988
  425. 00:00:03.375988 [/Devices/vga/0/LUN#999/] (level 4)
  426. 00:00:03.375989 Driver <string> = "MainStatus" (cb=11)
  427. 00:00:03.375989
  428. 00:00:03.375990 [/Devices/vga/0/LUN#999/Config/] (level 5)
  429. 00:00:03.375990 First <integer> = 0x0000000000000000 (0)
  430. 00:00:03.375991 Last <integer> = 0x0000000000000000 (0)
  431. 00:00:03.375991 papLeds <integer> = 0x0000000001cc6c00 (30 174 208)
  432. 00:00:03.375992
  433. 00:00:03.375992 [/Devices/virtio-net/] (level 2)
  434. 00:00:03.375993
  435. 00:00:03.375993 [/EM/] (level 1)
  436. 00:00:03.375994 TripleFaultReset <integer> = 0x0000000000000000 (0)
  437. 00:00:03.375994
  438. 00:00:03.375994 [/GIM/] (level 1)
  439. 00:00:03.375995 Provider <string> = "KVM" (cb=4)
  440. 00:00:03.375995
  441. 00:00:03.375996 [/HM/] (level 1)
  442. 00:00:03.375997 64bitEnabled <integer> = 0x0000000000000001 (1)
  443. 00:00:03.375997 EnableLargePages <integer> = 0x0000000000000001 (1)
  444. 00:00:03.375998 EnableNestedPaging <integer> = 0x0000000000000001 (1)
  445. 00:00:03.375998 EnableUX <integer> = 0x0000000000000001 (1)
  446. 00:00:03.375999 EnableVPID <integer> = 0x0000000000000001 (1)
  447. 00:00:03.375999 Exclusive <integer> = 0x0000000000000000 (0)
  448. 00:00:03.376000 HMForced <integer> = 0x0000000000000001 (1)
  449. 00:00:03.376000 IBPBOnVMEntry <integer> = 0x0000000000000000 (0)
  450. 00:00:03.376001 IBPBOnVMExit <integer> = 0x0000000000000000 (0)
  451. 00:00:03.376001 L1DFlushOnSched <integer> = 0x0000000000000001 (1)
  452. 00:00:03.376002 L1DFlushOnVMEntry <integer> = 0x0000000000000000 (0)
  453. 00:00:03.376002 LovelyMesaDrvWorkaround <integer> = 0x0000000000000001 (1)
  454. 00:00:03.376003 MDSClearOnSched <integer> = 0x0000000000000001 (1)
  455. 00:00:03.376003 MDSClearOnVMEntry <integer> = 0x0000000000000000 (0)
  456. 00:00:03.376004 SpecCtrlByHost <integer> = 0x0000000000000000 (0)
  457. 00:00:03.376004 UseNEMInstead <integer> = 0x0000000000000000 (0)
  458. 00:00:03.376005
  459. 00:00:03.376005 [/MM/] (level 1)
  460. 00:00:03.376006 CanUseLargerHeap <integer> = 0x0000000000000000 (0)
  461. 00:00:03.376006
  462. 00:00:03.376006 [/NEM/] (level 1)
  463. 00:00:03.376007 Allow64BitGuests <integer> = 0x0000000000000001 (1)
  464. 00:00:03.376007 LovelyMesaDrvWorkaround <integer> = 0x0000000000000001 (1)
  465. 00:00:03.376008
  466. 00:00:03.376008 [/PDM/] (level 1)
  467. 00:00:03.376009
  468. 00:00:03.376009 [/PDM/AsyncCompletion/] (level 2)
  469. 00:00:03.376009
  470. 00:00:03.376009 [/PDM/AsyncCompletion/File/] (level 3)
  471. 00:00:03.376010
  472. 00:00:03.376010 [/PDM/AsyncCompletion/File/BwGroups/] (level 4)
  473. 00:00:03.376011
  474. 00:00:03.376011 [/PDM/BlkCache/] (level 2)
  475. 00:00:03.376012 CacheSize <integer> = 0x0000000000500000 (5 242 880, 5 MB)
  476. 00:00:03.376013
  477. 00:00:03.376013 [/PDM/Devices/] (level 2)
  478. 00:00:03.376013
  479. 00:00:03.376014 [/PDM/Drivers/] (level 2)
  480. 00:00:03.376014
  481. 00:00:03.376014 [/PDM/Drivers/VBoxC/] (level 3)
  482. 00:00:03.376015 Path <string> = "VBoxC" (cb=6)
  483. 00:00:03.376015
  484. 00:00:03.376016 [/PDM/NetworkShaper/] (level 2)
  485. 00:00:03.376016
  486. 00:00:03.376016 [/PDM/NetworkShaper/BwGroups/] (level 3)
  487. 00:00:03.376017
  488. 00:00:03.376017 [/TM/] (level 1)
  489. 00:00:03.376018 UTCOffset <integer> = 0x0000000000000000 (0)
  490. 00:00:03.376018
  491. 00:00:03.376018 [/USB/] (level 1)
  492. 00:00:03.376019
  493. 00:00:03.376019 [/USB/HidMouse/] (level 2)
  494. 00:00:03.376019
  495. 00:00:03.376020 [/USB/HidMouse/0/] (level 3)
  496. 00:00:03.376020
  497. 00:00:03.376020 [/USB/HidMouse/0/Config/] (level 4)
  498. 00:00:03.376021 Mode <string> = "absolute" (cb=9)
  499. 00:00:03.376021
  500. 00:00:03.376022 [/USB/HidMouse/0/LUN#0/] (level 4)
  501. 00:00:03.376022 Driver <string> = "MouseQueue" (cb=11)
  502. 00:00:03.376023
  503. 00:00:03.376023 [/USB/HidMouse/0/LUN#0/AttachedDriver/] (level 5)
  504. 00:00:03.376024 Driver <string> = "MainMouse" (cb=10)
  505. 00:00:03.376024
  506. 00:00:03.376024 [/USB/HidMouse/0/LUN#0/AttachedDriver/Config/] (level 6)
  507. 00:00:03.376025 Object <integer> = 0x0000000001c1d2b0 (29 479 600)
  508. 00:00:03.376026
  509. 00:00:03.376026 [/USB/HidMouse/0/LUN#0/Config/] (level 5)
  510. 00:00:03.376027 QueueSize <integer> = 0x0000000000000080 (128)
  511. 00:00:03.376028
  512. 00:00:03.376028 [/USB/USBProxy/] (level 2)
  513. 00:00:03.376028
  514. 00:00:03.376029 [/USB/USBProxy/GlobalConfig/] (level 3)
  515. 00:00:03.376029
  516. 00:00:03.376030 ********************* End of CFGM dump **********************
  517. 00:00:03.376075 HM: HMR3Init: VT-x w/ nested paging and unrestricted guest execution hw support
  518. 00:00:03.376126 MM: cbHyperHeap=0x200000 (2097152)
  519. 00:00:03.378982 CPUM: fXStateHostMask=0x7; initial: 0x7; host XCR0=0x1f
  520. 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)
  521. 00:00:03.379662 CPUM: MXCSR_MASK=0xffff (host: 0xffff)
  522. 00:00:03.379670 CPUM: Microcode revision 0x000000B4
  523. 00:00:03.379679 CPUM: Changing leaf 13[0]: EBX=0x440 -> 0x340, ECX=0x440 -> 0x340
  524. 00:00:03.379686 CPUM: MSR/CPUID reconciliation insert: 0x0000010b IA32_FLUSH_CMD
  525. 00:00:03.379700 CPUM: SetGuestCpuIdFeature: Enabled PAE
  526. 00:00:03.379864 PGM: Host paging mode: AMD64+NX
  527. 00:00:03.379870 PGM: PGMPool: cMaxPages=2304 (u64MaxPages=2084)
  528. 00:00:03.379873 PGM: pgmR3PoolInit: cMaxPages=0x900 cMaxUsers=0x1200 cMaxPhysExts=0x1200 fCacheEnable=true
  529. 00:00:03.391956 TM: GIP - u32Mode=3 (Invariant) u32UpdateHz=93 u32UpdateIntervalNS=10736000 enmUseTscDelta=2 (Practically Zero) fGetGipCpu=0x1b cCpus=4
  530. 00:00:03.391977 TM: GIP - u64CpuHz=3 600 000 880 (0xd693a770) SUPGetCpuHzFromGip => 3 600 000 880
  531. 00:00:03.391981 TM: GIP - CPU: iCpuSet=0x0 idCpu=0x0 idApic=0x0 iGipCpu=0x0 i64TSCDelta=0 enmState=3 u64CpuHz=3600000880(*) cErrors=0
  532. 00:00:03.391985 TM: GIP - CPU: iCpuSet=0x1 idCpu=0x1 idApic=0x2 iGipCpu=0x3 i64TSCDelta=0 enmState=3 u64CpuHz=3599999746(*) cErrors=0
  533. 00:00:03.391988 TM: GIP - CPU: iCpuSet=0x2 idCpu=0x2 idApic=0x4 iGipCpu=0x2 i64TSCDelta=0 enmState=3 u64CpuHz=3599997324(*) cErrors=0
  534. 00:00:03.391991 TM: GIP - CPU: iCpuSet=0x3 idCpu=0x3 idApic=0x6 iGipCpu=0x1 i64TSCDelta=0 enmState=3 u64CpuHz=3599970182(*) cErrors=0
  535. 00:00:03.392021 TM: cTSCTicksPerSecond=3 600 000 880 (0xd693a770) enmTSCMode=3 (Dynamic)
  536. 00:00:03.392023 TM: TSCTiedToExecution=false TSCNotTiedToHalt=false
  537. 00:00:03.392489 EMR3Init: fIemExecutesAll=false fGuruOnTripleFault=true
  538. 00:00:03.392597 IEM: TargetCpu=CURRENT, Microarch=Intel_Core7_CoffeeLake
  539. 00:00:03.392724 GIM: Using provider 'KVM' (Implementation version: 0)
  540. 00:00:03.392730 CPUM: SetGuestCpuIdFeature: Enabled Hypervisor Present bit
  541. 00:00:03.392824 AIOMgr: Default manager type is 'Async'
  542. 00:00:03.392831 AIOMgr: Default file backend is 'NonBuffered'
  543. 00:00:03.393007 BlkCache: Cache successfully initialized. Cache size is 5242880 bytes
  544. 00:00:03.393014 BlkCache: Cache commit interval is 10000 ms
  545. 00:00:03.393017 BlkCache: Cache commit threshold is 2621440 bytes
  546. 00:00:04.095673 PcBios: [SMP] BIOS with 1 CPUs
  547. 00:00:04.095691 PcBios: Using the 386+ BIOS image.
  548. 00:00:04.095736 PcBios: MPS table at 000e1300
  549. 00:00:04.098333 PcBios: fCheckShutdownStatusForSoftReset=true fClearShutdownStatusOnHardReset=true
  550. 00:00:04.129424 SUP: seg #0: R 0x00000000 LB 0x00001000
  551. 00:00:04.129435 SUP: seg #1: R X 0x00001000 LB 0x0001f000
  552. 00:00:04.129438 SUP: seg #2: R 0x00020000 LB 0x0000c000
  553. 00:00:04.129441 SUP: seg #3: RW 0x0002c000 LB 0x00001000
  554. 00:00:04.129443 SUP: seg #4: R 0x0002d000 LB 0x00002000
  555. 00:00:04.129445 SUP: seg #5: RW 0x0002f000 LB 0x00001000
  556. 00:00:04.129448 SUP: seg #6: R 0x00030000 LB 0x00001000
  557. 00:00:04.129450 SUP: seg #7: RWX 0x00031000 LB 0x00001000
  558. 00:00:04.129452 SUP: seg #8: R 0x00032000 LB 0x00002000
  559. 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
  560. 00:00:04.129510 SUP: windbg> .reload /f D:\virtualbox\VBoxDDR0.r0=0xXXXXXXXXXXXXXXXX
  561. 00:00:04.129721 CPUM: SetGuestCpuIdFeature: Enabled xAPIC
  562. 00:00:04.129726 CPUM: SetGuestCpuIdFeature: Enabled x2APIC
  563. 00:00:04.129895 IOAPIC: Using implementation 2.0! Chipset type ICH9
  564. 00:00:04.129935 PIT: mode=3 count=0x10000 (65536) - 18.20 Hz (ch=0)
  565. 00:00:04.130070 VMMDev: cbDefaultBudget: 265 972 544 (fda6b40)
  566. 00:00:04.147763 Shared Folders service loaded
  567. 00:00:04.159742 Guest Control service loaded
  568. 00:00:04.183610 VGA: Using the 386+ BIOS image.
  569. 00:00:04.187627 DrvVD: Flushes will be ignored
  570. 00:00:04.187640 DrvVD: Async flushes will be passed to the disk
  571. 00:00:04.187842 VD: VDInit finished with VINF_SUCCESS
  572. 00:00:04.187956 VD: Opening the disk took 306378 ns
  573. 00:00:04.187987 PIIX3 ATA: LUN#0: disk, PCHS=16383/16/63, total number of sectors 16777216
  574. 00:00:04.188030 PIIX3 ATA: LUN#1: no unit
  575. 00:00:04.188077 DrvVD: Flushes will be ignored
  576. 00:00:04.188081 DrvVD: Async flushes will be passed to the disk
  577. 00:00:04.188099 PIIX3 ATA: LUN#2: CD/DVD, total number of sectors 0, passthrough disabled
  578. 00:00:04.188104 PIIX3 ATA: LUN#3: no unit
  579. 00:00:04.188152 PIIX3 ATA: Ctl#1: finished processing RESET
  580. 00:00:04.188171 PIIX3 ATA: Ctl#0: finished processing RESET
  581. 00:00:04.188254 E1000#0: Chip=82540EM LinkUpDelay=3000ms EthernetCRC=on GSO=enabled Itr=disabled ItrRx=enabled TID=disabled R0=enabled RC=disabled
  582. 00:00:04.199329 NAT: Guest address guess set to 10.0.2.15 by initialization
  583. 00:00:04.215894 NAT: DNS#0: 202.96.128.166
  584. 00:00:04.215909 NAT: DNS#1: 144.144.144.144
  585. 00:00:04.216632 AC97: Using codec 'STAC9700'
  586. 00:00:04.266590 Audio: Found 4 devices for driver 'WasAPI'
  587. 00:00:04.266601 Audio: Device 'T278Q (英特尔(R) 显示器音频)':
  588. 00:00:04.266601 Audio: ID = {0.0.0.00000000}.{1a0e857a-4577-48b0-b9eb-cea48caf8867}
  589. 00:00:04.266602 Audio: Usage = output
  590. 00:00:04.266602 Audio: Flags = DEFAULT_OUT
  591. 00:00:04.266603 Audio: Input channels = 0
  592. 00:00:04.266603 Audio: Output channels = 2
  593. 00:00:04.266606 Audio: Device 'T278Q (英特尔(R) 显示器音频)':
  594. 00:00:04.266606 Audio: ID = {0.0.0.00000000}.{1a0e857a-4577-48b0-b9eb-cea48caf8867}
  595. 00:00:04.266607 Audio: Usage = output
  596. 00:00:04.266607 Audio: Flags = NONE
  597. 00:00:04.266607 Audio: Input channels = 0
  598. 00:00:04.266607 Audio: Output channels = 2
  599. 00:00:04.266610 Audio: Device '麦克风 (High Definition Audio Device)':
  600. 00:00:04.266610 Audio: ID = {0.0.1.00000000}.{36ac4eb9-d1ef-4c1b-a629-6d5b4e7524d0}
  601. 00:00:04.266610 Audio: Usage = input
  602. 00:00:04.266611 Audio: Flags = DEFAULT_IN
  603. 00:00:04.266611 Audio: Input channels = 2
  604. 00:00:04.266611 Audio: Output channels = 0
  605. 00:00:04.266623 Audio: Device '麦克风 (High Definition Audio Device)':
  606. 00:00:04.266623 Audio: ID = {0.0.1.00000000}.{36ac4eb9-d1ef-4c1b-a629-6d5b4e7524d0}
  607. 00:00:04.266623 Audio: Usage = input
  608. 00:00:04.266624 Audio: Flags = NONE
  609. 00:00:04.266624 Audio: Input channels = 2
  610. 00:00:04.266624 Audio: Output channels = 0
  611. 00:00:04.266801 AC97: Reset
  612. 00:00:04.266807 AC97: Mixer reset (EAID=0x809, EACS=0x9)
  613. 00:00:04.266810 AC97: Record select to left=mic, right=mic
  614. 00:00:04.267292 VUSB: Attached 'HidMouse' to port 1 on RootHub#0 (FullSpeed)
  615. 00:00:04.267316 PGM: The CPU physical address width is 39 bits
  616. 00:00:04.267320 PGM: PGMR3InitFinalize: 4 MB PSE mask 0000007fffffffff -> VINF_SUCCESS
  617. 00:00:04.267451 TM: TMR3InitFinalize: fTSCModeSwitchAllowed=true
  618. 00:00:04.267586 VMM: Thread-context hooks unavailable
  619. 00:00:04.267590 VMM: RTThreadPreemptIsPending() can be trusted
  620. 00:00:04.267597 VMM: Kernel preemption is possible
  621. 00:00:04.268192 HM: fWorldSwitcher=0x0 (fIbpbOnVmExit=false fIbpbOnVmEntry=false fL1dFlushOnVmEntry=false); fL1dFlushOnSched=true fMdsClearOnVmEntry=false
  622. 00:00:04.268197 HM: Using VT-x implementation 3.0
  623. 00:00:04.268200 HM: Max resume loops = 8192
  624. 00:00:04.268200 HM: Host CR4 = 0x370678
  625. 00:00:04.268201 HM: Host EFER = 0xd01
  626. 00:00:04.268202 HM: MSR_IA32_SMM_MONITOR_CTL = 0x0
  627. 00:00:04.268202 HM: MSR_IA32_FEATURE_CONTROL = 0x5
  628. 00:00:04.268202 HM: LOCK
  629. 00:00:04.268203 HM: VMXON
  630. 00:00:04.268203 HM: MSR_IA32_VMX_BASIC = 0xda040000000004
  631. 00:00:04.268204 HM: VMCS id = 0x4
  632. 00:00:04.268204 HM: VMCS size = 1024 bytes
  633. 00:00:04.268205 HM: VMCS physical address limit = None
  634. 00:00:04.268205 HM: VMCS memory type = Write Back (WB)
  635. 00:00:04.268206 HM: Dual-monitor treatment support = true
  636. 00:00:04.268206 HM: OUTS & INS instruction-info = true
  637. 00:00:04.268206 HM: Supports true-capability MSRs = true
  638. 00:00:04.268207 HM: VM-entry Xcpt error-code optional = false
  639. 00:00:04.268207 HM: MSR_IA32_VMX_PINBASED_CTLS = 0x7f00000016
  640. 00:00:04.268208 HM: EXT_INT_EXIT
  641. 00:00:04.268208 HM: NMI_EXIT
  642. 00:00:04.268208 HM: VIRTUAL_NMI
  643. 00:00:04.268208 HM: PREEMPT_TIMER
  644. 00:00:04.268209 HM: POSTED_INT (must be cleared)
  645. 00:00:04.268210 HM: MSR_IA32_VMX_PROCBASED_CTLS = 0xfff9fffe0401e172
  646. 00:00:04.268211 HM: INT_WINDOW_EXIT
  647. 00:00:04.268211 HM: USE_TSC_OFFSETTING
  648. 00:00:04.268211 HM: HLT_EXIT
  649. 00:00:04.268212 HM: INVLPG_EXIT
  650. 00:00:04.268212 HM: MWAIT_EXIT
  651. 00:00:04.268212 HM: RDPMC_EXIT
  652. 00:00:04.268212 HM: RDTSC_EXIT
  653. 00:00:04.268213 HM: CR3_LOAD_EXIT (must be set)
  654. 00:00:04.268213 HM: CR3_STORE_EXIT (must be set)
  655. 00:00:04.268213 HM: CR8_LOAD_EXIT
  656. 00:00:04.268214 HM: CR8_STORE_EXIT
  657. 00:00:04.268214 HM: USE_TPR_SHADOW
  658. 00:00:04.268214 HM: NMI_WINDOW_EXIT
  659. 00:00:04.268215 HM: MOV_DR_EXIT
  660. 00:00:04.268215 HM: UNCOND_IO_EXIT
  661. 00:00:04.268215 HM: USE_IO_BITMAPS
  662. 00:00:04.268217 HM: MONITOR_TRAP_FLAG
  663. 00:00:04.268217 HM: USE_MSR_BITMAPS
  664. 00:00:04.268217 HM: MONITOR_EXIT
  665. 00:00:04.268218 HM: PAUSE_EXIT
  666. 00:00:04.268218 HM: USE_SECONDARY_CTLS
  667. 00:00:04.268219 HM: MSR_IA32_VMX_PROCBASED_CTLS2 = 0x5fbcff00000000
  668. 00:00:04.268220 HM: VIRT_APIC_ACCESS
  669. 00:00:04.268220 HM: EPT
  670. 00:00:04.268220 HM: DESC_TABLE_EXIT
  671. 00:00:04.268221 HM: RDTSCP
  672. 00:00:04.268221 HM: VIRT_X2APIC_MODE
  673. 00:00:04.268221 HM: VPID
  674. 00:00:04.268222 HM: WBINVD_EXIT
  675. 00:00:04.268222 HM: UNRESTRICTED_GUEST
  676. 00:00:04.268222 HM: APIC_REG_VIRT (must be cleared)
  677. 00:00:04.268222 HM: VIRT_INT_DELIVERY (must be cleared)
  678. 00:00:04.268223 HM: PAUSE_LOOP_EXIT
  679. 00:00:04.268223 HM: RDRAND_EXIT
  680. 00:00:04.268223 HM: INVPCID
  681. 00:00:04.268224 HM: VMFUNC
  682. 00:00:04.268224 HM: VMCS_SHADOWING (must be cleared)
  683. 00:00:04.268224 HM: ENCLS_EXIT
  684. 00:00:04.268224 HM: RDSEED_EXIT
  685. 00:00:04.268225 HM: PML
  686. 00:00:04.268225 HM: EPT_VE
  687. 00:00:04.268225 HM: CONCEAL_VMX_FROM_PT
  688. 00:00:04.268225 HM: XSAVES_XRSTORS
  689. 00:00:04.268226 HM: MODE_BASED_EPT_PERM
  690. 00:00:04.268226 HM: SPPTP_EPT (must be cleared)
  691. 00:00:04.268226 HM: PT_EPT (must be cleared)
  692. 00:00:04.268226 HM: TSC_SCALING (must be cleared)
  693. 00:00:04.268227 HM: USER_WAIT_PAUSE (must be cleared)
  694. 00:00:04.268227 HM: ENCLV_EXIT (must be cleared)
  695. 00:00:04.268227 HM: MSR_IA32_VMX_ENTRY_CTLS = 0x3ffff000011ff
  696. 00:00:04.268228 HM: LOAD_DEBUG (must be set)
  697. 00:00:04.268228 HM: IA32E_MODE_GUEST
  698. 00:00:04.268229 HM: ENTRY_TO_SMM
  699. 00:00:04.268229 HM: DEACTIVATE_DUAL_MON
  700. 00:00:04.268229 HM: LOAD_PERF_MSR
  701. 00:00:04.268229 HM: LOAD_PAT_MSR
  702. 00:00:04.268230 HM: LOAD_EFER_MSR
  703. 00:00:04.268230 HM: LOAD_BNDCFGS_MSR
  704. 00:00:04.268230 HM: CONCEAL_VMX_FROM_PT
  705. 00:00:04.268230 HM: LOAD_RTIT_CTL_MSR (must be cleared)
  706. 00:00:04.268231 HM: MSR_IA32_VMX_EXIT_CTLS = 0x1ffffff00036dff
  707. 00:00:04.268231 HM: SAVE_DEBUG (must be set)
  708. 00:00:04.268232 HM: HOST_ADDR_SPACE_SIZE
  709. 00:00:04.268232 HM: LOAD_PERF_MSR
  710. 00:00:04.268233 HM: ACK_EXT_INT
  711. 00:00:04.268233 HM: SAVE_PAT_MSR
  712. 00:00:04.268234 HM: LOAD_PAT_MSR
  713. 00:00:04.268234 HM: SAVE_EFER_MSR
  714. 00:00:04.268234 HM: LOAD_EFER_MSR
  715. 00:00:04.268234 HM: SAVE_PREEMPT_TIMER
  716. 00:00:04.268235 HM: CLEAR_BNDCFGS_MSR
  717. 00:00:04.268235 HM: CONCEAL_VMX_FROM_PT
  718. 00:00:04.268235 HM: CLEAR_RTIT_CTL_MSR (must be cleared)
  719. 00:00:04.268235 HM: MSR_IA32_VMX_TRUE_PINBASED_CTLS = 0x7f00000016
  720. 00:00:04.268236 HM: MSR_IA32_VMX_TRUE_PROCBASED_CTLS = 0xfff9fffe04006172
  721. 00:00:04.268237 HM: MSR_IA32_VMX_TRUE_ENTRY_CTLS = 0x3ffff000011fb
  722. 00:00:04.268237 HM: MSR_IA32_VMX_TRUE_EXIT_CTLS = 0x1ffffff00036dfb
  723. 00:00:04.268238 HM: MSR_IA32_VMX_MISC = 0x7004c1e7
  724. 00:00:04.268239 HM: PREEMPT_TIMER_TSC = 0x7
  725. 00:00:04.268239 HM: EXIT_SAVE_EFER_LMA = true
  726. 00:00:04.268239 HM: ACTIVITY_STATES = 0x7 ( HLT SHUTDOWN SIPI_WAIT )
  727. 00:00:04.268240 HM: INTEL_PT = true
  728. 00:00:04.268240 HM: SMM_READ_SMBASE_MSR = true
  729. 00:00:04.268240 HM: CR3_TARGET = 0x4
  730. 00:00:04.268241 HM: MAX_MSR = 0x0 ( 512 )
  731. 00:00:04.268241 HM: VMXOFF_BLOCK_SMI = true
  732. 00:00:04.268242 HM: VMWRITE_ALL = true
  733. 00:00:04.268242 HM: ENTRY_INJECT_SOFT_INT = 0x1
  734. 00:00:04.268242 HM: MSEG_ID = 0x0
  735. 00:00:04.268243 HM: MSR_IA32_VMX_VMCS_ENUM = 0x2e
  736. 00:00:04.268243 HM: HIGHEST_IDX = 0x17
  737. 00:00:04.268243 HM: MSR_IA32_VMX_EPT_VPID_CAP = 0xf0106734141
  738. 00:00:04.268244 HM: RWX_X_ONLY
  739. 00:00:04.268244 HM: PAGE_WALK_LENGTH_4
  740. 00:00:04.268244 HM: EMT_UC
  741. 00:00:04.268245 HM: EMT_WB
  742. 00:00:04.268245 HM: PDE_2M
  743. 00:00:04.268245 HM: PDPTE_1G
  744. 00:00:04.268245 HM: INVEPT
  745. 00:00:04.268246 HM: EPT_ACCESS_DIRTY
  746. 00:00:04.268246 HM: ADVEXITINFO_EPT
  747. 00:00:04.268246 HM: INVEPT_SINGLE_CONTEXT
  748. 00:00:04.268246 HM: INVEPT_ALL_CONTEXTS
  749. 00:00:04.268246 HM: INVVPID
  750. 00:00:04.268247 HM: INVVPID_INDIV_ADDR
  751. 00:00:04.268247 HM: INVVPID_SINGLE_CONTEXT
  752. 00:00:04.268247 HM: INVVPID_ALL_CONTEXTS
  753. 00:00:04.268247 HM: INVVPID_SINGLE_CONTEXT_RETAIN_GLOBALS
  754. 00:00:04.268248 HM: MSR_IA32_VMX_VMFUNC = 0x1
  755. 00:00:04.268248 HM: EPTP_SWITCHING
  756. 00:00:04.268248 HM: MSR_IA32_VMX_CR0_FIXED0 = 0x80000021
  757. 00:00:04.268249 HM: MSR_IA32_VMX_CR0_FIXED1 = 0xffffffff
  758. 00:00:04.268250 HM: MSR_IA32_VMX_CR4_FIXED0 = 0x2000
  759. 00:00:04.268250 HM: MSR_IA32_VMX_CR4_FIXED1 = 0x3727ff
  760. 00:00:04.268250 HM: APIC-access page physaddr = 0x000000028b32b000
  761. 00:00:04.268251 HM: VCPU 0: MSR bitmap physaddr = 0x000000008ca2f000
  762. 00:00:04.268252 HM: VCPU 0: VMCS physaddr = 0x0000000141d2c000
  763. 00:00:04.268253 HM: Guest support: 32-bit and 64-bit
  764. 00:00:04.268257 HM: Supports VMCS EFER fields = true
  765. 00:00:04.268257 HM: Enabled VMX
  766. 00:00:04.268260 CPUM: SetGuestCpuIdFeature: Enabled SYSENTER/EXIT
  767. 00:00:04.268261 CPUM: SetGuestCpuIdFeature: Enabled PAE
  768. 00:00:04.268261 CPUM: SetGuestCpuIdFeature: Enabled LONG MODE
  769. 00:00:04.268262 CPUM: SetGuestCpuIdFeature: Enabled SYSCALL/RET
  770. 00:00:04.268262 CPUM: SetGuestCpuIdFeature: Enabled LAHF/SAHF
  771. 00:00:04.268262 CPUM: SetGuestCpuIdFeature: Enabled NX
  772. 00:00:04.268263 HM: Enabled nested paging
  773. 00:00:04.268263 HM: EPT flush type = Single context
  774. 00:00:04.268263 HM: Enabled unrestricted guest execution
  775. 00:00:04.268264 HM: Enabled large page support
  776. 00:00:04.268264 HM: Enabled VPID
  777. 00:00:04.268264 HM: VPID flush type = Single context
  778. 00:00:04.268265 HM: Enabled VMX-preemption timer (cPreemptTimerShift=7)
  779. 00:00:04.268265 HM: VT-x/AMD-V init method: Local
  780. 00:00:04.268266 EM: Exit history optimizations: enabled=true enabled-r0=true enabled-r0-no-preemption=false
  781. 00:00:04.268312 PcBios: ATA LUN#0 LCHS=1024/255/63
  782. 00:00:04.268320 APIC: fPostedIntrsEnabled=false fVirtApicRegsEnabled=false fSupportsTscDeadline=false
  783. 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)
  784. 00:00:04.268331 VMM: fUsePeriodicPreemptionTimers=false
  785. 00:00:04.268336 CPUM: Logical host processors: 4 present, 4 max, 4 online, online mask: 000000000000000f
  786. 00:00:04.268337 CPUM: Physical host cores: 4
  787. 00:00:04.268338 ************************* CPUID dump ************************
  788. 00:00:04.268342 Raw Standard CPUID Leaves
  789. 00:00:04.268342 Leaf/sub-leaf eax ebx ecx edx
  790. 00:00:04.268343 Gst: 00000000/0000 00000016 756e6547 6c65746e 49656e69
  791. 00:00:04.268345 Hst: 00000016 756e6547 6c65746e 49656e69
  792. 00:00:04.268345 Gst: 00000001/0000 000906eb 00010800 d6fa220b 178bfbff
  793. 00:00:04.268346 Hst: 000906eb 04100800 7ffafbbf bfebfbff
  794. 00:00:04.268347 Gst: 00000002/0000 76036301 00f0b6ff 00000000 00c30000
  795. 00:00:04.268348 Hst: 76036301 00f0b6ff 00000000 00c30000
  796. 00:00:04.268349 Gst: 00000003/0000 00000000 00000000 00000000 00000000
  797. 00:00:04.268349 Hst: 00000000 00000000 00000000 00000000
  798. 00:00:04.268350 Gst: 00000004/0000 00000121 01c0003f 0000003f 00000000
  799. 00:00:04.268351 Hst: 1c004121 01c0003f 0000003f 00000000
  800. 00:00:04.268351 Gst: 00000004/0001 00000122 01c0003f 0000003f 00000000
  801. 00:00:04.268352 Hst: 1c004122 01c0003f 0000003f 00000000
  802. 00:00:04.268353 Gst: 00000004/0002 00000143 00c0003f 000003ff 00000000
  803. 00:00:04.268353 Hst: 1c004143 00c0003f 000003ff 00000000
  804. 00:00:04.268354 Gst: 00000004/0003 00000163 02c0003f 00001fff 00000006
  805. 00:00:04.268355 Hst: 1c03c163 02c0003f 00001fff 00000006
  806. 00:00:04.268355 Gst: 00000004/0004 00000000 00000000 00000000 00000000
  807. 00:00:04.268356 Hst: 00000000 00000000 00000000 00000000
  808. 00:00:04.268356 Gst: 00000005/0000 00000040 00000040 00000000 00000000
  809. 00:00:04.268357 Hst: 00000040 00000040 00000003 11142120
  810. 00:00:04.268358 Gst: 00000006/0000 00000000 00000000 00000000 00000000
  811. 00:00:04.268359 Hst: 000027f5 00000002 00000009 00000000
  812. 00:00:04.268359 Gst: 00000007/0000 00000000 00842421 00000000 10000400
  813. 00:00:04.268360 Hst: 00000000 029c67af 00000000 9c002400
  814. 00:00:04.268360 Gst: 00000007/0001 00000000 00000000 00000000 00000000
  815. 00:00:04.268361 Hst: 00000000 00000000 00000000 00000000
  816. 00:00:04.268361 Gst: 00000008/0000 00000000 00000000 00000000 00000000
  817. 00:00:04.268362 Hst: 00000000 00000000 00000000 00000000
  818. 00:00:04.268362 Gst: 00000009/0000 00000000 00000000 00000000 00000000
  819. 00:00:04.268363 Hst: 00000000 00000000 00000000 00000000
  820. 00:00:04.268363 Gst: 0000000a/0000 00000000 00000000 00000000 00000000
  821. 00:00:04.268364 Hst: 07300804 00000000 00000000 00000603
  822. 00:00:04.268364 Gst: 0000000b/0000 00000000 00000001 00000100 00000000
  823. 00:00:04.268365 Hst: 00000001 00000001 00000100 00000004
  824. 00:00:04.268365 Gst: 0000000b/0001 00000001 00000001 00000201 00000000
  825. 00:00:04.268366 Hst: 00000004 00000004 00000201 00000004
  826. 00:00:04.268366 Gst: 0000000b/0002 00000000 00000000 00000002 00000000
  827. 00:00:04.268367 Hst: 00000000 00000000 00000002 00000004
  828. 00:00:04.268367 Gst: 0000000c/0000 00000000 00000000 00000000 00000000
  829. 00:00:04.268368 Hst: 00000000 00000000 00000000 00000000
  830. 00:00:04.268368 Gst: 0000000d/0000 00000007 00000340 00000340 00000000
  831. 00:00:04.268369 Hst: 0000001f 00000440 00000440 00000000
  832. 00:00:04.268370 Gst: 0000000d/0001 00000000 00000440 00000000 00000000
  833. 00:00:04.268370 Hst: 0000000f 00000440 00000100 00000000
  834. 00:00:04.268371 Gst: 0000000d/0002 00000100 00000240 00000000 00000000
  835. 00:00:04.268371 Hst: 00000100 00000240 00000000 00000000
  836. 00:00:04.268372 Gst: 0000000d/0003 00000000 00000000 00000000 00000000
  837. 00:00:04.268372 Hst: 00000040 000003c0 00000000 00000000
  838. 00:00:04.268373 Gst: 0000000d/0004 00000000 00000000 00000000 00000000
  839. 00:00:04.268373 Hst: 00000040 00000400 00000000 00000000
  840. 00:00:04.268374 Gst: 0000000d/0005 00000000 00000000 00000000 00000000
  841. 00:00:04.268374 Hst: 00000000 00000000 00000000 00000000
  842. 00:00:04.268375 Gst: 0000000d/0006 00000000 00000000 00000000 00000000
  843. 00:00:04.268375 Hst: 00000000 00000000 00000000 00000000
  844. 00:00:04.268376 Gst: 0000000d/0007 00000000 00000000 00000000 00000000
  845. 00:00:04.268376 Hst: 00000000 00000000 00000000 00000000
  846. 00:00:04.268377 Gst: 0000000d/0008 00000000 00000000 00000000 00000000
  847. 00:00:04.268377 Hst: 00000080 00000000 00000001 00000000
  848. 00:00:04.268378 Gst: 0000000d/0009 00000000 00000000 00000000 00000000
  849. 00:00:04.268378 Hst: 00000000 00000000 00000000 00000000
  850. 00:00:04.268394 Gst: 0000000e/0000 00000000 00000000 00000000 00000000
  851. 00:00:04.268395 Hst: 00000000 00000000 00000000 00000000
  852. 00:00:04.268395 Gst: 0000000f/0000 00000000 00000000 00000000 00000000
  853. 00:00:04.268395 Hst: 00000000 00000000 00000000 00000000
  854. 00:00:04.268396 Gst: 00000010/0000 00000000 00000000 00000000 00000000
  855. 00:00:04.268396 Hst: 00000000 00000000 00000000 00000000
  856. 00:00:04.268397 Gst: 00000011/0000 00000000 00000000 00000000 00000000
  857. 00:00:04.268397 Hst: 00000000 00000000 00000000 00000000
  858. 00:00:04.268398 Gst: 00000012/0000 00000000 00000000 00000000 00000000
  859. 00:00:04.268398 Hst: 00000000 00000000 00000000 00000000
  860. 00:00:04.268399 Gst: 00000013/0000 00000000 00000000 00000000 00000000
  861. 00:00:04.268399 Hst: 00000000 00000000 00000000 00000000
  862. 00:00:04.268400 Gst: 00000014/0000 00000000 00000000 00000000 00000000
  863. 00:00:04.268400 Hst: 00000001 0000000f 00000007 00000000
  864. 00:00:04.268401 Hst: 00000015/0000 00000002 0000012c 00000000 00000000
  865. 00:00:04.268402 Hst: 00000016/0000 00000e10 00000e10 00000064 00000000
  866. 00:00:04.268403 Name: GenuineIntel
  867. 00:00:04.268404 Supports: 0x00000000-0x00000016
  868. 00:00:04.268406 Family: 6 Extended: 0 Effective: 6
  869. 00:00:04.268407 Model: 14 Extended: 9 Effective: 158
  870. 00:00:04.268407 Stepping: 11
  871. 00:00:04.268408 Type: 0 (primary)
  872. 00:00:04.268409 APIC ID: 0x00
  873. 00:00:04.268409 Logical CPUs: 1
  874. 00:00:04.268410 CLFLUSH Size: 8
  875. 00:00:04.268410 Brand ID: 0x00
  876. 00:00:04.268411 Features
  877. 00:00:04.268411 Mnemonic - Description = guest (host)
  878. 00:00:04.268412 FPU - x87 FPU on Chip = 1 (1)
  879. 00:00:04.268414 VME - Virtual 8086 Mode Enhancements = 1 (1)
  880. 00:00:04.268414 DE - Debugging extensions = 1 (1)
  881. 00:00:04.268415 PSE - Page Size Extension = 1 (1)
  882. 00:00:04.268416 TSC - Time Stamp Counter = 1 (1)
  883. 00:00:04.268416 MSR - Model Specific Registers = 1 (1)
  884. 00:00:04.268417 PAE - Physical Address Extension = 1 (1)
  885. 00:00:04.268418 MCE - Machine Check Exception = 1 (1)
  886. 00:00:04.268418 CX8 - CMPXCHG8B instruction = 1 (1)
  887. 00:00:04.268419 APIC - APIC On-Chip = 1 (1)
  888. 00:00:04.268420 SEP - SYSENTER and SYSEXIT Present = 1 (1)
  889. 00:00:04.268420 MTRR - Memory Type Range Registers = 1 (1)
  890. 00:00:04.268421 PGE - PTE Global Bit = 1 (1)
  891. 00:00:04.268422 MCA - Machine Check Architecture = 1 (1)
  892. 00:00:04.268422 CMOV - Conditional Move instructions = 1 (1)
  893. 00:00:04.268423 PAT - Page Attribute Table = 1 (1)
  894. 00:00:04.268423 PSE-36 - 36-bit Page Size Extension = 1 (1)
  895. 00:00:04.268424 PSN - Processor Serial Number = 0 (0)
  896. 00:00:04.268425 CLFSH - CLFLUSH instruction = 1 (1)
  897. 00:00:04.268425 DS - Debug Store = 0 (1)
  898. 00:00:04.268426 ACPI - Thermal Mon. & Soft. Clock Ctrl. = 0 (1)
  899. 00:00:04.268427 MMX - Intel MMX Technology = 1 (1)
  900. 00:00:04.268427 FXSR - FXSAVE and FXRSTOR instructions = 1 (1)
  901. 00:00:04.268428 SSE - SSE support = 1 (1)
  902. 00:00:04.268429 SSE2 - SSE2 support = 1 (1)
  903. 00:00:04.268429 SS - Self Snoop = 0 (1)
  904. 00:00:04.268430 HTT - Hyper-Threading Technology = 1 (1)
  905. 00:00:04.268431 TM - Therm. Monitor = 0 (1)
  906. 00:00:04.268431 PBE - Pending Break Enabled = 0 (1)
  907. 00:00:04.268432 SSE3 - SSE3 support = 1 (1)
  908. 00:00:04.268433 PCLMUL - PCLMULQDQ support (for AES-GCM) = 1 (1)
  909. 00:00:04.268433 DTES64 - DS Area 64-bit Layout = 0 (1)
  910. 00:00:04.268434 MONITOR - MONITOR/MWAIT instructions = 1 (1)
  911. 00:00:04.268434 CPL-DS - CPL Qualified Debug Store = 0 (1)
  912. 00:00:04.268435 VMX - Virtual Machine Extensions = 0 (1)
  913. 00:00:04.268436 SMX - Safer Mode Extensions = 0 (0)
  914. 00:00:04.268436 EST - Enhanced SpeedStep Technology = 0 (1)
  915. 00:00:04.268437 TM2 - Terminal Monitor 2 = 0 (1)
  916. 00:00:04.268438 SSSE3 - Supplemental Streaming SIMD Extensions 3 = 1 (1)
  917. 00:00:04.268438 CNTX-ID - L1 Context ID = 0 (0)
  918. 00:00:04.268439 SDBG - Silicon Debug interface = 0 (1)
  919. 00:00:04.268439 FMA - Fused Multiply Add extensions = 0 (1)
  920. 00:00:04.268440 CX16 - CMPXCHG16B instruction = 1 (1)
  921. 00:00:04.268441 TPRUPDATE - xTPR Update Control = 0 (1)
  922. 00:00:04.268441 PDCM - Perf/Debug Capability MSR = 0 (1)
  923. 00:00:04.268442 PCID - Process Context Identifiers = 1 (1)
  924. 00:00:04.268442 DCA - Direct Cache Access = 0 (0)
  925. 00:00:04.268443 SSE4_1 - SSE4_1 support = 1 (1)
  926. 00:00:04.268444 SSE4_2 - SSE4_2 support = 1 (1)
  927. 00:00:04.268444 X2APIC - x2APIC support = 1 (1)
  928. 00:00:04.268445 MOVBE - MOVBE instruction = 1 (1)
  929. 00:00:04.268446 POPCNT - POPCNT instruction = 1 (1)
  930. 00:00:04.268446 TSCDEADL - Time Stamp Counter Deadline = 0 (1)
  931. 00:00:04.268447 AES - AES instructions = 1 (1)
  932. 00:00:04.268448 XSAVE - XSAVE instruction = 1 (1)
  933. 00:00:04.268448 OSXSAVE - OSXSAVE instruction = 0 (1)
  934. 00:00:04.268449 AVX - AVX support = 1 (1)
  935. 00:00:04.268450 F16C - 16-bit floating point conversion instructions = 0 (1)
  936. 00:00:04.268450 RDRAND - RDRAND instruction = 1 (1)
  937. 00:00:04.268451 HVP - Hypervisor Present (we're a guest) = 1 (0)
  938. 00:00:04.268451 Structured Extended Feature Flags Enumeration (leaf 7):
  939. 00:00:04.268452 Mnemonic - Description = guest (host)
  940. 00:00:04.268452 FSGSBASE - RDFSBASE/RDGSBASE/WRFSBASE/WRGSBASE instr. = 1 (1)
  941. 00:00:04.268453 TSCADJUST - Supports MSR_IA32_TSC_ADJUST = 0 (1)
  942. 00:00:04.268453 SGX - Supports Software Guard Extensions = 0 (1)
  943. 00:00:04.268454 BMI1 - Advanced Bit Manipulation extension 1 = 0 (1)
  944. 00:00:04.268454 HLE - Hardware Lock Elision = 0 (0)
  945. 00:00:04.268455 AVX2 - Advanced Vector Extensions 2 = 1 (1)
  946. 00:00:04.268456 FDP_EXCPTN_ONLY - FPU DP only updated on exceptions = 0 (0)
  947. 00:00:04.268456 SMEP - Supervisor Mode Execution Prevention = 0 (1)
  948. 00:00:04.268457 BMI2 - Advanced Bit Manipulation extension 2 = 0 (1)
  949. 00:00:04.268457 ERMS - Enhanced REP MOVSB/STOSB instructions = 0 (1)
  950. 00:00:04.268458 INVPCID - INVPCID instruction = 1 (1)
  951. 00:00:04.268458 RTM - Restricted Transactional Memory = 0 (0)
  952. 00:00:04.268459 PQM - Platform Quality of Service Monitoring = 0 (0)
  953. 00:00:04.268460 DEPFPU_CS_DS - Deprecates FPU CS, FPU DS values if set = 1 (1)
  954. 00:00:04.268460 MPE - Intel Memory Protection Extensions = 0 (1)
  955. 00:00:04.268461 PQE - Platform Quality of Service Enforcement = 0 (0)
  956. 00:00:04.268461 AVX512F - AVX512 Foundation instructions = 0 (0)
  957. 00:00:04.268462 RDSEED - RDSEED instruction = 1 (1)
  958. 00:00:04.268462 ADX - ADCX/ADOX instructions = 0 (1)
  959. 00:00:04.268463 SMAP - Supervisor Mode Access Prevention = 0 (1)
  960. 00:00:04.268464 CLFLUSHOPT - CLFLUSHOPT (Cache Line Flush) instruction = 1 (1)
  961. 00:00:04.268464 INTEL_PT - Intel Processor Trace = 0 (1)
  962. 00:00:04.268465 AVX512PF - AVX512 Prefetch instructions = 0 (0)
  963. 00:00:04.268465 AVX512ER - AVX512 Exponential & Reciprocal instructions = 0 (0)
  964. 00:00:04.268466 AVX512CD - AVX512 Conflict Detection instructions = 0 (0)
  965. 00:00:04.268466 SHA - Secure Hash Algorithm extensions = 0 (0)
  966. 00:00:04.268467 PREFETCHWT1 - PREFETCHWT1 instruction = 0 (0)
  967. 00:00:04.268468 UMIP - User mode insturction prevention = 0 (0)
  968. 00:00:04.268468 PKU - Protection Key for Usermode pages = 0 (0)
  969. 00:00:04.268469 OSPKE - CR4.PKU mirror = 0 (0)
  970. 00:00:04.268470 MAWAU - Value used by BNDLDX & BNDSTX = 0x0 (0x0)
  971. 00:00:04.268470 RDPID - Read processor ID support = 0 (0)
  972. 00:00:04.268471 SGX_LC - Supports SGX Launch Configuration = 0 (0)
  973. 00:00:04.268472 MD_CLEAR - Supports MDS related buffer clearing = 1 (1)
  974. 00:00:04.268472 13 - Reserved = 0 (1)
  975. 00:00:04.268473 IBRS_IBPB - IA32_SPEC_CTRL.IBRS and IA32_PRED_CMD.IBPB = 0 (1)
  976. 00:00:04.268473 STIBP - Supports IA32_SPEC_CTRL.STIBP = 0 (1)
  977. 00:00:04.268474 FLUSH_CMD - Supports IA32_FLUSH_CMD = 1 (1)
  978. 00:00:04.268475 ARCHCAP - Supports IA32_ARCH_CAP = 0 (0)
  979. 00:00:04.268475 CORECAP - Supports IA32_CORE_CAP = 0 (0)
  980. 00:00:04.268476 SSBD - Supports IA32_SPEC_CTRL.SSBD = 0 (1)
  981. 00:00:04.268477 Processor Extended State Enumeration (leaf 0xd):
  982. 00:00:04.268477 XSAVE area cur/max size by XCR0, guest: 0x340/0x340
  983. 00:00:04.268478 XSAVE area cur/max size by XCR0, host: 0x440/0x440
  984. 00:00:04.268478 Valid XCR0 bits, guest: 0x00000000`00000007 ( x87 SSE YMM_Hi128 )
  985. 00:00:04.268480 Valid XCR0 bits, host: 0x00000000`0000001f ( x87 SSE YMM_Hi128 BNDREGS BNDCSR )
  986. 00:00:04.268481 XSAVE features, guest:
  987. 00:00:04.268482 XSAVE features, host: XSAVEOPT XSAVEC XGETBC1 XSAVES
  988. 00:00:04.268483 XSAVE area cur size XCR0|XSS, guest: 0x440
  989. 00:00:04.268483 XSAVE area cur size XCR0|XSS, host: 0x440
  990. 00:00:04.268484 Valid IA32_XSS bits, guest: 0x00000000`00000000
  991. 00:00:04.268484 Valid IA32_XSS bits, host: 0x00000100`00000000 ( 40 )
  992. 00:00:04.268485 State #2, guest: off=0x0240, cb=0x0100 IA32_XSS-bit -- YMM_Hi128
  993. 00:00:04.268486 State #2, host: off=0x0240, cb=0x0100 IA32_XSS-bit -- YMM_Hi128
  994. 00:00:04.268487 State #3, host: off=0x03c0, cb=0x0040 IA32_XSS-bit -- BNDREGS
  995. 00:00:04.268488 State #4, host: off=0x0400, cb=0x0040 IA32_XSS-bit -- BNDCSR
  996. 00:00:04.268490 State #8, host: off=0x0000, cb=0x0080 XCR0-bit -- 8
  997. 00:00:04.268498 Unknown CPUID Leaves
  998. 00:00:04.268498 Leaf/sub-leaf eax ebx ecx edx
  999. 00:00:04.268498 Gst: 00000014/0001 00000000 00000000 00000000 00000000
  1000. 00:00:04.268499 Hst: 02490002 003f3fff 00000000 00000000
  1001. 00:00:04.268500 Gst: 00000014/0002 00000000 00000000 00000000 00000000
  1002. 00:00:04.268500 Hst: 00000000 00000000 00000000 00000000
  1003. 00:00:04.268501 Gst: 00000015/0000 00000000 00000000 00000000 00000000
  1004. 00:00:04.268501 Hst: 00000002 0000012c 00000000 00000000
  1005. 00:00:04.268502 Gst: 00000016/0000 00000000 00000000 00000000 00000000
  1006. 00:00:04.268503 Hst: 00000e10 00000e10 00000064 00000000
  1007. 00:00:04.268504 Raw Hypervisor CPUID Leaves
  1008. 00:00:04.268504 Leaf/sub-leaf eax ebx ecx edx
  1009. 00:00:04.268505 Gst: 40000000/0000 40000001 4b4d564b 564b4d56 0000004d
  1010. 00:00:04.268506 Hst: 00000e10 00000e10 00000064 00000000
  1011. 00:00:04.268506 Gst: 40000001/0000 01000089 00000000 00000000 00000000
  1012. 00:00:04.268507 Hst: 00000e10 00000e10 00000064 00000000
  1013. 00:00:04.268508 Raw Extended CPUID Leaves
  1014. 00:00:04.268508 Leaf/sub-leaf eax ebx ecx edx
  1015. 00:00:04.268508 Gst: 80000000/0000 80000008 00000000 00000000 00000000
  1016. 00:00:04.268509 Hst: 80000008 00000000 00000000 00000000
  1017. 00:00:04.268510 Gst: 80000001/0000 00000000 00000000 00000121 28100800
  1018. 00:00:04.268510 Hst: 00000000 00000000 00000121 2c100800
  1019. 00:00:04.268511 Gst: 80000002/0000 65746e49 2952286c 726f4320 4d542865
  1020. 00:00:04.268512 Hst: 65746e49 2952286c 726f4320 4d542865
  1021. 00:00:04.268513 Gst: 80000003/0000 33692029 3031382d 50432030 20402055
  1022. 00:00:04.268514 Hst: 33692029 3031382d 50432030 20402055
  1023. 00:00:04.268515 Gst: 80000004/0000 30362e33 007a4847 00000000 00000000
  1024. 00:00:04.268516 Hst: 30362e33 007a4847 00000000 00000000
  1025. 00:00:04.268517 Gst: 80000005/0000 00000000 00000000 00000000 00000000
  1026. 00:00:04.268517 Hst: 00000000 00000000 00000000 00000000
  1027. 00:00:04.268518 Gst: 80000006/0000 00000000 00000000 01006040 00000000
  1028. 00:00:04.268518 Hst: 00000000 00000000 01006040 00000000
  1029. 00:00:04.268519 Gst: 80000007/0000 00000000 00000000 00000000 00000100
  1030. 00:00:04.268520 Hst: 00000000 00000000 00000000 00000100
  1031. 00:00:04.268520 Gst: 80000008/0000 00003027 00000000 00000000 00000000
  1032. 00:00:04.268521 Hst: 00003027 00000000 00000000 00000000
  1033. 00:00:04.268521 Ext Name:
  1034. 00:00:04.268522 Ext Supports: 0x80000000-0x80000008
  1035. 00:00:04.268522 Family: 0 Extended: 0 Effective: 0
  1036. 00:00:04.268523 Model: 0 Extended: 0 Effective: 0
  1037. 00:00:04.268523 Stepping: 0
  1038. 00:00:04.268523 Brand ID: 0x000
  1039. 00:00:04.268524 Ext Features
  1040. 00:00:04.268524 Mnemonic - Description = guest (host)
  1041. 00:00:04.268526 FPU - x87 FPU on Chip = 0 (0)
  1042. 00:00:04.268526 VME - Virtual 8086 Mode Enhancements = 0 (0)
  1043. 00:00:04.268527 DE - Debugging extensions = 0 (0)
  1044. 00:00:04.268528 PSE - Page Size Extension = 0 (0)
  1045. 00:00:04.268528 TSC - Time Stamp Counter = 0 (0)
  1046. 00:00:04.268529 MSR - K86 Model Specific Registers = 0 (0)
  1047. 00:00:04.268530 PAE - Physical Address Extension = 0 (0)
  1048. 00:00:04.268530 MCE - Machine Check Exception = 0 (0)
  1049. 00:00:04.268531 CX8 - CMPXCHG8B instruction = 0 (0)
  1050. 00:00:04.268531 APIC - APIC On-Chip = 0 (0)
  1051. 00:00:04.268532 SEP - SYSCALL/SYSRET = 1 (1)
  1052. 00:00:04.268533 MTRR - Memory Type Range Registers = 0 (0)
  1053. 00:00:04.268533 PGE - PTE Global Bit = 0 (0)
  1054. 00:00:04.268534 MCA - Machine Check Architecture = 0 (0)
  1055. 00:00:04.268535 CMOV - Conditional Move instructions = 0 (0)
  1056. 00:00:04.268535 PAT - Page Attribute Table = 0 (0)
  1057. 00:00:04.268536 PSE-36 - 36-bit Page Size Extension = 0 (0)
  1058. 00:00:04.268537 NX - No-Execute/Execute-Disable = 1 (1)
  1059. 00:00:04.268537 AXMMX - AMD Extensions to MMX instructions = 0 (0)
  1060. 00:00:04.268538 MMX - Intel MMX Technology = 0 (0)
  1061. 00:00:04.268538 FXSR - FXSAVE and FXRSTOR Instructions = 0 (0)
  1062. 00:00:04.268539 FFXSR - AMD fast FXSAVE and FXRSTOR instructions = 0 (0)
  1063. 00:00:04.268540 Page1GB - 1 GB large page = 0 (1)
  1064. 00:00:04.268540 RDTSCP - RDTSCP instruction = 1 (1)
  1065. 00:00:04.268541 LM - AMD64 Long Mode = 1 (1)
  1066. 00:00:04.268542 3DNOWEXT - AMD Extensions to 3DNow = 0 (0)
  1067. 00:00:04.268542 3DNOW - AMD 3DNow = 0 (0)
  1068. 00:00:04.268543 LahfSahf - LAHF/SAHF support in 64-bit mode = 1 (1)
  1069. 00:00:04.268544 CmpLegacy - Core multi-processing legacy mode = 0 (0)
  1070. 00:00:04.268544 SVM - AMD Secure Virtual Machine extensions = 0 (0)
  1071. 00:00:04.268545 EXTAPIC - AMD Extended APIC registers = 0 (0)
  1072. 00:00:04.268545 CR8L - AMD LOCK MOV CR0 means MOV CR8 = 0 (0)
  1073. 00:00:04.268546 ABM - AMD Advanced Bit Manipulation = 1 (1)
  1074. 00:00:04.268546 SSE4A - SSE4A instructions = 0 (0)
  1075. 00:00:04.268547 MISALIGNSSE - AMD Misaligned SSE mode = 0 (0)
  1076. 00:00:04.268548 3DNOWPRF - AMD PREFETCH and PREFETCHW instructions = 1 (1)
  1077. 00:00:04.268548 OSVW - AMD OS Visible Workaround = 0 (0)
  1078. 00:00:04.268549 IBS - Instruct Based Sampling = 0 (0)
  1079. 00:00:04.268549 XOP - Extended Operation support = 0 (0)
  1080. 00:00:04.268550 SKINIT - SKINIT, STGI, and DEV support = 0 (0)
  1081. 00:00:04.268551 WDT - AMD Watchdog Timer support = 0 (0)
  1082. 00:00:04.268551 LWP - Lightweight Profiling support = 0 (0)
  1083. 00:00:04.268552 FMA4 - Four operand FMA instruction support = 0 (0)
  1084. 00:00:04.268552 NodeId - NodeId in MSR C001_100C = 0 (0)
  1085. 00:00:04.268553 TBM - Trailing Bit Manipulation instructions = 0 (0)
  1086. 00:00:04.268554 TOPOEXT - Topology Extensions = 0 (0)
  1087. 00:00:04.268554 PRFEXTCORE - Performance Counter Extensions support = 0 (0)
  1088. 00:00:04.268555 PRFEXTNB - NB Performance Counter Extensions support = 0 (0)
  1089. 00:00:04.268555 DATABPEXT - Data-access Breakpoint Extension = 0 (0)
  1090. 00:00:04.268556 PERFTSC - Performance Time Stamp Counter = 0 (0)
  1091. 00:00:04.268556 PCX_L2I - L2I/L3 Performance Counter Extensions = 0 (0)
  1092. 00:00:04.268557 MWAITX - MWAITX and MONITORX instructions = 0 (0)
  1093. 00:00:04.268558 Full Name: "Intel(R) Core(TM) i3-8100 CPU @ 3.60GHz"
  1094. 00:00:04.268558 TLB 2/4M Instr/Uni: res0 0 entries
  1095. 00:00:04.268559 TLB 2/4M Data: res0 0 entries
  1096. 00:00:04.268560 TLB 4K Instr/Uni: res0 0 entries
  1097. 00:00:04.268560 TLB 4K Data: res0 0 entries
  1098. 00:00:04.268560 L1 Instr Cache Line Size: 0 bytes
  1099. 00:00:04.268561 L1 Instr Cache Lines Per Tag: 0
  1100. 00:00:04.268561 L1 Instr Cache Associativity: res0
  1101. 00:00:04.268561 L1 Instr Cache Size: 0 KB
  1102. 00:00:04.268562 L1 Data Cache Line Size: 0 bytes
  1103. 00:00:04.268562 L1 Data Cache Lines Per Tag: 0
  1104. 00:00:04.268562 L1 Data Cache Associativity: res0
  1105. 00:00:04.268562 L1 Data Cache Size: 0 KB
  1106. 00:00:04.268563 L2 TLB 2/4M Instr/Uni: off 0 entries
  1107. 00:00:04.268563 L2 TLB 2/4M Data: off 0 entries
  1108. 00:00:04.268564 L2 TLB 4K Instr/Uni: off 0 entries
  1109. 00:00:04.268564 L2 TLB 4K Data: off 0 entries
  1110. 00:00:04.268564 L2 Cache Line Size: 0 bytes
  1111. 00:00:04.268565 L2 Cache Lines Per Tag: 0
  1112. 00:00:04.268565 L2 Cache Associativity: off
  1113. 00:00:04.268565 L2 Cache Size: 0 KB
  1114. 00:00:04.268566 TS - Temperature Sensor = 0 (0)
  1115. 00:00:04.268566 FID - Frequency ID control = 0 (0)
  1116. 00:00:04.268572 VID - Voltage ID control = 0 (0)
  1117. 00:00:04.268572 TscInvariant - Invariant Time Stamp Counter = 1 (1)
  1118. 00:00:04.268573 CBP - Core Performance Boost = 0 (0)
  1119. 00:00:04.268574 EffFreqRO - Read-only Effective Frequency Interface = 0 (0)
  1120. 00:00:04.268574 ProcFdbkIf - Processor Feedback Interface = 0 (0)
  1121. 00:00:04.268575 ProcPwrRep - Core power reporting interface support = 0 (0)
  1122. 00:00:04.268576 Physical Address Width: 39 bits
  1123. 00:00:04.268576 Virtual Address Width: 48 bits
  1124. 00:00:04.268576 Guest Physical Address Width: 0 bits
  1125. 00:00:04.268577 Physical Core Count: 1
  1126. 00:00:04.268578
  1127. 00:00:04.268578 ******************** End of CPUID dump **********************
  1128. 00:00:04.268578 *********************** VT-x features ***********************
  1129. 00:00:04.268579 Nested hardware virtualization - VMX features
  1130. 00:00:04.268579 Mnemonic - Description = guest (host)
  1131. 00:00:04.268580 VMX - Virtual-Machine Extensions = 0 (1)
  1132. 00:00:04.268580 InsOutInfo - INS/OUTS instruction info. = 0 (1)
  1133. 00:00:04.268580 ExtIntExit - External interrupt exiting = 0 (1)
  1134. 00:00:04.268581 NmiExit - NMI exiting = 0 (1)
  1135. 00:00:04.268581 VirtNmi - Virtual NMIs = 0 (1)
  1136. 00:00:04.268582 PreemptTimer - VMX preemption timer = 0 (1)
  1137. 00:00:04.268582 PostedInt - Posted interrupts = 0 (0)
  1138. 00:00:04.268582 IntWindowExit - Interrupt-window exiting = 0 (1)
  1139. 00:00:04.268583 TscOffsetting - TSC offsetting = 0 (1)
  1140. 00:00:04.268583 HltExit - HLT exiting = 0 (1)
  1141. 00:00:04.268585 InvlpgExit - INVLPG exiting = 0 (1)
  1142. 00:00:04.268585 MwaitExit - MWAIT exiting = 0 (1)
  1143. 00:00:04.268585 RdpmcExit - RDPMC exiting = 0 (1)
  1144. 00:00:04.268586 RdtscExit - RDTSC exiting = 0 (1)
  1145. 00:00:04.268586 Cr3LoadExit - CR3-load exiting = 0 (1)
  1146. 00:00:04.268586 Cr3StoreExit - CR3-store exiting = 0 (1)
  1147. 00:00:04.268587 Cr8LoadExit - CR8-load exiting = 0 (1)
  1148. 00:00:04.268587 Cr8StoreExit - CR8-store exiting = 0 (1)
  1149. 00:00:04.268587 UseTprShadow - Use TPR shadow = 0 (1)
  1150. 00:00:04.268588 NmiWindowExit - NMI-window exiting = 0 (1)
  1151. 00:00:04.268588 MovDRxExit - Mov-DR exiting = 0 (1)
  1152. 00:00:04.268588 UncondIoExit - Unconditional I/O exiting = 0 (1)
  1153. 00:00:04.268589 UseIoBitmaps - Use I/O bitmaps = 0 (1)
  1154. 00:00:04.268589 MonitorTrapFlag - Monitor Trap Flag = 0 (1)
  1155. 00:00:04.268591 UseMsrBitmaps - MSR bitmaps = 0 (1)
  1156. 00:00:04.268591 MonitorExit - MONITOR exiting = 0 (1)
  1157. 00:00:04.268592 PauseExit - PAUSE exiting = 0 (1)
  1158. 00:00:04.268592 SecondaryExecCtl - Activate secondary controls = 0 (1)
  1159. 00:00:04.268592 VirtApic - Virtualize-APIC accesses = 0 (1)
  1160. 00:00:04.268593 Ept - Extended Page Tables = 0 (1)
  1161. 00:00:04.268593 DescTableExit - Descriptor-table exiting = 0 (1)
  1162. 00:00:04.268593 Rdtscp - Enable RDTSCP = 0 (1)
  1163. 00:00:04.268594 VirtX2ApicMode - Virtualize-x2APIC mode = 0 (1)
  1164. 00:00:04.268594 Vpid - Enable VPID = 0 (1)
  1165. 00:00:04.268594 WbinvdExit - WBINVD exiting = 0 (1)
  1166. 00:00:04.268595 UnrestrictedGuest - Unrestricted guest = 0 (1)
  1167. 00:00:04.268595 ApicRegVirt - APIC-register virtualization = 0 (0)
  1168. 00:00:04.268596 VirtIntDelivery - Virtual-interrupt delivery = 0 (0)
  1169. 00:00:04.268596 PauseLoopExit - PAUSE-loop exiting = 0 (1)
  1170. 00:00:04.268596 RdrandExit - RDRAND exiting = 0 (1)
  1171. 00:00:04.268597 Invpcid - Enable INVPCID = 0 (1)
  1172. 00:00:04.268597 VmFuncs - Enable VM Functions = 0 (1)
  1173. 00:00:04.268597 VmcsShadowing - VMCS shadowing = 0 (0)
  1174. 00:00:04.268598 RdseedExiting - RDSEED exiting = 0 (1)
  1175. 00:00:04.268598 PML - Page-Modification Log (PML) = 0 (1)
  1176. 00:00:04.268598 EptVe - EPT violations can cause #VE = 0 (1)
  1177. 00:00:04.268599 XsavesXRstors - Enable XSAVES/XRSTORS = 0 (1)
  1178. 00:00:04.268599 EntryLoadDebugCtls - Load debug controls on VM-entry = 0 (1)
  1179. 00:00:04.268599 Ia32eModeGuest - IA-32e mode guest = 0 (1)
  1180. 00:00:04.268600 EntryLoadEferMsr - Load IA32_EFER MSR on VM-entry = 0 (1)
  1181. 00:00:04.268600 EntryLoadPatMsr - Load IA32_PAT MSR on VM-entry = 0 (1)
  1182. 00:00:04.268600 ExitSaveDebugCtls - Save debug controls on VM-exit = 0 (1)
  1183. 00:00:04.268601 HostAddrSpaceSize - Host address-space size = 0 (1)
  1184. 00:00:04.268601 ExitAckExtInt - Acknowledge interrupt on VM-exit = 0 (1)
  1185. 00:00:04.268601 ExitSavePatMsr - Save IA32_PAT MSR on VM-exit = 0 (1)
  1186. 00:00:04.268602 ExitLoadPatMsr - Load IA32_PAT MSR on VM-exit = 0 (1)
  1187. 00:00:04.268602 ExitSaveEferMsr - Save IA32_EFER MSR on VM-exit = 0 (1)
  1188. 00:00:04.268602 ExitLoadEferMsr - Load IA32_EFER MSR on VM-exit = 0 (1)
  1189. 00:00:04.268603 SavePreemptTimer - Save VMX-preemption timer = 0 (1)
  1190. 00:00:04.268603 ExitSaveEferLma - Save IA32_EFER.LMA on VM-exit = 0 (1)
  1191. 00:00:04.268603 IntelPt - Intel PT (Processor Trace) in VMX operation = 0 (1)
  1192. 00:00:04.268604 VmwriteAll - VMWRITE to any supported VMCS field = 0 (1)
  1193. 00:00:04.268604 EntryInjectSoftInt - Inject softint. with 0-len instr. = 0 (1)
  1194. 00:00:04.268604
  1195. 00:00:04.268605 ******************* End of VT-x features ********************
  1196. 00:00:04.268615 VMEmt: Halt method global1 (5)
  1197. 00:00:04.268644 VMEmt: HaltedGlobal1 config: cNsSpinBlockThresholdCfg=50000
  1198. 00:00:04.268649 Changing the VM state from 'CREATING' to 'CREATED'
  1199. 00:00:04.269403 Changing the VM state from 'CREATED' to 'POWERING_ON'
  1200. 00:00:04.269586 Changing the VM state from 'POWERING_ON' to 'RUNNING'
  1201. 00:00:04.269596 Console: Machine state changed to 'Running'
  1202. 00:00:04.269859 GUI: Capturing keyboard on resume
  1203. 00:00:04.273302 VMMDev: Guest Log: BIOS: VirtualBox 6.1.38
  1204. 00:00:04.273364 PCI: Setting up resources and interrupts
  1205. 00:00:04.273711 PIT: mode=2 count=0x10000 (65536) - 18.20 Hz (ch=0)
  1206. 00:00:04.283780 Display::i_handleDisplayResize: uScreenId=0 pvVRAM=0000000000000000 w=720 h=400 bpp=0 cbLine=0x0 flags=0x0 origin=0,0
  1207. 00:00:04.284753 VMMDev: Guest Log: CPUID EDX: 0x178bfbff
  1208. 00:00:04.284866 PIIX3 ATA: Ctl#0: RESET, DevSel=0 AIOIf=0 CmdIf0=0x00 (-1 usec ago) CmdIf1=0x00 (-1 usec ago)
  1209. 00:00:04.284967 PIIX3 ATA: Ctl#0: finished processing RESET
  1210. 00:00:04.285616 VMMDev: Guest Log: BIOS: ata0-0: PCHS=16383/16/63 LCHS=1024/255/63
  1211. 00:00:04.286030 PIIX3 ATA: Ctl#1: RESET, DevSel=0 AIOIf=0 CmdIf0=0x00 (-1 usec ago) CmdIf1=0x00 (-1 usec ago)
  1212. 00:00:04.286057 PIIX3 ATA: Ctl#1: finished processing RESET
  1213. 00:00:04.287577 PIT: mode=2 count=0x48d3 (18643) - 64.00 Hz (ch=0)
  1214. 00:00:04.304389 Display::i_handleDisplayResize: uScreenId=0 pvVRAM=000000000d960000 w=640 h=480 bpp=32 cbLine=0xA00 flags=0x0 origin=0,0
  1215. 00:00:04.770541 GUI: UIMachineViewNormal::resendSizeHint: Restoring guest size-hint for screen 0 to 800x600
  1216. 00:00:04.774300 GUI: 2D video acceleration is disabled
  1217. 00:00:04.774595 GUI: HID LEDs sync is enabled
  1218. 00:00:04.781979 GUI: UIMachineLogicNormal::sltCheckForRequestedVisualStateType: Requested-state=0, Machine-state=5
  1219. 00:00:06.765719 PIT: mode=2 count=0x10000 (65536) - 18.20 Hz (ch=0)
  1220. 00:00:06.765961 VMMDev: Guest Log: BIOS: Boot : bseqnr=1, bootseq=0231
  1221. 00:00:06.766151 VMMDev: Guest Log: BIOS: Boot from Floppy 0 failed
  1222. 00:00:06.766355 VMMDev: Guest Log: BIOS: Boot : bseqnr=2, bootseq=0023
  1223. 00:00:06.766883 VMMDev: Guest Log: BIOS: CDROM boot failure code : 0003
  1224. 00:00:06.767055 VMMDev: Guest Log: BIOS: Boot from CD-ROM failed
  1225. 00:00:06.767325 VMMDev: Guest Log: BIOS: Boot : bseqnr=3, bootseq=0002
  1226. 00:00:06.767604 VMMDev: Guest Log: BIOS: Boot from Hard Disk 0 failed
  1227. 00:00:06.768137 VMMDev: Guest Log: No bootable medium found! System halted.
  1228. 00:00:06.820698 Display::i_handleDisplayResize: uScreenId=0 pvVRAM=0000000000000000 w=720 h=400 bpp=0 cbLine=0x0 flags=0x0 origin=0,0
  1229. 00:00:09.647837 GUI: Machine-window #0 deactivated
  1230. 00:00:09.647861 GUI: Releasing mouse on focus out
  1231. 00:00:09.647883 GUI: Releasing keyboard on focus out
  1232. 00:00:09.658852 GUI: Machine-view #0 unfocused, reason=3
  1233. 00:03:10.549977 GUI: Machine-window #0 activated
  1234. 00:03:10.550071 GUI: Capturing keyboard on focus in
  1235. 00:03:10.550097 GUI: Machine-view #0 focused, reason=3
  1236. 00:03:10.550149 GUI: Releasing mouse on focus out
  1237. 00:03:10.550168 GUI: Releasing keyboard on focus out
  1238. 00:03:10.554023 GUI: Machine-view #0 unfocused, reason=0
  1239. 00:03:10.634230 GUI: Capturing keyboard on focus in
  1240. 00:03:10.634258 GUI: Machine-view #0 focused, reason=7
  1241. 00:03:11.975343 GUI: Machine-window #0 deactivated
  1242. 00:03:11.975372 GUI: Releasing mouse on focus out
  1243. 00:03:11.975380 GUI: Releasing keyboard on focus out
  1244. 00:03:11.980242 GUI: Machine-view #0 unfocused, reason=3
  1245. 00:03:15.669512 GUI: Machine-window #0 activated
  1246. 00:03:15.669604 GUI: Machine-view #0 focused, reason=3
  1247. 00:03:15.670745 GUI: Capturing keyboard/mouse on mouse click
  1248. 00:03:29.777719 GUI: Releasing keyboard/mouse on Host Combo release
  1249. 00:03:32.329039 GUI: Releasing mouse on focus out
  1250. 00:03:32.329065 GUI: Releasing keyboard on focus out
  1251. 00:03:32.329477 GUI: Machine-view #0 unfocused, reason=4
  1252. 00:03:57.242921 GUI: Capturing keyboard on focus in
  1253. 00:03:57.242956 GUI: Machine-view #0 focused, reason=4
  1254. 00:03:57.244603 GUI: Releasing mouse on focus out
  1255. 00:03:57.244621 GUI: Releasing keyboard on focus out
  1256. 00:03:57.245341 GUI: Machine-view #0 unfocused, reason=7
  1257. 00:03:57.246197 GUI: UIMediumEnumerator: Medium-enumeration started...
  1258. 00:03:57.268736 GUI: UIMediumEnumerator: Medium-enumeration finished!
  1259. 00:03:57.270841 GUI: Machine-window #0 deactivated
  1260. 00:03:59.165712 GUI: Machine-window #0 activated
  1261. 00:03:59.165752 GUI: Capturing keyboard on focus in
  1262. 00:03:59.165764 GUI: Machine-view #0 focused, reason=3
  1263. 00:04:00.234183 GUI: Releasing mouse on focus out
  1264. 00:04:00.234375 GUI: Releasing keyboard on focus out
  1265. 00:04:00.235666 GUI: Machine-view #0 unfocused, reason=4
  1266. 00:04:04.989599 GUI: Capturing keyboard on focus in
  1267. 00:04:04.989672 GUI: Machine-view #0 focused, reason=4
  1268. 00:04:05.076952 GUI: Machine-window #0 deactivated
  1269. 00:04:05.076979 GUI: Releasing mouse on focus out
  1270. 00:04:05.076987 GUI: Releasing keyboard on focus out
  1271. 00:04:05.080549 GUI: Machine-view #0 unfocused, reason=3
  1272. 00:04:06.252930 GUI: Machine-window #0 activated
  1273. 00:04:06.252959 GUI: Machine-view #0 focused, reason=3
  1274. 00:04:14.304066 GUI: Releasing mouse on focus out
  1275. 00:04:14.304223 GUI: Releasing keyboard on focus out
  1276. 00:04:14.305508 GUI: Machine-view #0 unfocused, reason=4
  1277. 00:04:15.347021 GUI: Capturing keyboard on focus in
  1278. 00:04:15.347053 GUI: Machine-view #0 focused, reason=4
  1279. 00:04:15.429614 GUI: Machine-window #0 deactivated
  1280. 00:04:15.429642 GUI: Releasing mouse on focus out
  1281. 00:04:15.429650 GUI: Releasing keyboard on focus out
  1282. 00:04:15.433205 GUI: Machine-view #0 unfocused, reason=3
  1283. 00:04:16.652592 GUI: Machine-window #0 activated
  1284. 00:04:16.652634 GUI: Machine-view #0 focused, reason=3
  1285. 00:04:17.653469 Changing the VM state from 'RUNNING' to 'SUSPENDING'
  1286. 00:04:17.733185 PDMR3Suspend: 79 694 931 ns run time
  1287. 00:04:17.733196 Changing the VM state from 'SUSPENDING' to 'SUSPENDED'
  1288. 00:04:17.733206 Console: Machine state changed to 'Paused'
  1289. 00:04:17.742226 GUI: Machine-window #0 deactivated
  1290. 00:04:17.742253 GUI: Releasing mouse on focus out
  1291. 00:04:17.742265 GUI: Releasing keyboard on focus out
  1292. 00:04:17.746857 GUI: Machine-view #0 unfocused, reason=3
  1293. 00:04:17.754321 GUI: Releasing keyboard on pause/stuck
  1294. 00:04:17.754610 GUI: Releasing mouse on pause/stuck
  1295. 00:04:19.150655 GUI: Machine-window #0 activated
  1296. 00:04:19.150685 GUI: Machine-view #0 focused, reason=3
  1297. 00:04:19.151568 GUI: Request for close-action to power VM off.
  1298. 00:04:19.151584 GUI: Passing request to power VM off from machine-logic to UI session.
  1299. 00:04:19.151587 GUI: Powering VM down on UI session power off request...
  1300. 00:04:19.151881 Console: Machine state changed to 'Stopping'
  1301. 00:04:19.152682 Console::powerDown(): A request to power off the VM has been issued (mMachineState=Stopping, InUninit=0)
  1302. 00:04:19.152869 Changing the VM state from 'SUSPENDED' to 'POWERING_OFF'
  1303. 00:04:19.152880 ****************** Guest state at power off for VCpu 0 ******************
  1304. 00:04:19.152886 Guest CPUM (VCPU 0) state:
  1305. 00:04:19.152888 eax=00000000 ebx=00000000 ecx=0000f000 edx=00000500 esi=00000548 edi=00000000
  1306. 00:04:19.152889 eip=00001d54 esp=000077aa ebp=000077d0 iopl=0 nv up di pl zr na pe nc
  1307. 00:04:19.152891 cs={f000 base=00000000000f0000 limit=0000ffff flags=0000009b} dr0=00000000 dr1=00000000
  1308. 00:04:19.152893 ds={f000 base=00000000000f0000 limit=0000ffff flags=00000093} dr2=00000000 dr3=00000000
  1309. 00:04:19.152894 es={0000 base=0000000000000000 limit=0000ffff flags=00000093} dr4=00000000 dr5=00000000
  1310. 00:04:19.152895 fs={0000 base=0000000000000000 limit=0000ffff flags=00000093} dr6=ffff0ff0 dr7=00000400
  1311. 00:04:19.152896 gs={0000 base=0000000000000000 limit=0000ffff flags=00000093} cr0=00000010 cr2=00000000
  1312. 00:04:19.152897 ss={0000 base=0000000000000000 limit=0000ffff flags=00000093} cr3=00000000 cr4=00000000
  1313. 00:04:19.152898 gdtr=00000000000fe89f:0047 idtr=0000000000000000:ffff eflags=00200002
  1314. 00:04:19.152899 ldtr={0000 base=00000000 limit=0000ffff flags=00000082}
  1315. 00:04:19.152900 tr ={0000 base=00000000 limit=0000ffff flags=0000008b}
  1316. 00:04:19.152901 SysEnter={cs=0000 eip=00000000 esp=00000000}
  1317. 00:04:19.152901 xcr=0000000000000001 xcr1=0000000000000000 xss=0000000000000000 (fXStateMask=0000000000000000)
  1318. 00:04:19.152903 FCW=037f FSW=0000 FTW=0000 FOP=0000 MXCSR=00001f80 MXCSR_MASK=0000ffff
  1319. 00:04:19.152904 FPUIP=00000000 CS=0000 Rsrvd1=0000 FPUDP=00000000 DS=0000 Rsvrd2=0000
  1320. 00:04:19.152905 ST(0)=FPR0={0000'00000000'00000000} t0 +0.0000000000000000000000 * 2 ^ -16383 (*)
  1321. 00:04:19.152907 ST(1)=FPR1={0000'00000000'00000000} t0 +0.0000000000000000000000 * 2 ^ -16383 (*)
  1322. 00:04:19.152908 ST(2)=FPR2={0000'00000000'00000000} t0 +0.0000000000000000000000 * 2 ^ -16383 (*)
  1323. 00:04:19.152909 ST(3)=FPR3={0000'00000000'00000000} t0 +0.0000000000000000000000 * 2 ^ -16383 (*)
  1324. 00:04:19.152910 ST(4)=FPR4={0000'00000000'00000000} t0 +0.0000000000000000000000 * 2 ^ -16383 (*)
  1325. 00:04:19.152911 ST(5)=FPR5={0000'00000000'00000000} t0 +0.0000000000000000000000 * 2 ^ -16383 (*)
  1326. 00:04:19.152912 ST(6)=FPR6={0000'00000000'00000000} t0 +0.0000000000000000000000 * 2 ^ -16383 (*)
  1327. 00:04:19.152913 ST(7)=FPR7={0000'00000000'00000000} t0 +0.0000000000000000000000 * 2 ^ -16383 (*)
  1328. 00:04:19.152914 XMM0 =00000000'00000000'00000000'00000000 XMM1 =00000000'00000000'00000000'00000000
  1329. 00:04:19.152916 XMM2 =00000000'00000000'00000000'00000000 XMM3 =00000000'00000000'00000000'00000000
  1330. 00:04:19.152917 XMM4 =00000000'00000000'00000000'00000000 XMM5 =00000000'00000000'00000000'00000000
  1331. 00:04:19.152918 XMM6 =00000000'00000000'00000000'00000000 XMM7 =00000000'00000000'00000000'00000000
  1332. 00:04:19.152919 XMM8 =00000000'00000000'00000000'00000000 XMM9 =00000000'00000000'00000000'00000000
  1333. 00:04:19.152920 XMM10=00000000'00000000'00000000'00000000 XMM11=00000000'00000000'00000000'00000000
  1334. 00:04:19.152921 XMM12=00000000'00000000'00000000'00000000 XMM13=00000000'00000000'00000000'00000000
  1335. 00:04:19.152922 XMM14=00000000'00000000'00000000'00000000 XMM15=00000000'00000000'00000000'00000000
  1336. 00:04:19.152923 EFER =0000000000000000
  1337. 00:04:19.152924 PAT =0007040600070406
  1338. 00:04:19.152924 STAR =0000000000000000
  1339. 00:04:19.152925 CSTAR =0000000000000000
  1340. 00:04:19.152925 LSTAR =0000000000000000
  1341. 00:04:19.152925 SFMASK =0000000000000000
  1342. 00:04:19.152925 KERNELGSBASE =0000000000000000
  1343. 00:04:19.152927 ***
  1344. 00:04:19.152929 VCPU[0] hardware virtualization state:
  1345. 00:04:19.152930 fLocalForcedActions = 0x0
  1346. 00:04:19.152930 No/inactive hwvirt state
  1347. 00:04:19.152931 ***
  1348. 00:04:19.152934 Guest paging mode (VCPU #0): Real (changed 4 times), A20 disabled (changed 1 times)
  1349. 00:04:19.152938 Shadow paging mode (VCPU #0): EPT
  1350. 00:04:19.152939 Host paging mode: AMD64+NX
  1351. 00:04:19.152940 ***
  1352. 00:04:19.152941 Active Timers (pVM=000000000b030000)
  1353. 00:04:19.152941 pTimerR3 offNext offPrev offSched Clock Time Expire HzHint State Description
  1354. 00:04:19.152944 000000000b654200 00000780 00000000 00000000 Real 1686539410 1686537931 0 2-ACTIVE VGA Refresh Timer
  1355. 00:04:19.152958 000000000b654980 ffffff80 fffff880 00000000 Real 1686539410 1686537934 0 2-ACTIVE EMT Yielder
  1356. 00:04:19.152960 000000000b654900 00000000 00000080 00000000 Real 1686539410 1686538779 0 2-ACTIVE CPU Load Timer
  1357. 00:04:19.152962 000000000b64d680 00000100 00000000 00000000 VrSy 253383701621 253395035069 18 2-ACTIVE i8254 Programmable Interval Timer
  1358. 00:04:19.152965 000000000b64d780 00007080 ffffff00 00000000 VrSy 253383701621 253990000000 0 2-ACTIVE MC146818 RTC (CMOS) - Second
  1359. 00:04:19.152967 000000000b654800 00000000 ffff8f80 00000000 VrSy 253383701621 599932015941 0 2-ACTIVE ACPI PM Timer
  1360. 00:04:19.152970 ***
  1361. 00:04:19.152971 Guest GDT (GCAddr=00000000000fe89f limit=47):
  1362. 00:04:19.152976 0010 - 0000ffff 00cf9b00 - base=00000000 limit=ffffffff dpl=0 CodeER Accessed Present Page 32-bit
  1363. 00:04:19.152977 0018 - 0000ffff 00cf9300 - base=00000000 limit=ffffffff dpl=0 DataRW Accessed Present Page 32-bit
  1364. 00:04:19.152978 0020 - 0000ffff 00009b0f - base=000f0000 limit=0000ffff dpl=0 CodeER Accessed Present 16-bit
  1365. 00:04:19.152979 0028 - 0000ffff 00009300 - base=00000000 limit=0000ffff dpl=0 DataRW Accessed Present 16-bit
  1366. 00:04:19.152980 0040 - 0400ffff 00009300 - base=00000400 limit=0000ffff dpl=0 DataRW Accessed Present 16-bit
  1367. 00:04:19.152981 ************** End of Guest state at power off ***************
  1368. 00:04:19.153221 PDMR3PowerOff: 228 134 ns run time
  1369. 00:04:19.153236 Changing the VM state from 'POWERING_OFF' to 'OFF'
  1370. 00:04:19.153905 Changing the VM state from 'OFF' to 'DESTROYING'
  1371. 00:04:19.153971 ************************* Statistics *************************
  1372. 00:04:19.153975 /CPUM/MSR-Totals/Reads 0 times
  1373. 00:04:19.153978 /CPUM/MSR-Totals/ReadsRaisingGP 0 times
  1374. 00:04:19.153981 /CPUM/MSR-Totals/ReadsUnknown 0 times
  1375. 00:04:19.153983 /CPUM/MSR-Totals/Writes 0 times
  1376. 00:04:19.153986 /CPUM/MSR-Totals/WritesRaisingGP 0 times
  1377. 00:04:19.153988 /CPUM/MSR-Totals/WritesToIgnoredBits 0 times
  1378. 00:04:19.153990 /CPUM/MSR-Totals/WritesUnknown 0 times
  1379. 00:04:19.153993 /Devices/8237A/DmaRun 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
  1380. 00:04:19.153996 /Devices/IDE0/ATA0/Unit0/AtapiDMA 0 times
  1381. 00:04:19.153999 /Devices/IDE0/ATA0/Unit0/AtapiPIO 0 times
  1382. 00:04:19.154001 /Devices/IDE0/ATA0/Unit0/DMA 0 times
  1383. 00:04:19.154003 /Devices/IDE0/ATA0/Unit0/PIO 2 times
  1384. 00:04:19.154006 /Devices/IDE0/ATA0/Unit0/ReadBytes 512 bytes
  1385. 00:04:19.154008 /Devices/IDE0/ATA0/Unit0/StatusYields 1329 ticks/call ( 2658 ticks, 2 times, max 1940, min 718)
  1386. 00:04:19.154011 /Devices/IDE0/ATA0/Unit0/WrittenBytes 0 bytes
  1387. 00:04:19.154014 /Devices/IDE0/ATA0/Unit1/AtapiDMA 0 times
  1388. 00:04:19.154016 /Devices/IDE0/ATA0/Unit1/AtapiPIO 0 times
  1389. 00:04:19.154018 /Devices/IDE0/ATA0/Unit1/DMA 0 times
  1390. 00:04:19.154020 /Devices/IDE0/ATA0/Unit1/PIO 0 times
  1391. 00:04:19.154022 /Devices/IDE0/ATA0/Unit1/ReadBytes 0 bytes
  1392. 00:04:19.154025 /Devices/IDE0/ATA0/Unit1/StatusYields 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
  1393. 00:04:19.154027 /Devices/IDE0/ATA0/Unit1/WrittenBytes 0 bytes
  1394. 00:04:19.154030 /Devices/IDE0/ATA1/Unit0/AtapiDMA 0 times
  1395. 00:04:19.154032 /Devices/IDE0/ATA1/Unit0/AtapiPIO 0 times
  1396. 00:04:19.154034 /Devices/IDE0/ATA1/Unit0/DMA 0 times
  1397. 00:04:19.154036 /Devices/IDE0/ATA1/Unit0/PIO 0 times
  1398. 00:04:19.154039 /Devices/IDE0/ATA1/Unit0/ReadBytes 0 bytes
  1399. 00:04:19.154041 /Devices/IDE0/ATA1/Unit0/StatusYields 1458 ticks/call ( 7292 ticks, 5 times, max 3714, min 564)
  1400. 00:04:19.154044 /Devices/IDE0/ATA1/Unit0/WrittenBytes 0 bytes
  1401. 00:04:19.154046 /Devices/IDE0/ATA1/Unit1/AtapiDMA 0 times
  1402. 00:04:19.154049 /Devices/IDE0/ATA1/Unit1/AtapiPIO 0 times
  1403. 00:04:19.154051 /Devices/IDE0/ATA1/Unit1/DMA 0 times
  1404. 00:04:19.154053 /Devices/IDE0/ATA1/Unit1/PIO 0 times
  1405. 00:04:19.154055 /Devices/IDE0/ATA1/Unit1/ReadBytes 0 bytes
  1406. 00:04:19.154057 /Devices/IDE0/ATA1/Unit1/StatusYields 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
  1407. 00:04:19.154060 /Devices/IDE0/ATA1/Unit1/WrittenBytes 0 bytes
  1408. 00:04:19.154062 /Devices/VMMDev/BalloonChunks 0 count
  1409. 00:04:19.154065 /Devices/VMMDev/FastIrqAckR3 0 count
  1410. 00:04:19.154067 /Devices/VMMDev/FastIrqAckRZ 0 count
  1411. 00:04:19.154069 /Devices/VMMDev/HGCM-Guest/BudgetAvailable 265972544 bytes
  1412. 00:04:19.154072 /Devices/VMMDev/HGCM-Guest/BudgetConfig 265972544 bytes
  1413. 00:04:19.154075 /Devices/VMMDev/HGCM-Guest/cTotalMessages 0 count
  1414. 00:04:19.154080 /Devices/VMMDev/HGCM-Guest/cbHeapTotal 0 bytes
  1415. 00:04:19.154085 /Devices/VMMDev/HGCM-Legacy/BudgetAvailable 265972544 bytes
  1416. 00:04:19.154087 /Devices/VMMDev/HGCM-Legacy/BudgetConfig 265972544 bytes
  1417. 00:04:19.154090 /Devices/VMMDev/HGCM-Legacy/cTotalMessages 0 count
  1418. 00:04:19.154092 /Devices/VMMDev/HGCM-Legacy/cbHeapTotal 0 bytes
  1419. 00:04:19.154094 /Devices/VMMDev/HGCM-OtherDrv/BudgetAvailable 265972544 bytes
  1420. 00:04:19.154097 /Devices/VMMDev/HGCM-OtherDrv/BudgetConfig 265972544 bytes
  1421. 00:04:19.154099 /Devices/VMMDev/HGCM-OtherDrv/cTotalMessages 0 count
  1422. 00:04:19.154101 /Devices/VMMDev/HGCM-OtherDrv/cbHeapTotal 0 bytes
  1423. 00:04:19.154104 /Devices/VMMDev/HGCM-Reserved1/BudgetAvailable 265972544 bytes
  1424. 00:04:19.154106 /Devices/VMMDev/HGCM-Reserved1/BudgetConfig 265972544 bytes
  1425. 00:04:19.154108 /Devices/VMMDev/HGCM-Reserved1/cTotalMessages 0 count
  1426. 00:04:19.154111 /Devices/VMMDev/HGCM-Reserved1/cbHeapTotal 0 bytes
  1427. 00:04:19.154113 /Devices/VMMDev/HGCM-Root/BudgetAvailable 265972544 bytes
  1428. 00:04:19.154115 /Devices/VMMDev/HGCM-Root/BudgetConfig 265972544 bytes
  1429. 00:04:19.154117 /Devices/VMMDev/HGCM-Root/cTotalMessages 0 count
  1430. 00:04:19.154119 /Devices/VMMDev/HGCM-Root/cbHeapTotal 0 bytes
  1431. 00:04:19.154122 /Devices/VMMDev/HGCM-System/BudgetAvailable 265972544 bytes
  1432. 00:04:19.154124 /Devices/VMMDev/HGCM-System/BudgetConfig 265972544 bytes
  1433. 00:04:19.154126 /Devices/VMMDev/HGCM-System/cTotalMessages 0 count
  1434. 00:04:19.154128 /Devices/VMMDev/HGCM-System/cbHeapTotal 0 bytes
  1435. 00:04:19.154131 /Devices/VMMDev/HGCM-User/BudgetAvailable 265972544 bytes
  1436. 00:04:19.154133 /Devices/VMMDev/HGCM-User/BudgetConfig 265972544 bytes
  1437. 00:04:19.154136 /Devices/VMMDev/HGCM-User/cTotalMessages 0 count
  1438. 00:04:19.154138 /Devices/VMMDev/HGCM-User/cbHeapTotal 0 bytes
  1439. 00:04:19.154140 /Devices/VMMDev/HGCM-VBoxGuest/BudgetAvailable 265972544 bytes
  1440. 00:04:19.154143 /Devices/VMMDev/HGCM-VBoxGuest/BudgetConfig 265972544 bytes
  1441. 00:04:19.154145 /Devices/VMMDev/HGCM-VBoxGuest/cTotalMessages 0 count
  1442. 00:04:19.154147 /Devices/VMMDev/HGCM-VBoxGuest/cbHeapTotal 0 bytes
  1443. 00:04:19.154149 /Devices/VMMDev/LargeReqBufAllocs 0 count
  1444. 00:04:19.154152 /Devices/VMMDev/SlowIrqAck 0 count
  1445. 00:04:19.154154 /Devices/e1000#0/ReceiveBytes 0 bytes
  1446. 00:04:19.154156 /Devices/e1000#0/TransmitBytes 0 bytes
  1447. 00:04:19.154158 /Devices/e1000#0/iStatIntLost 0 ns
  1448. 00:04:19.154161 /Devices/e1000#0/iStatIntLostOne 0 ns
  1449. 00:04:19.154163 /Devices/e1000#0/u64ArmedAt 0 ns
  1450. 00:04:19.154166 /Devices/e1000#0/uStatDescCtx 0 ns
  1451. 00:04:19.154168 /Devices/e1000#0/uStatDescDat 0 ns
  1452. 00:04:19.154170 /Devices/e1000#0/uStatDescLeg 0 ns
  1453. 00:04:19.154173 /Devices/e1000#0/uStatInt 0 ns
  1454. 00:04:19.154175 /Devices/e1000#0/uStatIntEarly 0 ns
  1455. 00:04:19.154177 /Devices/e1000#0/uStatIntICS 0 ns
  1456. 00:04:19.154179 /Devices/e1000#0/uStatIntIMS 0 ns
  1457. 00:04:19.154181 /Devices/e1000#0/uStatIntLate 0 ns
  1458. 00:04:19.154183 /Devices/e1000#0/uStatIntLower 0 ns
  1459. 00:04:19.154186 /Devices/e1000#0/uStatIntMasked 0 ns
  1460. 00:04:19.154188 /Devices/e1000#0/uStatIntRDTR 0 ns
  1461. 00:04:19.154190 /Devices/e1000#0/uStatIntRXDMT0 0 ns
  1462. 00:04:19.154192 /Devices/e1000#0/uStatIntRx 0 ns
  1463. 00:04:19.154195 /Devices/e1000#0/uStatIntSkip 0 ns
  1464. 00:04:19.154197 /Devices/e1000#0/uStatIntTXQE 0 ns
  1465. 00:04:19.154199 /Devices/e1000#0/uStatIntTry 0 ns
  1466. 00:04:19.154201 /Devices/e1000#0/uStatIntTx 0 ns
  1467. 00:04:19.154203 /Devices/e1000#0/uStatMaxTxDelay 0 ns
  1468. 00:04:19.154205 /Devices/e1000#0/uStatNoIntICR 0 ns
  1469. 00:04:19.154208 /Devices/e1000#0/uStatRAD 0 ns
  1470. 00:04:19.154210 /Devices/e1000#0/uStatRID 0 ns
  1471. 00:04:19.154212 /Devices/e1000#0/uStatRxFrm 0 ns
  1472. 00:04:19.154214 /Devices/e1000#0/uStatTAD 0 ns
  1473. 00:04:19.154216 /Devices/e1000#0/uStatTID 0 ns
  1474. 00:04:19.154220 /Devices/e1000#0/uStatTx1514 0 ns
  1475. 00:04:19.154223 /Devices/e1000#0/uStatTx16384 0 ns
  1476. 00:04:19.154225 /Devices/e1000#0/uStatTx2962 0 ns
  1477. 00:04:19.154227 /Devices/e1000#0/uStatTx32768 0 ns
  1478. 00:04:19.154229 /Devices/e1000#0/uStatTx4410 0 ns
  1479. 00:04:19.154232 /Devices/e1000#0/uStatTx5858 0 ns
  1480. 00:04:19.154234 /Devices/e1000#0/uStatTx7306 0 ns
  1481. 00:04:19.154236 /Devices/e1000#0/uStatTx8754 0 ns
  1482. 00:04:19.154238 /Devices/e1000#0/uStatTxDelayExp 0 ns
  1483. 00:04:19.154240 /Devices/e1000#0/uStatTxDelayed 0 ns
  1484. 00:04:19.154243 /Devices/e1000#0/uStatTxFrm 0 ns
  1485. 00:04:19.154245 /Devices/e1000#0/uStatTxIDE 0 ns
  1486. 00:04:19.154247 /Devices/e1000#0/uStatTxLarge 0 ns
  1487. 00:04:19.154249 /Devices/e1000#0/uStatTxNoRS 0 ns
  1488. 00:04:19.154253 /Devices/ichac97/Stream0/reg-CR 0
  1489. 00:04:19.154256 /Devices/ichac97/Stream0/reg-SR 0
  1490. 00:04:19.154259 /Devices/ichac97/Stream1/reg-CR 0
  1491. 00:04:19.154261 /Devices/ichac97/Stream1/reg-SR 0
  1492. 00:04:19.154265 /Devices/ichac97/Stream2/reg-CR 0
  1493. 00:04:19.154267 /Devices/ichac97/Stream2/reg-SR 0
  1494. 00:04:19.154269 /Devices/ichac97/UnimplementedNabmReads 0 times
  1495. 00:04:19.154271 /Devices/ichac97/UnimplementedNabmWrites 0 times
  1496. 00:04:19.154273 /Devices/ichac97/UnimplementedNamReads 0 times
  1497. 00:04:19.154276 /Devices/ichac97/UnimplementedNamWrites 0 times
  1498. 00:04:19.154278 /Devices/mc146818/Irq 0 times
  1499. 00:04:19.154281 /Devices/mc146818/TimerCB 0 times
  1500. 00:04:19.154283 /Devices/vga/HgmsiMdaCgaAccesses 0 times
  1501. 00:04:19.154285 /Devices/vga/VMSVGA/Cmd/3dActivateSurface 0 times
  1502. 00:04:19.154288 /Devices/vga/VMSVGA/Cmd/3dBeginQuery 0 times
  1503. 00:04:19.154290 /Devices/vga/VMSVGA/Cmd/3dBlitSurfaceToScreenProf 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
  1504. 00:04:19.154293 /Devices/vga/VMSVGA/Cmd/3dClear 0 times
  1505. 00:04:19.154296 /Devices/vga/VMSVGA/Cmd/3dContextDefine 0 times
  1506. 00:04:19.154298 /Devices/vga/VMSVGA/Cmd/3dContextDestroy 0 times
  1507. 00:04:19.154300 /Devices/vga/VMSVGA/Cmd/3dDeactivateSurface 0 times
  1508. 00:04:19.154302 /Devices/vga/VMSVGA/Cmd/3dDrawPrimitives 0 times
  1509. 00:04:19.154304 /Devices/vga/VMSVGA/Cmd/3dEndQuery 0 times
  1510. 00:04:19.154307 /Devices/vga/VMSVGA/Cmd/3dGenerateMipmaps 0 times
  1511. 00:04:19.154309 /Devices/vga/VMSVGA/Cmd/3dPresent 0 times
  1512. 00:04:19.154311 /Devices/vga/VMSVGA/Cmd/3dPresentReadBack 0 times
  1513. 00:04:19.154313 /Devices/vga/VMSVGA/Cmd/3dSetClipPlane 0 times
  1514. 00:04:19.154316 /Devices/vga/VMSVGA/Cmd/3dSetLightData 0 times
  1515. 00:04:19.154318 /Devices/vga/VMSVGA/Cmd/3dSetLightEnable 0 times
  1516. 00:04:19.154320 /Devices/vga/VMSVGA/Cmd/3dSetMaterial 0 times
  1517. 00:04:19.154322 /Devices/vga/VMSVGA/Cmd/3dSetRenderState 0 times
  1518. 00:04:19.154324 /Devices/vga/VMSVGA/Cmd/3dSetRenderTarget 0 times
  1519. 00:04:19.154327 /Devices/vga/VMSVGA/Cmd/3dSetScissorRect 0 times
  1520. 00:04:19.154329 /Devices/vga/VMSVGA/Cmd/3dSetShader 0 times
  1521. 00:04:19.154331 /Devices/vga/VMSVGA/Cmd/3dSetShaderConst 0 times
  1522. 00:04:19.154333 /Devices/vga/VMSVGA/Cmd/3dSetTextureState 0 times
  1523. 00:04:19.154335 /Devices/vga/VMSVGA/Cmd/3dSetTransform 0 times
  1524. 00:04:19.154337 /Devices/vga/VMSVGA/Cmd/3dSetViewPort 0 times
  1525. 00:04:19.154340 /Devices/vga/VMSVGA/Cmd/3dSetZRange 0 times
  1526. 00:04:19.154342 /Devices/vga/VMSVGA/Cmd/3dShaderDefine 0 times
  1527. 00:04:19.154344 /Devices/vga/VMSVGA/Cmd/3dShaderDestroy 0 times
  1528. 00:04:19.154346 /Devices/vga/VMSVGA/Cmd/3dSurfaceCopy 0 times
  1529. 00:04:19.154348 /Devices/vga/VMSVGA/Cmd/3dSurfaceDefine 0 times
  1530. 00:04:19.154350 /Devices/vga/VMSVGA/Cmd/3dSurfaceDefineV2 0 times
  1531. 00:04:19.154352 /Devices/vga/VMSVGA/Cmd/3dSurfaceDestroy 0 times
  1532. 00:04:19.154355 /Devices/vga/VMSVGA/Cmd/3dSurfaceDma 0 times
  1533. 00:04:19.154358 /Devices/vga/VMSVGA/Cmd/3dSurfaceScreen 0 times
  1534. 00:04:19.154360 /Devices/vga/VMSVGA/Cmd/3dSurfaceStretchBlt 0 times
  1535. 00:04:19.154363 /Devices/vga/VMSVGA/Cmd/3dWaitForQuery 0 times
  1536. 00:04:19.154365 /Devices/vga/VMSVGA/Cmd/AnnotationCopy 0 times
  1537. 00:04:19.154367 /Devices/vga/VMSVGA/Cmd/AnnotationFill 0 times
  1538. 00:04:19.154369 /Devices/vga/VMSVGA/Cmd/BlitGmrFbToScreen 0 times
  1539. 00:04:19.154371 /Devices/vga/VMSVGA/Cmd/BlitScreentoGmrFb 0 times
  1540. 00:04:19.154373 /Devices/vga/VMSVGA/Cmd/DefineAlphaCursor 0 times
  1541. 00:04:19.154375 /Devices/vga/VMSVGA/Cmd/DefineCursor 0 times
  1542. 00:04:19.154377 /Devices/vga/VMSVGA/Cmd/DefineGmr2 0 times
  1543. 00:04:19.154379 /Devices/vga/VMSVGA/Cmd/DefineGmr2/Free 0 times
  1544. 00:04:19.154382 /Devices/vga/VMSVGA/Cmd/DefineGmr2/Modify 0 times
  1545. 00:04:19.154384 /Devices/vga/VMSVGA/Cmd/DefineGmrFb 0 times
  1546. 00:04:19.154386 /Devices/vga/VMSVGA/Cmd/DefineScreen 0 times
  1547. 00:04:19.154388 /Devices/vga/VMSVGA/Cmd/DestroyScreen 0 times
  1548. 00:04:19.154390 /Devices/vga/VMSVGA/Cmd/Escape 0 times
  1549. 00:04:19.154392 /Devices/vga/VMSVGA/Cmd/Fence 0 times
  1550. 00:04:19.154395 /Devices/vga/VMSVGA/Cmd/InvalidCmd 0 times
  1551. 00:04:19.154397 /Devices/vga/VMSVGA/Cmd/RemapGmr2 0 times
  1552. 00:04:19.154399 /Devices/vga/VMSVGA/Cmd/RemapGmr2/Modify 0 times
  1553. 00:04:19.154401 /Devices/vga/VMSVGA/Cmd/Update 0 times
  1554. 00:04:19.154404 /Devices/vga/VMSVGA/Cmd/UpdateVerbose 0 times
  1555. 00:04:19.154406 /Devices/vga/VMSVGA/EmtDelayOnBusyFifo 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
  1556. 00:04:19.154409 /Devices/vga/VMSVGA/FifoCommands 0 times
  1557. 00:04:19.154411 /Devices/vga/VMSVGA/FifoCursorFetchAgain 0 times
  1558. 00:04:19.154413 /Devices/vga/VMSVGA/FifoCursorNoChange 0 times
  1559. 00:04:19.154416 /Devices/vga/VMSVGA/FifoCursorPosition 0 times
  1560. 00:04:19.154418 /Devices/vga/VMSVGA/FifoCursorVisiblity 0 times
  1561. 00:04:19.154420 /Devices/vga/VMSVGA/FifoErrors 0 times
  1562. 00:04:19.154422 /Devices/vga/VMSVGA/FifoExtendedSleep 50692532118 ticks/call (912465578126 ticks, 18 times, max 54003882257, min 4702)
  1563. 00:04:19.154426 /Devices/vga/VMSVGA/FifoStalls 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
  1564. 00:04:19.154429 /Devices/vga/VMSVGA/FifoTodoTimeout 0 times
  1565. 00:04:19.154431 /Devices/vga/VMSVGA/FifoTodoWoken 0 times
  1566. 00:04:19.154433 /Devices/vga/VMSVGA/FifoUnknownCommands 0 times
  1567. 00:04:19.154435 /Devices/vga/VMSVGA/FifoWatchdogWakeUps 0 times
  1568. 00:04:19.154437 /Devices/vga/VMSVGA/Reg/BitsPerPixelRead 0 times
  1569. 00:04:19.154440 /Devices/vga/VMSVGA/Reg/BitsPerPixelWrite 0 times
  1570. 00:04:19.154442 /Devices/vga/VMSVGA/Reg/BlueMaskRead 0 times
  1571. 00:04:19.154444 /Devices/vga/VMSVGA/Reg/BusyRead 0 times
  1572. 00:04:19.154446 /Devices/vga/VMSVGA/Reg/BusyWrite 0 times
  1573. 00:04:19.154449 /Devices/vga/VMSVGA/Reg/BytesPerLineRead 0 times
  1574. 00:04:19.154451 /Devices/vga/VMSVGA/Reg/CapabilitesRead 0 times
  1575. 00:04:19.154453 /Devices/vga/VMSVGA/Reg/ConfigDoneRead 0 times
  1576. 00:04:19.154455 /Devices/vga/VMSVGA/Reg/ConfigDoneWrite 0 times
  1577. 00:04:19.154457 /Devices/vga/VMSVGA/Reg/CursorXxxxRead 0 times
  1578. 00:04:19.154459 /Devices/vga/VMSVGA/Reg/CursorXxxxWrite 0 times
  1579. 00:04:19.154461 /Devices/vga/VMSVGA/Reg/DepthRead 0 times
  1580. 00:04:19.154464 /Devices/vga/VMSVGA/Reg/DepthWrite 0 times
  1581. 00:04:19.154466 /Devices/vga/VMSVGA/Reg/DisplayHeightRead 0 times
  1582. 00:04:19.154468 /Devices/vga/VMSVGA/Reg/DisplayHeightWrite 0 times
  1583. 00:04:19.154470 /Devices/vga/VMSVGA/Reg/DisplayIdRead 0 times
  1584. 00:04:19.154472 /Devices/vga/VMSVGA/Reg/DisplayIdWrite 0 times
  1585. 00:04:19.154475 /Devices/vga/VMSVGA/Reg/DisplayIsPrimaryRead 0 times
  1586. 00:04:19.154477 /Devices/vga/VMSVGA/Reg/DisplayIsPrimaryWrite 0 times
  1587. 00:04:19.154479 /Devices/vga/VMSVGA/Reg/DisplayPositionXRead 0 times
  1588. 00:04:19.154482 /Devices/vga/VMSVGA/Reg/DisplayPositionXWrite 0 times
  1589. 00:04:19.154485 /Devices/vga/VMSVGA/Reg/DisplayPositionYRead 0 times
  1590. 00:04:19.154487 /Devices/vga/VMSVGA/Reg/DisplayPositionYWrite 0 times
  1591. 00:04:19.154489 /Devices/vga/VMSVGA/Reg/DisplayWidthRead 0 times
  1592. 00:04:19.154491 /Devices/vga/VMSVGA/Reg/DisplayWidthWrite 0 times
  1593. 00:04:19.154493 /Devices/vga/VMSVGA/Reg/EnableRead 0 times
  1594. 00:04:19.154495 /Devices/vga/VMSVGA/Reg/EnableWrite 0 times
  1595. 00:04:19.154497 /Devices/vga/VMSVGA/Reg/FbOffsetRead 0 times
  1596. 00:04:19.154500 /Devices/vga/VMSVGA/Reg/FbSizeRead 0 times
  1597. 00:04:19.154502 /Devices/vga/VMSVGA/Reg/FbStartRead 0 times
  1598. 00:04:19.154504 /Devices/vga/VMSVGA/Reg/GmrDescriptorWrite 0 times
  1599. 00:04:19.154506 /Devices/vga/VMSVGA/Reg/GmrDescriptorWrite/Errors 0 times
  1600. 00:04:19.154508 /Devices/vga/VMSVGA/Reg/GmrDescriptorWrite/Free 0 times
  1601. 00:04:19.154510 /Devices/vga/VMSVGA/Reg/GmrIdRead 0 times
  1602. 00:04:19.154513 /Devices/vga/VMSVGA/Reg/GmrIdWrite 0 times
  1603. 00:04:19.154515 /Devices/vga/VMSVGA/Reg/GmrMaxDescriptorLengthRead 0 times
  1604. 00:04:19.154517 /Devices/vga/VMSVGA/Reg/GmrMaxIdsRead 0 times
  1605. 00:04:19.154519 /Devices/vga/VMSVGA/Reg/GmrsMaxPagesRead 0 times
  1606. 00:04:19.154521 /Devices/vga/VMSVGA/Reg/GreenMaskRead 0 times
  1607. 00:04:19.154523 /Devices/vga/VMSVGA/Reg/GuestIdRead 0 times
  1608. 00:04:19.154525 /Devices/vga/VMSVGA/Reg/GuestIdWrite 0 times
  1609. 00:04:19.154527 /Devices/vga/VMSVGA/Reg/HeightRead 0 times
  1610. 00:04:19.154529 /Devices/vga/VMSVGA/Reg/HeightWrite 0 times
  1611. 00:04:19.154532 /Devices/vga/VMSVGA/Reg/HostBitsPerPixelRead 0 times
  1612. 00:04:19.154534 /Devices/vga/VMSVGA/Reg/IdRead 0 times
  1613. 00:04:19.154536 /Devices/vga/VMSVGA/Reg/IdWrite 0 times
  1614. 00:04:19.154539 /Devices/vga/VMSVGA/Reg/IrqMaskRead 0 times
  1615. 00:04:19.154541 /Devices/vga/VMSVGA/Reg/IrqMaskWrite 0 times
  1616. 00:04:19.154543 /Devices/vga/VMSVGA/Reg/MaxHeightRead 0 times
  1617. 00:04:19.154545 /Devices/vga/VMSVGA/Reg/MaxWidthRead 0 times
  1618. 00:04:19.154547 /Devices/vga/VMSVGA/Reg/MemRegsRead 0 times
  1619. 00:04:19.154550 /Devices/vga/VMSVGA/Reg/MemSizeRead 0 times
  1620. 00:04:19.154552 /Devices/vga/VMSVGA/Reg/MemStartRead 0 times
  1621. 00:04:19.154554 /Devices/vga/VMSVGA/Reg/MemorySizeRead 0 times
  1622. 00:04:19.154556 /Devices/vga/VMSVGA/Reg/NumDisplaysRead 0 times
  1623. 00:04:19.154558 /Devices/vga/VMSVGA/Reg/NumDisplaysWrite 0 times
  1624. 00:04:19.154560 /Devices/vga/VMSVGA/Reg/NumGuestDisplaysRead 0 times
  1625. 00:04:19.154563 /Devices/vga/VMSVGA/Reg/NumGuestDisplaysWrite 0 times
  1626. 00:04:19.154565 /Devices/vga/VMSVGA/Reg/PaletteRead 0 times
  1627. 00:04:19.154567 /Devices/vga/VMSVGA/Reg/PaletteWrite 0 times
  1628. 00:04:19.154569 /Devices/vga/VMSVGA/Reg/PitchLockRead 0 times
  1629. 00:04:19.154571 /Devices/vga/VMSVGA/Reg/PitchLockWrite 0 times
  1630. 00:04:19.154573 /Devices/vga/VMSVGA/Reg/PseudoColorWrite 0 times
  1631. 00:04:19.154575 /Devices/vga/VMSVGA/Reg/PsuedoColorRead 0 times
  1632. 00:04:19.154577 /Devices/vga/VMSVGA/Reg/ReadOnlyWrite 0 times
  1633. 00:04:19.154579 /Devices/vga/VMSVGA/Reg/RedMaskRead 0 times
  1634. 00:04:19.154581 /Devices/vga/VMSVGA/Reg/ScratchRead 0 times
  1635. 00:04:19.154584 /Devices/vga/VMSVGA/Reg/ScratchSizeRead 0 times
  1636. 00:04:19.154586 /Devices/vga/VMSVGA/Reg/ScratchWrite 0 times
  1637. 00:04:19.154588 /Devices/vga/VMSVGA/Reg/SyncRead 0 times
  1638. 00:04:19.154590 /Devices/vga/VMSVGA/Reg/SyncWrite 0 times
  1639. 00:04:19.154592 /Devices/vga/VMSVGA/Reg/TopRead 0 times
  1640. 00:04:19.154594 /Devices/vga/VMSVGA/Reg/TopWrite 0 times
  1641. 00:04:19.154596 /Devices/vga/VMSVGA/Reg/TracesRead 0 times
  1642. 00:04:19.154598 /Devices/vga/VMSVGA/Reg/TracesWrite 0 times
  1643. 00:04:19.154600 /Devices/vga/VMSVGA/Reg/UnknownRead 0 times
  1644. 00:04:19.154602 /Devices/vga/VMSVGA/Reg/UnknownWrite 0 times
  1645. 00:04:19.154605 /Devices/vga/VMSVGA/Reg/VramSizeRead 0 times
  1646. 00:04:19.154608 /Devices/vga/VMSVGA/Reg/WidthRead 0 times
  1647. 00:04:19.154610 /Devices/vga/VMSVGA/Reg/WidthWrite 0 times
  1648. 00:04:19.154612 /Devices/vga/VMSVGA/Reg/WriteOnlyRead 0 times
  1649. 00:04:19.154615 /Drivers/AUDIO-0/TotalStreamsCreated 0 count
  1650. 00:04:19.154617 /Drivers/AUDIO-1/TotalStreamsCreated 0 count
  1651. 00:04:19.154620 /Drivers/AUDIO-2/TotalStreamsCreated 0 count
  1652. 00:04:19.154625 /EM/CPU0/ExitHashing/Used 0 times
  1653. 00:04:19.154627 /EM/CPU0/ExitOpt/Exec 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
  1654. 00:04:19.154630 /EM/CPU0/ExitOpt/ExecInstructions 0 times
  1655. 00:04:19.154632 /EM/CPU0/ExitOpt/ExecSavedExit 0 times
  1656. 00:04:19.154634 /EM/CPU0/ExitOpt/Probe 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
  1657. 00:04:19.154637 /EM/CPU0/ExitOpt/ProbeInstructions 0 times
  1658. 00:04:19.154639 /EM/CPU0/ExitOpt/ProbedExecWithMax 0 times
  1659. 00:04:19.154641 /EM/CPU0/ExitOpt/ProbedNormal 0 times
  1660. 00:04:19.154643 /EM/CPU0/ExitOpt/ProbedToRing3 0 times
  1661. 00:04:19.154647 /GMM/ChunkTlbHits 8909 times
  1662. 00:04:19.154649 /GMM/ChunkTlbMisses 1 times
  1663. 00:04:19.154656 /GMM/VM/Allocated/cBasePages 545 pages
  1664. 00:04:19.154659 /GMM/VM/Allocated/cFixedPages 0 pages
  1665. 00:04:19.154662 /GMM/VM/Allocated/cShadowPages 0 pages
  1666. 00:04:19.154664 /GMM/VM/Reserved/cBasePages 1048679 pages
  1667. 00:04:19.154666 /GMM/VM/Reserved/cFixedPages 5636 pages
  1668. 00:04:19.154669 /GMM/VM/Reserved/cShadowPages 1 pages
  1669. 00:04:19.154671 /GMM/VM/cBalloonedPages 0 pages
  1670. 00:04:19.154673 /GMM/VM/cMaxBalloonedPages 0 pages
  1671. 00:04:19.154676 /GMM/VM/cPrivatePages 545 pages
  1672. 00:04:19.154678 /GMM/VM/cReqActuallyBalloonedPages 0 pages
  1673. 00:04:19.154680 /GMM/VM/cReqBalloonedPages 0 pages
  1674. 00:04:19.154683 /GMM/VM/cReqDeflatePages 0 pages
  1675. 00:04:19.154685 /GMM/VM/cShareableModules 0 count
  1676. 00:04:19.154687 /GMM/VM/cSharedPages 0 pages
  1677. 00:04:19.154690 /GMM/VM/enmPolicy 1
  1678. 00:04:19.154692 /GMM/VM/enmPriority 2
  1679. 00:04:19.154695 /GMM/VM/fBallooningEnabled false
  1680. 00:04:19.154697 /GMM/VM/fMayAllocate true
  1681. 00:04:19.154699 /GMM/VM/fSharedPagingEnabled false
  1682. 00:04:19.154702 /GMM/cAllocatedPages 545 pages
  1683. 00:04:19.154704 /GMM/cBalloonedPages 0 pages
  1684. 00:04:19.154706 /GMM/cChunks 2 count
  1685. 00:04:19.154709 /GMM/cDuplicatePages 0 pages
  1686. 00:04:19.154711 /GMM/cFreedChunks 0 count
  1687. 00:04:19.154713 /GMM/cLeftBehindSharedPages 0 pages
  1688. 00:04:19.154716 /GMM/cMaxPages 4294967295 pages
  1689. 00:04:19.154718 /GMM/cOverCommittedPages 0 pages
  1690. 00:04:19.154720 /GMM/cReservedPages 1054316 pages
  1691. 00:04:19.154723 /GMM/cShareableModules 0 count
  1692. 00:04:19.154725 /GMM/cSharedPages 0 pages
  1693. 00:04:19.154728 /GMM/idFreeGeneration 4611686018427387775
  1694. 00:04:19.154786 /GVMM/EMTs 1 calls
  1695. 00:04:19.154789 /GVMM/HostCPUs 4 calls
  1696. 00:04:19.154792 /GVMM/HostCpus/0 0
  1697. 00:04:19.154794 /GVMM/HostCpus/0/CurTimerHz 0 Hz
  1698. 00:04:19.154796 /GVMM/HostCpus/0/DesiredHz 0 Hz
  1699. 00:04:19.154799 /GVMM/HostCpus/0/PPTChanges 0 times
  1700. 00:04:19.154801 /GVMM/HostCpus/0/PPTStarts 0 times
  1701. 00:04:19.154803 /GVMM/HostCpus/0/idxCpuSet 0
  1702. 00:04:19.154805 /GVMM/HostCpus/1 1
  1703. 00:04:19.154807 /GVMM/HostCpus/1/CurTimerHz 0 Hz
  1704. 00:04:19.154810 /GVMM/HostCpus/1/DesiredHz 0 Hz
  1705. 00:04:19.154812 /GVMM/HostCpus/1/PPTChanges 0 times
  1706. 00:04:19.154814 /GVMM/HostCpus/1/PPTStarts 0 times
  1707. 00:04:19.154816 /GVMM/HostCpus/1/idxCpuSet 1
  1708. 00:04:19.154820 /GVMM/HostCpus/2 2
  1709. 00:04:19.154824 /GVMM/HostCpus/2/CurTimerHz 0 Hz
  1710. 00:04:19.154826 /GVMM/HostCpus/2/DesiredHz 0 Hz
  1711. 00:04:19.154828 /GVMM/HostCpus/2/PPTChanges 0 times
  1712. 00:04:19.154830 /GVMM/HostCpus/2/PPTStarts 0 times
  1713. 00:04:19.154832 /GVMM/HostCpus/2/idxCpuSet 2
  1714. 00:04:19.154835 /GVMM/HostCpus/3 3
  1715. 00:04:19.154837 /GVMM/HostCpus/3/CurTimerHz 0 Hz
  1716. 00:04:19.154839 /GVMM/HostCpus/3/DesiredHz 0 Hz
  1717. 00:04:19.154841 /GVMM/HostCpus/3/PPTChanges 0 times
  1718. 00:04:19.154843 /GVMM/HostCpus/3/PPTStarts 0 times
  1719. 00:04:19.154845 /GVMM/HostCpus/3/idxCpuSet 3
  1720. 00:04:19.154848 /GVMM/Sum/HaltBlocking 7357 calls
  1721. 00:04:19.154850 /GVMM/Sum/HaltCalls 51586 calls
  1722. 00:04:19.154853 /GVMM/Sum/HaltNotBlocking 44229 calls
  1723. 00:04:19.154855 /GVMM/Sum/HaltTimeouts 6809 calls
  1724. 00:04:19.154858 /GVMM/Sum/HaltWakeUps 0 calls
  1725. 00:04:19.154860 /GVMM/Sum/PokeCalls 0 calls
  1726. 00:04:19.154862 /GVMM/Sum/PokeNotBusy 0 calls
  1727. 00:04:19.154865 /GVMM/Sum/PollCalls 7 calls
  1728. 00:04:19.154867 /GVMM/Sum/PollHalts 0 calls
  1729. 00:04:19.154869 /GVMM/Sum/PollWakeUps 0 calls
  1730. 00:04:19.154871 /GVMM/Sum/WakeUpCalls 548 calls
  1731. 00:04:19.154873 /GVMM/Sum/WakeUpNotHalted 4 calls
  1732. 00:04:19.154876 /GVMM/Sum/WakeUpWakeUps 0 calls
  1733. 00:04:19.154878 /GVMM/VM/HaltBlocking 7357 calls
  1734. 00:04:19.154881 /GVMM/VM/HaltCalls 51586 calls
  1735. 00:04:19.154883 /GVMM/VM/HaltNotBlocking 44229 calls
  1736. 00:04:19.154887 /GVMM/VM/HaltTimeouts 6809 calls
  1737. 00:04:19.154889 /GVMM/VM/HaltWakeUps 0 calls
  1738. 00:04:19.154891 /GVMM/VM/PokeCalls 0 calls
  1739. 00:04:19.154894 /GVMM/VM/PokeNotBusy 0 calls
  1740. 00:04:19.154896 /GVMM/VM/PollCalls 7 calls
  1741. 00:04:19.154898 /GVMM/VM/PollHalts 0 calls
  1742. 00:04:19.154900 /GVMM/VM/PollWakeUps 0 calls
  1743. 00:04:19.154903 /GVMM/VM/WakeUpCalls 548 calls
  1744. 00:04:19.154905 /GVMM/VM/WakeUpNotHalted 4 calls
  1745. 00:04:19.154907 /GVMM/VM/WakeUpWakeUps 0 calls
  1746. 00:04:19.154910 /GVMM/VMs 1 calls
  1747. 00:04:19.154912 /HGCM/FailedPageListLocking 0 count
  1748. 00:04:19.154914 /HGCM/LargeCmdAllocs 0 count
  1749. 00:04:19.154917 /HGCM/MsgArrival 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
  1750. 00:04:19.154920 /HGCM/MsgCompletion 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
  1751. 00:04:19.154922 /HGCM/MsgTotal 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
  1752. 00:04:19.154925 /HM/CPU0/Exit/HostNmiInGC 0 times
  1753. 00:04:19.154927 /HM/CPU0/Exit/HostNmiInGCIpi 0 times
  1754. 00:04:19.154929 /HM/CPU0/Exit/Trap/Gst/#AC 0 times
  1755. 00:04:19.154932 /HM/CPU0/Exit/Trap/Gst/#AC-split-lock 0 times
  1756. 00:04:19.154934 /HM/CPU0/Switch/Preempting 0 times
  1757. 00:04:19.154936 /IEM/CPU0/CodeTlb-Misses 0 count
  1758. 00:04:19.154939 /IEM/CPU0/CodeTlb-PhysRev ffffffffffff9c00
  1759. 00:04:19.154941 /IEM/CPU0/CodeTlb-Revision fffff38000000000
  1760. 00:04:19.154944 /IEM/CPU0/CodeTlb-SlowReads 0
  1761. 00:04:19.154946 /IEM/CPU0/DataTlb-Misses 0 count
  1762. 00:04:19.154948 /IEM/CPU0/DataTlb-PhysRev ffffffffffff9c00
  1763. 00:04:19.154951 /IEM/CPU0/DataTlb-Revision fffff38000000000
  1764. 00:04:19.154953 /IEM/CPU0/cInstructions 763 count
  1765. 00:04:19.154956 /IEM/CPU0/cLongJumps 0 bytes
  1766. 00:04:19.154958 /IEM/CPU0/cPendingCommit 0 bytes
  1767. 00:04:19.154960 /IEM/CPU0/cPotentialExits 41210 count
  1768. 00:04:19.154964 /IEM/CPU0/cRetAspectNotImplemented 0 count
  1769. 00:04:19.154966 /IEM/CPU0/cRetErrStatuses 0 count
  1770. 00:04:19.154969 /IEM/CPU0/cRetInfStatuses 0 count
  1771. 00:04:19.154971 /IEM/CPU0/cRetInstrNotImplemented 0 count
  1772. 00:04:19.154973 /IEM/CPU0/cbWritten 73938 bytes
  1773. 00:04:19.154976 /IOM/MmioMappingsStale 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
  1774. 00:04:19.154978 /MM/HyperHeap/cbFree 1995312 bytes
  1775. 00:04:19.154981 /MM/HyperHeap/cbHeap 2096832 bytes
  1776. 00:04:19.154983 /PDM/BlkCache/cbCached 0 bytes
  1777. 00:04:19.154986 /PDM/BlkCache/cbCachedFru 0 bytes
  1778. 00:04:19.154988 /PDM/BlkCache/cbCachedMruIn 0 bytes
  1779. 00:04:19.154990 /PDM/BlkCache/cbCachedMruOut 0 bytes
  1780. 00:04:19.154992 /PDM/BlkCache/cbMax 5242880 bytes
  1781. 00:04:19.154995 /PDM/CritSects/8237A#0Auto/ContentionR3 0 times
  1782. 00:04:19.154997 /PDM/CritSects/8237A#0Auto/ContentionRZLock 0 times
  1783. 00:04:19.154999 /PDM/CritSects/8237A#0Auto/ContentionRZUnlock 0 times
  1784. 00:04:19.155002 /PDM/CritSects/AC'97/ContentionR3 0 times
  1785. 00:04:19.155004 /PDM/CritSects/AC'97/ContentionRZLock 0 times
  1786. 00:04:19.155006 /PDM/CritSects/AC'97/ContentionRZUnlock 0 times
  1787. 00:04:19.155008 /PDM/CritSects/ATA#0-Ctl/ContentionR3 0 times
  1788. 00:04:19.155011 /PDM/CritSects/ATA#0-Ctl/ContentionRZLock 0 times
  1789. 00:04:19.155013 /PDM/CritSects/ATA#0-Ctl/ContentionRZUnlock 0 times
  1790. 00:04:19.155015 /PDM/CritSects/ATA#0-Req/ContentionR3 0 times
  1791. 00:04:19.155017 /PDM/CritSects/ATA#0-Req/ContentionRZLock 0 times
  1792. 00:04:19.155019 /PDM/CritSects/ATA#0-Req/ContentionRZUnlock 0 times
  1793. 00:04:19.155022 /PDM/CritSects/ATA#1-Ctl/ContentionR3 1 times
  1794. 00:04:19.155024 /PDM/CritSects/ATA#1-Ctl/ContentionRZLock 0 times
  1795. 00:04:19.155027 /PDM/CritSects/ATA#1-Ctl/ContentionRZUnlock 0 times
  1796. 00:04:19.155030 /PDM/CritSects/ATA#1-Req/ContentionR3 0 times
  1797. 00:04:19.155032 /PDM/CritSects/ATA#1-Req/ContentionRZLock 0 times
  1798. 00:04:19.155034 /PDM/CritSects/ATA#1-Req/ContentionRZUnlock 0 times
  1799. 00:04:19.155037 /PDM/CritSects/E1000#0/ContentionR3 0 times
  1800. 00:04:19.155039 /PDM/CritSects/E1000#0/ContentionRZLock 0 times
  1801. 00:04:19.155041 /PDM/CritSects/E1000#0/ContentionRZUnlock 0 times
  1802. 00:04:19.155044 /PDM/CritSects/E1000#0RX/ContentionR3 0 times
  1803. 00:04:19.155046 /PDM/CritSects/E1000#0RX/ContentionRZLock 0 times
  1804. 00:04:19.155048 /PDM/CritSects/E1000#0RX/ContentionRZUnlock 0 times
  1805. 00:04:19.155051 /PDM/CritSects/E1000#0TX/ContentionR3 0 times
  1806. 00:04:19.155053 /PDM/CritSects/E1000#0TX/ContentionRZLock 0 times
  1807. 00:04:19.155055 /PDM/CritSects/E1000#0TX/ContentionRZUnlock 0 times
  1808. 00:04:19.155058 /PDM/CritSects/GIMDev#0Auto/ContentionR3 0 times
  1809. 00:04:19.155060 /PDM/CritSects/GIMDev#0Auto/ContentionRZLock 0 times
  1810. 00:04:19.155062 /PDM/CritSects/GIMDev#0Auto/ContentionRZUnlock 0 times
  1811. 00:04:19.155064 /PDM/CritSects/MM-HYPER/ContentionR3 0 times
  1812. 00:04:19.155067 /PDM/CritSects/MM-HYPER/ContentionRZLock 0 times
  1813. 00:04:19.155069 /PDM/CritSects/MM-HYPER/ContentionRZUnlock 0 times
  1814. 00:04:19.155071 /PDM/CritSects/NOP/ContentionR3 0 times
  1815. 00:04:19.155074 /PDM/CritSects/NOP/ContentionRZLock 0 times
  1816. 00:04:19.155076 /PDM/CritSects/NOP/ContentionRZUnlock 0 times
  1817. 00:04:19.155079 /PDM/CritSects/OHCI#0Irq/ContentionR3 0 times
  1818. 00:04:19.155081 /PDM/CritSects/OHCI#0Irq/ContentionRZLock 0 times
  1819. 00:04:19.155083 /PDM/CritSects/OHCI#0Irq/ContentionRZUnlock 0 times
  1820. 00:04:19.155086 /PDM/CritSects/PDM/ContentionR3 0 times
  1821. 00:04:19.155088 /PDM/CritSects/PDM/ContentionRZLock 0 times
  1822. 00:04:19.155090 /PDM/CritSects/PDM/ContentionRZUnlock 0 times
  1823. 00:04:19.155092 /PDM/CritSects/PGM/ContentionR3 0 times
  1824. 00:04:19.155094 /PDM/CritSects/PGM/ContentionRZLock 0 times
  1825. 00:04:19.155098 /PDM/CritSects/PGM/ContentionRZUnlock 0 times
  1826. 00:04:19.155101 /PDM/CritSects/TM Timer Lock/ContentionR3 0 times
  1827. 00:04:19.155104 /PDM/CritSects/TM Timer Lock/ContentionRZLock 0 times
  1828. 00:04:19.155106 /PDM/CritSects/TM Timer Lock/ContentionRZUnlock 0 times
  1829. 00:04:19.155108 /PDM/CritSects/TM VirtualSync Lock/ContentionR3 0 times
  1830. 00:04:19.155111 /PDM/CritSects/TM VirtualSync Lock/ContentionRZLock 0 times
  1831. 00:04:19.155113 /PDM/CritSects/TM VirtualSync Lock/ContentionRZUnlock 0 times
  1832. 00:04:19.155115 /PDM/CritSects/VGA#0/ContentionR3 0 times
  1833. 00:04:19.155118 /PDM/CritSects/VGA#0/ContentionRZLock 0 times
  1834. 00:04:19.155120 /PDM/CritSects/VGA#0/ContentionRZUnlock 0 times
  1835. 00:04:19.155122 /PDM/CritSects/VGA#0_IRQ/ContentionR3 0 times
  1836. 00:04:19.155125 /PDM/CritSects/VGA#0_IRQ/ContentionRZLock 0 times
  1837. 00:04:19.155127 /PDM/CritSects/VGA#0_IRQ/ContentionRZUnlock 0 times
  1838. 00:04:19.155129 /PDM/CritSects/VMMDev#0/ContentionR3 0 times
  1839. 00:04:19.155132 /PDM/CritSects/VMMDev#0/ContentionRZLock 0 times
  1840. 00:04:19.155134 /PDM/CritSects/VMMDev#0/ContentionRZUnlock 0 times
  1841. 00:04:19.155136 /PDM/CritSects/acpi#0/ContentionR3 0 times
  1842. 00:04:19.155139 /PDM/CritSects/acpi#0/ContentionRZLock 0 times
  1843. 00:04:19.155141 /PDM/CritSects/acpi#0/ContentionRZUnlock 0 times
  1844. 00:04:19.155144 /PDM/CritSects/mc146818#0Auto/ContentionR3 0 times
  1845. 00:04:19.155146 /PDM/CritSects/mc146818#0Auto/ContentionRZLock 0 times
  1846. 00:04:19.155148 /PDM/CritSects/mc146818#0Auto/ContentionRZUnlock 0 times
  1847. 00:04:19.155150 /PDM/CritSects/pcarch#0Auto/ContentionR3 0 times
  1848. 00:04:19.155153 /PDM/CritSects/pcarch#0Auto/ContentionRZLock 0 times
  1849. 00:04:19.155155 /PDM/CritSects/pcarch#0Auto/ContentionRZUnlock 0 times
  1850. 00:04:19.155158 /PDM/CritSects/pcbios#0Auto/ContentionR3 0 times
  1851. 00:04:19.155160 /PDM/CritSects/pcbios#0Auto/ContentionRZLock 0 times
  1852. 00:04:19.155163 /PDM/CritSects/pcbios#0Auto/ContentionRZUnlock 0 times
  1853. 00:04:19.155165 /PDM/CritSects/pckbd#0Auto/ContentionR3 0 times
  1854. 00:04:19.155168 /PDM/CritSects/pckbd#0Auto/ContentionRZLock 0 times
  1855. 00:04:19.155170 /PDM/CritSects/pckbd#0Auto/ContentionRZUnlock 0 times
  1856. 00:04:19.155173 /PDM/CritSects/pit#0/ContentionR3 0 times
  1857. 00:04:19.155175 /PDM/CritSects/pit#0/ContentionRZLock 0 times
  1858. 00:04:19.155177 /PDM/CritSects/pit#0/ContentionRZUnlock 0 times
  1859. 00:04:19.155179 /PDM/CritSects/usb-ohci#0Auto/ContentionR3 0 times
  1860. 00:04:19.155182 /PDM/CritSects/usb-ohci#0Auto/ContentionRZLock 0 times
  1861. 00:04:19.155184 /PDM/CritSects/usb-ohci#0Auto/ContentionRZUnlock 0 times
  1862. 00:04:19.155186 /PDM/CritSectsRw/IOM Lock/ContentionR3EnterExcl 0 times
  1863. 00:04:19.155189 /PDM/CritSectsRw/IOM Lock/ContentionR3EnterShared 0 times
  1864. 00:04:19.155191 /PDM/CritSectsRw/IOM Lock/ContentionRZEnterExcl 0 times
  1865. 00:04:19.155193 /PDM/CritSectsRw/IOM Lock/ContentionRZEnterShared 0 times
  1866. 00:04:19.155196 /PDM/CritSectsRw/IOM Lock/ContentionRZLeaveExcl 0 times
  1867. 00:04:19.155198 /PDM/CritSectsRw/IOM Lock/ContentionRZLeaveShared 0 times
  1868. 00:04:19.155200 /PDM/CritSectsRw/IOM Lock/R3EnterExcl 73 times
  1869. 00:04:19.155202 /PDM/CritSectsRw/IOM Lock/R3EnterShared 499 times
  1870. 00:04:19.155205 /PDM/CritSectsRw/IOM Lock/RZEnterExcl 0 times
  1871. 00:04:19.155207 /PDM/CritSectsRw/IOM Lock/RZEnterShared 7170 times
  1872. 00:04:19.155209 /PDM/Queue/DevHlp/AllocFailures 0 times
  1873. 00:04:19.155211 /PDM/Queue/DevHlp/Flush 0 calls
  1874. 00:04:19.155214 /PDM/Queue/DevHlp/FlushLeftovers 0 times
  1875. 00:04:19.155216 /PDM/Queue/DevHlp/Insert 0 calls
  1876. 00:04:19.155218 /PDM/Queue/DevHlp/cItems 8 count
  1877. 00:04:19.155220 /PDM/Queue/DevHlp/cbItem 64 bytes
  1878. 00:04:19.155223 /PDM/Queue/Keyboard/AllocFailures 0 times
  1879. 00:04:19.155225 /PDM/Queue/Keyboard/Flush 0 calls
  1880. 00:04:19.155229 /PDM/Queue/Keyboard/FlushLeftovers 0 times
  1881. 00:04:19.155231 /PDM/Queue/Keyboard/Insert 36 calls
  1882. 00:04:19.155233 /PDM/Queue/Keyboard/cItems 64 count
  1883. 00:04:19.155236 /PDM/Queue/Keyboard/cbItem 32 bytes
  1884. 00:04:19.155238 /PDM/Queue/Mouse/AllocFailures 0 times
  1885. 00:04:19.155240 /PDM/Queue/Mouse/Flush 0 calls
  1886. 00:04:19.155242 /PDM/Queue/Mouse/FlushLeftovers 0 times
  1887. 00:04:19.155245 /PDM/Queue/Mouse/Insert 0 calls
  1888. 00:04:19.155247 /PDM/Queue/Mouse/cItems 128 count
  1889. 00:04:19.155249 /PDM/Queue/Mouse/cbItem 48 bytes
  1890. 00:04:19.155251 /PDM/Queue/Mouse_1/AllocFailures 0 times
  1891. 00:04:19.155254 /PDM/Queue/Mouse_1/Flush 0 calls
  1892. 00:04:19.155256 /PDM/Queue/Mouse_1/FlushLeftovers 0 times
  1893. 00:04:19.155258 /PDM/Queue/Mouse_1/Insert 0 calls
  1894. 00:04:19.155261 /PDM/Queue/Mouse_1/cItems 128 count
  1895. 00:04:19.155263 /PDM/Queue/Mouse_1/cbItem 48 bytes
  1896. 00:04:19.155265 /PDM/Tasks/000-E1000-Xmit-retriggered 0 times
  1897. 00:04:19.155267 /PDM/Tasks/000-E1000-Xmit-runs 0 times
  1898. 00:04:19.155270 /PGM/CPU0/cA20Changes 1 times
  1899. 00:04:19.155272 /PGM/CPU0/cGuestModeChanges 4 times
  1900. 00:04:19.155274 /PGM/ChunkR3Map/Mapped 2 count
  1901. 00:04:19.155277 /PGM/ChunkR3Map/Unmapped 0 count
  1902. 00:04:19.155279 /PGM/ChunkR3Map/c 2 count
  1903. 00:04:19.155281 /PGM/ChunkR3Map/cMax 4294967295 count
  1904. 00:04:19.155284 /PGM/LargePage/Recheck 0 times
  1905. 00:04:19.155286 /PGM/LargePage/Refused 1 times
  1906. 00:04:19.155288 /PGM/LargePage/Reused 0 times
  1907. 00:04:19.155291 /PGM/Mmio2QueryAndResetDirtyBitmap 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
  1908. 00:04:19.155294 /PGM/Page/cAllPages 1054254 count
  1909. 00:04:19.155296 /PGM/Page/cBalloonedPages 0 count
  1910. 00:04:19.155299 /PGM/Page/cHandyPages 55 count
  1911. 00:04:19.155301 /PGM/Page/cLargePages 0 count
  1912. 00:04:19.155303 /PGM/Page/cLargePagesDisabled 0 count
  1913. 00:04:19.155305 /PGM/Page/cMonitoredPages 0 count
  1914. 00:04:19.155308 /PGM/Page/cPrivatePages 6126 count
  1915. 00:04:19.155310 /PGM/Page/cPureMmioPages 67 count
  1916. 00:04:19.155312 /PGM/Page/cReadLockedPages 0 count
  1917. 00:04:19.155314 /PGM/Page/cReusedSharedPages 0 count
  1918. 00:04:19.155316 /PGM/Page/cSharedPages 0 count
  1919. 00:04:19.155319 /PGM/Page/cWriteLockedPages 0 count
  1920. 00:04:19.155321 /PGM/Page/cWrittenToPages 0 count
  1921. 00:04:19.155323 /PGM/Page/cZeroPages 1048061 count
  1922. 00:04:19.155326 /PGM/Pool/Grow 9295512 ticks ( 9295512 ticks, 1 times, max 9295512, min 9295512)
  1923. 00:04:19.155329 /PGM/ShMod/Check 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
  1924. 00:04:19.155332 /PGM/cRelocations 0 times
  1925. 00:04:19.155334 /PROF/CPU0/EM/Capped 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
  1926. 00:04:19.155337 /PROF/CPU0/EM/ForcedActions 693 times
  1927. 00:04:19.155339 /PROF/CPU0/EM/Halted 682 times
  1928. 00:04:19.155341 /PROF/CPU0/EM/NEMExec 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
  1929. 00:04:19.155344 /PROF/CPU0/EM/NEMExecuteCalled 0 times
  1930. 00:04:19.155346 /PROF/CPU0/EM/RAWTotal 0 times
  1931. 00:04:19.155348 /PROF/CPU0/EM/REMTotal 0 times
  1932. 00:04:19.155351 /PROF/CPU0/EM/RecordedExits 8102 times
  1933. 00:04:19.155353 /PROF/CPU0/EM/Total 912469087015 ticks/call (912469087015 ticks, 1 times, max 912469087015, min 912469087015)
  1934. 00:04:19.155357 /PROF/CPU0/VM/Halt/Block 4872008 ns/call (250523556512 ticks, 51421 times, max 56124497, min 1)
  1935. 00:04:19.155360 /PROF/CPU0/VM/Halt/BlockInsomnia 475136 ns/call ( 21282335598 ticks, 44792 times, max 54862646, min 1)
  1936. 00:04:19.155364 /PROF/CPU0/VM/Halt/BlockOnTime 19286600 ns/call ( 12169845162 ticks, 631 times, max 54965889, min 688)
  1937. 00:04:19.155368 /PROF/CPU0/VM/Halt/BlockOverslept 552126 ns/call ( 3311656387 ticks, 5998 times, max 1207747, min 50115)
  1938. 00:04:19.155372 /PROF/CPU0/VM/Halt/R0HaltBlock 14670128 ns/call ( 2317880340 ticks, 158 times, max 16553598, min 76789)
  1939. 00:04:19.155375 /PROF/CPU0/VM/Halt/R0HaltBlockInsomnia 13400189 ns/call ( 562807957 ticks, 42 times, max 15517875, min 76789)
  1940. 00:04:19.155378 /PROF/CPU0/VM/Halt/R0HaltBlockOnTime 15243900 ns/call ( 670731624 ticks, 44 times, max 15637257, min 13353817)
  1941. 00:04:19.155381 /PROF/CPU0/VM/Halt/R0HaltBlockOverslept 528902 ns/call ( 38080964 ticks, 72 times, max 981669, min 54443)
  1942. 00:04:19.155384 /PROF/CPU0/VM/Halt/R0HaltExec 0 times
  1943. 00:04:19.155386 /PROF/CPU0/VM/Halt/R0HaltExec/FromBlock 0 times
  1944. 00:04:19.155389 /PROF/CPU0/VM/Halt/R0HaltExec/FromSpin 0 times
  1945. 00:04:19.155391 /PROF/CPU0/VM/Halt/R0HaltHistoryCounter 159 times
  1946. 00:04:19.155393 /PROF/CPU0/VM/Halt/R0HaltHistorySucceeded 0 times
  1947. 00:04:19.155395 /PROF/CPU0/VM/Halt/R0HaltHistoryToRing3 159 times
  1948. 00:04:19.155398 /PROF/CPU0/VM/Halt/R0HaltToR3 159 times
  1949. 00:04:19.155400 /PROF/CPU0/VM/Halt/R0HaltToR3/FromSpin 0 times
  1950. 00:04:19.155402 /PROF/CPU0/VM/Halt/R0HaltToR3/Other 1 times
  1951. 00:04:19.155404 /PROF/CPU0/VM/Halt/R0HaltToR3/PendingFF 0 times
  1952. 00:04:19.155406 /PROF/CPU0/VM/Halt/R0HaltToR3/PostWaitNoInt 151 times
  1953. 00:04:19.155409 /PROF/CPU0/VM/Halt/R0HaltToR3/PostWaitPendingFF 7 times
  1954. 00:04:19.155411 /PROF/CPU0/VM/Halt/R0HaltToR3/SmallDelta 0 times
  1955. 00:04:19.155413 /PROF/CPU0/VM/Halt/Timers 3716 ns/call ( 283162023 ticks, 76187 times, max 12908685, min 2)
  1956. 00:04:19.155416 /PROF/CPU0/VM/Halt/Yield 10367 ns/call ( 72575 ticks, 7 times, max 13575, min 7022)
  1957. 00:04:19.155420 /Public/NetAdapter/0/BytesReceived 0 bytes
  1958. 00:04:19.155422 /Public/NetAdapter/0/BytesTransmitted 0 bytes
  1959. 00:04:19.155424 /Public/NetAdapter/0/e1000 0
  1960. 00:04:19.155426 /Public/Storage/PIIX3IDE0/Port0/BytesRead 512 bytes
  1961. 00:04:19.155429 /Public/Storage/PIIX3IDE0/Port0/QueryBufAttempts 0 count
  1962. 00:04:19.155431 /Public/Storage/PIIX3IDE0/Port0/QueryBufSuccess 0 count
  1963. 00:04:19.155433 /Public/Storage/PIIX3IDE0/Port0/ReqsRead 1 count
  1964. 00:04:19.155436 /Public/Storage/PIIX3IDE0/Port0/ReqsSubmitted 1 count
  1965. 00:04:19.155438 /Public/Storage/PIIX3IDE0/Port0/ReqsSucceeded 1 count
  1966. 00:04:19.155440 /Public/Storage/PIIX3IDE0/Port2/QueryBufAttempts 0 count
  1967. 00:04:19.155443 /Public/Storage/PIIX3IDE0/Port2/QueryBufSuccess 0 count
  1968. 00:04:19.155445 /SELM/LoadHidSel/GstReadErrors 0 times
  1969. 00:04:19.155448 /SELM/LoadHidSel/NoGoodGuest 0 times
  1970. 00:04:19.155450 /TM/CPU/00/cNsExecuting 6706944 ns
  1971. 00:04:19.155453 /TM/CPU/00/cNsHalted 250838077427 ns
  1972. 00:04:19.155456 /TM/CPU/00/cNsOther 2618788842 ns
  1973. 00:04:19.155458 /TM/CPU/00/cNsTotal 253463573213 ns
  1974. 00:04:19.155461 /TM/CPU/00/cPeriodsExecuting 8102 count
  1975. 00:04:19.155463 /TM/CPU/00/cPeriodsHalted 682 count
  1976. 00:04:19.155465 /TM/CPU/00/pctExecuting 0 %
  1977. 00:04:19.155468 /TM/CPU/00/pctHalted 99 %
  1978. 00:04:19.155470 /TM/CPU/00/pctOther 0 %
  1979. 00:04:19.155472 /TM/CPU/pctExecuting 0 %
  1980. 00:04:19.155474 /TM/CPU/pctHalted 99 %
  1981. 00:04:19.155476 /TM/CPU/pctOther 0 %
  1982. 00:04:19.155479 /TM/MaxHzHint 0 Hz
  1983. 00:04:19.155481 /TM/PIT/Handler 0 ticks/call ( 0 ticks, 0 times, max 0, min -1)
  1984. 00:04:19.155484 /TM/PIT/Irq 0 times
  1985. 00:04:19.155487 /TM/R3/1nsSteps 2243 times
  1986. 00:04:19.155490 /TM/TSC/offCPU0 0 ticks
  1987. 00:04:19.155493 /TM/VirtualSync/CurrentOffset 0 ns
  1988. 00:04:19.155496 /VUSB/0/cUrbsInPool 0 count
  1989. 00:04:19.155499 ********************* End of statistics **********************
  1990. 00:04:19.155601 VUSB: Detached 'HidMouse' from port 1 on RootHub#0
  1991. 00:04:19.158897 NAT: Zone(nm:mbuf_cluster, used:0)
  1992. 00:04:19.159369 NAT: Zone(nm:mbuf_packet, used:0)
  1993. 00:04:19.159375 NAT: Zone(nm:mbuf, used:0)
  1994. 00:04:19.159626 NAT: Zone(nm:mbuf_jumbo_pagesize, used:0)
  1995. 00:04:19.160098 NAT: Zone(nm:mbuf_jumbo_9k, used:0)
  1996. 00:04:19.160425 NAT: Zone(nm:mbuf_jumbo_16k, used:0)
  1997. 00:04:19.160595 NAT: Zone(nm:mbuf_ext_refcnt, used:0)
  1998. 00:04:19.160680 E1000#0: Interrupt attempts: 0
  1999. 00:04:19.160689 E1000#0: Interrupts raised : 0
  2000. 00:04:19.160691 E1000#0: Interrupts lowered: 0
  2001. 00:04:19.160693 E1000#0: ICR outside ISR : 0
  2002. 00:04:19.160695 E1000#0: IMS raised ints : 0
  2003. 00:04:19.160698 E1000#0: Interrupts skipped: 0
  2004. 00:04:19.160700 E1000#0: Masked interrupts : 0
  2005. 00:04:19.160702 E1000#0: Early interrupts : 0
  2006. 00:04:19.160704 E1000#0: Late interrupts : 0
  2007. 00:04:19.160706 E1000#0: Lost interrupts : 0
  2008. 00:04:19.160708 E1000#0: Interrupts by RX : 0
  2009. 00:04:19.160710 E1000#0: Interrupts by TX : 0
  2010. 00:04:19.160712 E1000#0: Interrupts by ICS : 0
  2011. 00:04:19.160715 E1000#0: Interrupts by RDTR: 0
  2012. 00:04:19.160717 E1000#0: Interrupts by RDMT: 0
  2013. 00:04:19.160719 E1000#0: Interrupts by TXQE: 0
  2014. 00:04:19.160721 E1000#0: TX int delay asked: 0
  2015. 00:04:19.160723 E1000#0: TX delayed: 0
  2016. 00:04:19.160725 E1000#0: TX delay expired: 0
  2017. 00:04:19.160728 E1000#0: TX no report asked: 0
  2018. 00:04:19.160730 E1000#0: TX abs timer expd : 0
  2019. 00:04:19.160732 E1000#0: TX int timer expd : 0
  2020. 00:04:19.160734 E1000#0: RX abs timer expd : 0
  2021. 00:04:19.160788 E1000#0: RX int timer expd : 0
  2022. 00:04:19.160794 E1000#0: TX CTX descriptors: 0
  2023. 00:04:19.160796 E1000#0: TX DAT descriptors: 0
  2024. 00:04:19.160799 E1000#0: TX LEG descriptors: 0
  2025. 00:04:19.160823 E1000#0: Received frames : 0
  2026. 00:04:19.160826 E1000#0: Transmitted frames: 0
  2027. 00:04:19.160828 E1000#0: TX frames up to 1514: 0
  2028. 00:04:19.160830 E1000#0: TX frames up to 2962: 0
  2029. 00:04:19.160832 E1000#0: TX frames up to 4410: 0
  2030. 00:04:19.160834 E1000#0: TX frames up to 5858: 0
  2031. 00:04:19.160836 E1000#0: TX frames up to 7306: 0
  2032. 00:04:19.160843 E1000#0: TX frames up to 8754: 0
  2033. 00:04:19.160846 E1000#0: TX frames up to 16384: 0
  2034. 00:04:19.160848 E1000#0: TX frames up to 32768: 0
  2035. 00:04:19.160850 E1000#0: Larger TX frames : 0
  2036. 00:04:19.160852 E1000#0: Max TX Delay : 0
  2037. 00:04:19.161847 GIM: KVM: Resetting MSRs
  2038. 00:04:19.163968 Changing the VM state from 'DESTROYING' to 'TERMINATED'
  2039. 00:04:19.164853 Console: Machine state changed to 'PoweredOff'
  2040. 00:04:19.717083 GUI: Passing request to close Runtime UI from machine-logic to UI session.