-
Notifications
You must be signed in to change notification settings - Fork 0
/
mod3-P-CRASH.log
5456 lines (5203 loc) · 427 KB
/
mod3-P-CRASH.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2015-06-19 13:27:05 - Attempting to retrieve the root directory of the data partition.
2015-06-19 13:27:05 - Found 2 handles that supported SimpleFileSystem
2015-06-19 13:27:05 - Checking handle 0 (C5143718)
2015-06-19 13:27:05 - Handle is own partition
2015-06-19 13:27:05 - Checking handle 1 (C5143418)
2015-06-19 13:27:05 - HD node found: MBR type(2), Signature type(2), Part #(2), Start LBA(104448), Num Sectors(202719)
2015-06-19 13:27:05 - Self node: MBR type(2), Signature type(2), Part #(1), Start LBA(2048), Num Sectors(100353)
2015-06-19 13:27:05 - =============================================
2015-06-19 13:27:05 - MemTest86 V6.1.0 Free Build: 1000 (64-bit)
2015-06-19 13:27:05 - =============================================
2015-06-19 13:27:05 - Console size = 80 x 25
2015-06-19 13:27:05 - Initializing localization strings
2015-06-19 13:27:05 - Language en-US is supported
2015-06-19 13:27:05 - Language fr-FR is supported
2015-06-19 13:27:05 - Language es-AR is supported
2015-06-19 13:27:05 - Language de-DE is supported
2015-06-19 13:27:05 - GetGlyph failed for character 0x3041 (Warning Unknown Glyph)
2015-06-19 13:27:05 - Language ja-JP is not supported
2015-06-19 13:27:05 - GetGlyph failed for character 0x4E0F (Warning Unknown Glyph)
2015-06-19 13:27:05 - Language zh-CN is not supported
2015-06-19 13:27:05 - GetGlyph failed for character 0xF944 (Warning Unknown Glyph)
2015-06-19 13:27:05 - Language zh-HK is not supported
2015-06-19 13:27:05 - Font does not support all languages. Installing unicode font...
2015-06-19 13:27:05 - InitFont - Font header version: 1.1
2015-06-19 13:27:05 - InitFont - Number of narrow glyphs: 6969
2015-06-19 13:27:05 - InitFont - Number of wide glyphs: 50117
2015-06-19 13:27:06 - Language en-US is supported
2015-06-19 13:27:06 - Language fr-FR is supported
2015-06-19 13:27:06 - Language es-AR is supported
2015-06-19 13:27:06 - Language de-DE is supported
2015-06-19 13:27:06 - Language ja-JP is supported
2015-06-19 13:27:06 - Language zh-CN is supported
2015-06-19 13:27:06 - Language zh-HK is supported
2015-06-19 13:27:06 - Intializing screen for graphics
2015-06-19 13:27:06 - Getting CPUID
2015-06-19 13:27:06 - Getting cache size
2015-06-19 13:27:06 - get_cache_size - Vendor ID: GenuineIntel Brand ID: Intel(R) Xeon(R) CPU E5-2603 0 @ 1.80GHz
2015-06-19 13:27:06 - L1 data cache: 32, 2, 16 [0x3C004121]
2015-06-19 13:27:06 - L1 instruction cache size: 8 x 32KB
2015-06-19 13:27:06 - L1 data cache size: 8 x 32KB
2015-06-19 13:27:06 - L2 cache size: 8 x 256KB
2015-06-19 13:27:06 - L3 cache size: 10240KB
2015-06-19 13:27:06 - Measuring CPU/cache/mem speed
2015-06-19 13:27:06 - cpuspeed - rdtsc instruction supported: 1
2015-06-19 13:27:07 - cpuspeed - start ticks: 243333617434, end ticks: 243423618862 (difference: 90001428)
2015-06-19 13:27:07 - cpu_cache_speed - (Attempt 1) clock cycle (ms): 1800028
2015-06-19 13:27:07 - cpuspeed - rdtsc instruction supported: 1
2015-06-19 13:27:07 - cpuspeed - start ticks: 243606566890, end ticks: 243696569750 (difference: 90002860)
2015-06-19 13:27:07 - cpu_cache_speed - (Attempt 2) clock cycle (ms): 1800057
2015-06-19 13:27:07 - cpuspeed - rdtsc instruction supported: 1
2015-06-19 13:27:07 - cpuspeed - start ticks: 243879300218, end ticks: 243969303210 (difference: 90002992)
2015-06-19 13:27:07 - cpu_cache_speed - (Attempt 3) clock cycle (ms): 1800059
2015-06-19 13:27:07 - cpu_cache_speed - Using average of last 3 samples (1800059, 1800057, 1800028)
2015-06-19 13:27:07 - cpu_cache_speed - CPU speed: 1800.0MHz
2015-06-19 13:27:07 - cpu_cache_speed - measuring L1 cache speed at 0xC5B8E000 (32 KB)
2015-06-19 13:27:07 - cpu_cache_speed - L1 cache speed: 49237 MB/s
2015-06-19 13:27:07 - cpu_cache_speed - measuring L2 cache speed at 0xC5B56000 (256 KB)
2015-06-19 13:27:07 - cpu_cache_speed - L2 cache speed: 26581 MB/s
2015-06-19 13:27:07 - cpu_cache_speed - measuring L3 cache speed at 0xC29DF000 (10240 KB)
2015-06-19 13:27:07 - cpu_cache_speed - L3 cache speed: 13430 MB/s
2015-06-19 13:27:07 - get_mem_speed - measuring mem speed at 0xBE15F000 (84480 KB)
2015-06-19 13:27:08 - get_mem_speed - mem speed: 6335 MB/s
2015-06-19 13:27:09 - cpu_cache_speed - Memory latency: 39.236 ns
2015-06-19 13:27:09 - Retrieving CPU MSR data
2015-06-19 13:27:09 - GetIntelArchitectureSpecificMSRInfo - CPU Intel(R) Xeon(R) CPU E5-2603 0 @ 1.80GHz: 6.45
2015-06-19 13:27:09 - GetIntelArchitectureSpecificMSRInfo - Nehalem et al detected
2015-06-19 13:27:09 - GetSandyBridgeFamilyMSRInfo_Static - MSR[0xCE] = 00000C0064011200
2015-06-19 13:27:09 - GetSandyBridgeFamilyMSRInfo_Static - ExternalClock = 100002
2015-06-19 13:27:09 - GetSandyBridgeFamilyMSRInfo_Static - MSR[0x1A2] = 0000000000580A00
2015-06-19 13:27:09 - IsIntelTurboSupported - CPUID[0x6][EAX] = 00000075
2015-06-19 13:27:09 - IsDisableIntelTurboSupported - not supported
2015-06-19 13:27:09 - GetIntelArchitectureSpecificMSRInfo - Freq: 1800048, 0, 100002, Turbo: 0, 0, 0 (0)
2015-06-19 13:27:09 - Getting memory size
2015-06-19 13:27:09 - 0x000000010000 - 0x00000009FFFF (576KB) {Boot Services Data}
2015-06-19 13:27:09 - 0x000000100000 - 0x000003FFFFFF (63MB) {Boot Services Data}
2015-06-19 13:27:09 - 0x000004000000 - 0x00000FFFEFFF (191MB) {Free Memory}
2015-06-19 13:27:09 - 0x00000FFFF000 - 0x00001006CFFF (440KB) {Boot Services Code}
2015-06-19 13:27:09 - 0x00001006D000 - 0x0000C33DEFFF (2867MB) {Free Memory}
2015-06-19 13:27:09 - 0x0000C33DF000 - 0x0000C363FFFF (2MB) {Boot Services Data}
2015-06-19 13:27:09 - 0x0000C3640000 - 0x0000C3648FFF (36KB) {Free Memory}
2015-06-19 13:27:09 - 0x0000C3649000 - 0x0000C364DFFF (20KB) {Boot Services Data}
2015-06-19 13:27:09 - 0x0000C364E000 - 0x0000C3652FFF (20KB) {Free Memory}
2015-06-19 13:27:09 - 0x0000C3653000 - 0x0000C36A3FFF (324KB) {Boot Services Data}
2015-06-19 13:27:09 - 0x0000C36A4000 - 0x0000C36A8FFF (20KB) {Free Memory}
2015-06-19 13:27:10 - 0x0000C36A9000 - 0x0000C36ADFFF (20KB) {Boot Services Data}
2015-06-19 13:27:10 - 0x0000C36AE000 - 0x0000C36B2FFF (20KB) {Free Memory}
2015-06-19 13:27:10 - 0x0000C36B3000 - 0x0000C36BBFFF (36KB) {Boot Services Data}
2015-06-19 13:27:10 - 0x0000C36BC000 - 0x0000C36E0FFF (148KB) {Free Memory}
2015-06-19 13:27:10 - 0x0000C36E1000 - 0x0000C371DFFF (244KB) {Boot Services Data}
2015-06-19 13:27:10 - 0x0000C371E000 - 0x0000C3720FFF (12KB) {Free Memory}
2015-06-19 13:27:10 - 0x0000C3721000 - 0x0000C3724FFF (16KB) {Boot Services Data}
2015-06-19 13:27:10 - 0x0000C3725000 - 0x0000C3726FFF (8KB) {Free Memory}
2015-06-19 13:27:10 - 0x0000C3727000 - 0x0000C372CFFF (24KB) {Boot Services Data}
2015-06-19 13:27:10 - 0x0000C372D000 - 0x0000C372EFFF (8KB) {Free Memory}
2015-06-19 13:27:10 - 0x0000C372F000 - 0x0000C3737FFF (36KB) {Boot Services Data}
2015-06-19 13:27:10 - 0x0000C3738000 - 0x0000C373BFFF (16KB) {Free Memory}
2015-06-19 13:27:10 - 0x0000C373C000 - 0x0000C373CFFF (4KB) {Boot Services Data}
2015-06-19 13:27:10 - 0x0000C373D000 - 0x0000C373FFFF (12KB) {Free Memory}
2015-06-19 13:27:10 - 0x0000C3740000 - 0x0000C3740FFF (4KB) {Boot Services Data}
2015-06-19 13:27:10 - 0x0000C3741000 - 0x0000C3742FFF (8KB) {Free Memory}
2015-06-19 13:27:10 - 0x0000C3743000 - 0x0000C3743FFF (4KB) {Boot Services Data}
2015-06-19 13:27:10 - 0x0000C3744000 - 0x0000C3746FFF (12KB) {Free Memory}
2015-06-19 13:27:10 - 0x0000C3747000 - 0x0000C3747FFF (4KB) {Boot Services Data}
2015-06-19 13:27:10 - 0x0000C3748000 - 0x0000C3749FFF (8KB) {Free Memory}
2015-06-19 13:27:10 - 0x0000C374A000 - 0x0000C374AFFF (4KB) {Boot Services Data}
2015-06-19 13:27:10 - 0x0000C374B000 - 0x0000C374CFFF (8KB) {Free Memory}
2015-06-19 13:27:10 - 0x0000C374D000 - 0x0000C375AFFF (56KB) {Boot Services Data}
2015-06-19 13:27:10 - 0x0000C375B000 - 0x0000C375CFFF (8KB) {Free Memory}
2015-06-19 13:27:10 - 0x0000C375D000 - 0x0000C375DFFF (4KB) {Boot Services Data}
2015-06-19 13:27:10 - 0x0000C375E000 - 0x0000C3760FFF (12KB) {Free Memory}
2015-06-19 13:27:11 - 0x0000C3761000 - 0x0000C3762FFF (8KB) {Boot Services Data}
2015-06-19 13:27:11 - 0x0000C3763000 - 0x0000C3764FFF (8KB) {Free Memory}
2015-06-19 13:27:11 - 0x0000C3765000 - 0x0000C3766FFF (8KB) {Boot Services Data}
2015-06-19 13:27:11 - 0x0000C3767000 - 0x0000C3768FFF (8KB) {Free Memory}
2015-06-19 13:27:11 - 0x0000C3769000 - 0x0000C376BFFF (12KB) {Boot Services Data}
2015-06-19 13:27:11 - 0x0000C376C000 - 0x0000C376DFFF (8KB) {Free Memory}
2015-06-19 13:27:11 - 0x0000C376E000 - 0x0000C37B3FFF (280KB) {Boot Services Data}
2015-06-19 13:27:11 - 0x0000C37B4000 - 0x0000C37B6FFF (12KB) {Free Memory}
2015-06-19 13:27:11 - 0x0000C37B7000 - 0x0000C37B7FFF (4KB) {Boot Services Data}
2015-06-19 13:27:11 - 0x0000C37B8000 - 0x0000C37B9FFF (8KB) {Free Memory}
2015-06-19 13:27:11 - 0x0000C37BA000 - 0x0000C37CEFFF (84KB) {Boot Services Data}
2015-06-19 13:27:11 - 0x0000C37CF000 - 0x0000C37D5FFF (28KB) {Free Memory}
2015-06-19 13:27:11 - 0x0000C37D6000 - 0x0000C37D7FFF (8KB) {Boot Services Data}
2015-06-19 13:27:11 - 0x0000C37D8000 - 0x0000C37E3FFF (48KB) {Free Memory}
2015-06-19 13:27:11 - 0x0000C37E4000 - 0x0000C37EAFFF (28KB) {Boot Services Data}
2015-06-19 13:27:11 - 0x0000C37EB000 - 0x0000C37ECFFF (8KB) {Free Memory}
2015-06-19 13:27:11 - 0x0000C37ED000 - 0x0000C37EDFFF (4KB) {Boot Services Data}
2015-06-19 13:27:11 - 0x0000C37EE000 - 0x0000C37EFFFF (8KB) {Free Memory}
2015-06-19 13:27:11 - 0x0000C37F0000 - 0x0000C37F0FFF (4KB) {Boot Services Data}
2015-06-19 13:27:11 - 0x0000C37F1000 - 0x0000C37F2FFF (8KB) {Free Memory}
2015-06-19 13:27:11 - 0x0000C37F3000 - 0x0000C37F3FFF (4KB) {Boot Services Data}
2015-06-19 13:27:11 - 0x0000C37F4000 - 0x0000C37F5FFF (8KB) {Free Memory}
2015-06-19 13:27:11 - 0x0000C37F6000 - 0x0000C37FDFFF (32KB) {Boot Services Data}
2015-06-19 13:27:11 - 0x0000C37FE000 - 0x0000C37FFFFF (8KB) {Free Memory}
2015-06-19 13:27:11 - 0x0000C3800000 - 0x0000C3800FFF (4KB) {Boot Services Data}
2015-06-19 13:27:11 - 0x0000C3801000 - 0x0000C3803FFF (12KB) {Free Memory}
2015-06-19 13:27:12 - 0x0000C3804000 - 0x0000C3804FFF (4KB) {Boot Services Data}
2015-06-19 13:27:12 - 0x0000C3805000 - 0x0000C3806FFF (8KB) {Free Memory}
2015-06-19 13:27:12 - 0x0000C3807000 - 0x0000C3807FFF (4KB) {Boot Services Data}
2015-06-19 13:27:12 - 0x0000C3808000 - 0x0000C3809FFF (8KB) {Free Memory}
2015-06-19 13:27:12 - 0x0000C380A000 - 0x0000C380AFFF (4KB) {Boot Services Data}
2015-06-19 13:27:12 - 0x0000C380B000 - 0x0000C380FFFF (20KB) {Free Memory}
2015-06-19 13:27:12 - 0x0000C3810000 - 0x0000C3810FFF (4KB) {Boot Services Data}
2015-06-19 13:27:12 - 0x0000C3811000 - 0x0000C3812FFF (8KB) {Free Memory}
2015-06-19 13:27:12 - 0x0000C3813000 - 0x0000C3816FFF (16KB) {Boot Services Data}
2015-06-19 13:27:12 - 0x0000C3817000 - 0x0000C3819FFF (12KB) {Free Memory}
2015-06-19 13:27:12 - 0x0000C381A000 - 0x0000C381AFFF (4KB) {Boot Services Data}
2015-06-19 13:27:12 - 0x0000C381B000 - 0x0000C381DFFF (12KB) {Free Memory}
2015-06-19 13:27:12 - 0x0000C381E000 - 0x0000C381FFFF (8KB) {Boot Services Data}
2015-06-19 13:27:12 - 0x0000C3820000 - 0x0000C3821FFF (8KB) {Free Memory}
2015-06-19 13:27:12 - 0x0000C3822000 - 0x0000C3822FFF (4KB) {Boot Services Data}
2015-06-19 13:27:12 - 0x0000C3823000 - 0x0000C382CFFF (40KB) {Free Memory}
2015-06-19 13:27:12 - 0x0000C382D000 - 0x0000C3830FFF (16KB) {Boot Services Data}
2015-06-19 13:27:12 - 0x0000C3831000 - 0x0000C3832FFF (8KB) {Free Memory}
2015-06-19 13:27:12 - 0x0000C3833000 - 0x0000C3833FFF (4KB) {Boot Services Data}
2015-06-19 13:27:12 - 0x0000C3834000 - 0x0000C3837FFF (16KB) {Free Memory}
2015-06-19 13:27:12 - 0x0000C3838000 - 0x0000C3839FFF (8KB) {Boot Services Data}
2015-06-19 13:27:12 - 0x0000C383A000 - 0x0000C383CFFF (12KB) {Free Memory}
2015-06-19 13:27:12 - 0x0000C383D000 - 0x0000C383EFFF (8KB) {Boot Services Data}
2015-06-19 13:27:12 - 0x0000C383F000 - 0x0000C3842FFF (16KB) {Free Memory}
2015-06-19 13:27:12 - 0x0000C3843000 - 0x0000C3843FFF (4KB) {Boot Services Data}
2015-06-19 13:27:12 - 0x0000C3844000 - 0x0000C3846FFF (12KB) {Free Memory}
2015-06-19 13:27:12 - 0x0000C3847000 - 0x0000C3847FFF (4KB) {Boot Services Data}
2015-06-19 13:27:13 - 0x0000C3848000 - 0x0000C384BFFF (16KB) {Free Memory}
2015-06-19 13:27:13 - 0x0000C384C000 - 0x0000C384DFFF (8KB) {Boot Services Data}
2015-06-19 13:27:13 - 0x0000C384E000 - 0x0000C3851FFF (16KB) {Free Memory}
2015-06-19 13:27:13 - 0x0000C3852000 - 0x0000C3853FFF (8KB) {Boot Services Data}
2015-06-19 13:27:13 - 0x0000C3854000 - 0x0000C3856FFF (12KB) {Free Memory}
2015-06-19 13:27:13 - 0x0000C3857000 - 0x0000C3857FFF (4KB) {Boot Services Data}
2015-06-19 13:27:13 - 0x0000C3858000 - 0x0000C385EFFF (28KB) {Free Memory}
2015-06-19 13:27:13 - 0x0000C385F000 - 0x0000C385FFFF (4KB) {Boot Services Data}
2015-06-19 13:27:13 - 0x0000C3860000 - 0x0000C3864FFF (20KB) {Free Memory}
2015-06-19 13:27:13 - 0x0000C3865000 - 0x0000C3866FFF (8KB) {Boot Services Data}
2015-06-19 13:27:13 - 0x0000C3867000 - 0x0000C386AFFF (16KB) {Free Memory}
2015-06-19 13:27:13 - 0x0000C386B000 - 0x0000C386CFFF (8KB) {Boot Services Data}
2015-06-19 13:27:13 - 0x0000C386D000 - 0x0000C386EFFF (8KB) {Free Memory}
2015-06-19 13:27:13 - 0x0000C386F000 - 0x0000C386FFFF (4KB) {Boot Services Data}
2015-06-19 13:27:13 - 0x0000C3870000 - 0x0000C3871FFF (8KB) {Free Memory}
2015-06-19 13:27:13 - 0x0000C3872000 - 0x0000C3872FFF (4KB) {Boot Services Data}
2015-06-19 13:27:13 - 0x0000C3873000 - 0x0000C3875FFF (12KB) {Free Memory}
2015-06-19 13:27:13 - 0x0000C3876000 - 0x0000C3876FFF (4KB) {Boot Services Data}
2015-06-19 13:27:13 - 0x0000C3877000 - 0x0000C3878FFF (8KB) {Free Memory}
2015-06-19 13:27:13 - 0x0000C3879000 - 0x0000C387DFFF (20KB) {Boot Services Data}
2015-06-19 13:27:13 - 0x0000C387E000 - 0x0000C3880FFF (12KB) {Free Memory}
2015-06-19 13:27:13 - 0x0000C3881000 - 0x0000C3883FFF (12KB) {Boot Services Data}
2015-06-19 13:27:13 - 0x0000C3884000 - 0x0000C3885FFF (8KB) {Free Memory}
2015-06-19 13:27:13 - 0x0000C3886000 - 0x0000C3888FFF (12KB) {Boot Services Data}
2015-06-19 13:27:13 - 0x0000C3889000 - 0x0000C388AFFF (8KB) {Free Memory}
2015-06-19 13:27:13 - 0x0000C388B000 - 0x0000C388EFFF (16KB) {Boot Services Data}
2015-06-19 13:27:14 - 0x0000C388F000 - 0x0000C3890FFF (8KB) {Free Memory}
2015-06-19 13:27:14 - 0x0000C3891000 - 0x0000C3892FFF (8KB) {Boot Services Data}
2015-06-19 13:27:14 - 0x0000C3893000 - 0x0000C3894FFF (8KB) {Free Memory}
2015-06-19 13:27:14 - 0x0000C3895000 - 0x0000C3897FFF (12KB) {Boot Services Data}
2015-06-19 13:27:14 - 0x0000C3898000 - 0x0000C3899FFF (8KB) {Free Memory}
2015-06-19 13:27:14 - 0x0000C389A000 - 0x0000C389CFFF (12KB) {Boot Services Data}
2015-06-19 13:27:14 - 0x0000C389D000 - 0x0000C389EFFF (8KB) {Free Memory}
2015-06-19 13:27:14 - 0x0000C389F000 - 0x0000C38A2FFF (16KB) {Boot Services Data}
2015-06-19 13:27:14 - 0x0000C38A3000 - 0x0000C38A4FFF (8KB) {Free Memory}
2015-06-19 13:27:14 - 0x0000C38A5000 - 0x0000C38A8FFF (16KB) {Boot Services Data}
2015-06-19 13:27:14 - 0x0000C38A9000 - 0x0000C38AAFFF (8KB) {Free Memory}
2015-06-19 13:27:14 - 0x0000C38AB000 - 0x0000C38B9FFF (60KB) {Boot Services Data}
2015-06-19 13:27:14 - 0x0000C38BA000 - 0x0000C38C3FFF (40KB) {Free Memory}
2015-06-19 13:27:14 - 0x0000C38C4000 - 0x0000C38C7FFF (16KB) {Boot Services Data}
2015-06-19 13:27:14 - 0x0000C38C8000 - 0x0000C38CAFFF (12KB) {Free Memory}
2015-06-19 13:27:14 - 0x0000C38CB000 - 0x0000C38CCFFF (8KB) {Boot Services Data}
2015-06-19 13:27:14 - 0x0000C38CD000 - 0x0000C38CFFFF (12KB) {Free Memory}
2015-06-19 13:27:14 - 0x0000C38D0000 - 0x0000C38D0FFF (4KB) {Boot Services Data}
2015-06-19 13:27:14 - 0x0000C38D1000 - 0x0000C38D3FFF (12KB) {Free Memory}
2015-06-19 13:27:14 - 0x0000C38D4000 - 0x0000C38D5FFF (8KB) {Boot Services Data}
2015-06-19 13:27:14 - 0x0000C38D6000 - 0x0000C38D8FFF (12KB) {Free Memory}
2015-06-19 13:27:14 - 0x0000C38D9000 - 0x0000C38E8FFF (64KB) {Boot Services Data}
2015-06-19 13:27:14 - 0x0000C38E9000 - 0x0000C38EBFFF (12KB) {Free Memory}
2015-06-19 13:27:14 - 0x0000C38EC000 - 0x0000C38F3FFF (32KB) {Boot Services Data}
2015-06-19 13:27:14 - 0x0000C38F4000 - 0x0000C38F8FFF (20KB) {Free Memory}
2015-06-19 13:27:14 - 0x0000C38F9000 - 0x0000C38FEFFF (24KB) {Boot Services Data}
2015-06-19 13:27:15 - 0x0000C38FF000 - 0x0000C3901FFF (12KB) {Free Memory}
2015-06-19 13:27:15 - 0x0000C3902000 - 0x0000C3902FFF (4KB) {Boot Services Data}
2015-06-19 13:27:15 - 0x0000C3903000 - 0x0000C3905FFF (12KB) {Free Memory}
2015-06-19 13:27:15 - 0x0000C3906000 - 0x0000C392DFFF (160KB) {Boot Services Data}
2015-06-19 13:27:15 - 0x0000C392E000 - 0x0000C3930FFF (12KB) {Free Memory}
2015-06-19 13:27:15 - 0x0000C3931000 - 0x0000C3931FFF (4KB) {Boot Services Data}
2015-06-19 13:27:15 - 0x0000C3932000 - 0x0000C3934FFF (12KB) {Free Memory}
2015-06-19 13:27:15 - 0x0000C3935000 - 0x0000C3935FFF (4KB) {Boot Services Data}
2015-06-19 13:27:15 - 0x0000C3936000 - 0x0000C3938FFF (12KB) {Free Memory}
2015-06-19 13:27:15 - 0x0000C3939000 - 0x0000C3952FFF (104KB) {Boot Services Data}
2015-06-19 13:27:15 - 0x0000C3953000 - 0x0000C3DD3FFF (4MB) {Free Memory}
2015-06-19 13:27:15 - 0x0000C3DD4000 - 0x0000C3ECEFFF (1004KB) {Boot Services Data}
2015-06-19 13:27:15 - 0x0000C3ECF000 - 0x0000C3ED1FFF (12KB) {Free Memory}
2015-06-19 13:27:15 - 0x0000C3ED2000 - 0x0000C3EECFFF (108KB) {Boot Services Data}
2015-06-19 13:27:15 - 0x0000C3EED000 - 0x0000C3EEFFFF (12KB) {Free Memory}
2015-06-19 13:27:15 - 0x0000C3EF0000 - 0x0000C3F75FFF (536KB) {Boot Services Data}
2015-06-19 13:27:15 - 0x0000C3F76000 - 0x0000C3F78FFF (12KB) {Free Memory}
2015-06-19 13:27:15 - 0x0000C3F79000 - 0x0000C4002FFF (552KB) {Boot Services Data}
2015-06-19 13:27:15 - 0x0000C4003000 - 0x0000C4005FFF (12KB) {Free Memory}
2015-06-19 13:27:15 - 0x0000C4006000 - 0x0000C4057FFF (328KB) {Boot Services Data}
2015-06-19 13:27:15 - 0x0000C4058000 - 0x0000C405AFFF (12KB) {Free Memory}
2015-06-19 13:27:15 - 0x0000C405B000 - 0x0000C409CFFF (264KB) {Boot Services Data}
2015-06-19 13:27:15 - 0x0000C409D000 - 0x0000C40A3FFF (28KB) {Free Memory}
2015-06-19 13:27:15 - 0x0000C40A4000 - 0x0000C40A7FFF (16KB) {Boot Services Data}
2015-06-19 13:27:15 - 0x0000C40A8000 - 0x0000C40B1FFF (40KB) {Free Memory}
2015-06-19 13:27:15 - 0x0000C40B2000 - 0x0000C40BBFFF (40KB) {Boot Services Data}
2015-06-19 13:27:15 - 0x0000C40BC000 - 0x0000C40C0FFF (20KB) {Free Memory}
2015-06-19 13:27:16 - 0x0000C40C1000 - 0x0000C40C6FFF (24KB) {Boot Services Data}
2015-06-19 13:27:16 - 0x0000C40C7000 - 0x0000C40CBFFF (20KB) {Free Memory}
2015-06-19 13:27:16 - 0x0000C40CC000 - 0x0000C40CCFFF (4KB) {Boot Services Data}
2015-06-19 13:27:16 - 0x0000C40CD000 - 0x0000C40D1FFF (20KB) {Free Memory}
2015-06-19 13:27:16 - 0x0000C40D2000 - 0x0000C40D2FFF (4KB) {Boot Services Data}
2015-06-19 13:27:16 - 0x0000C40D3000 - 0x0000C40D8FFF (24KB) {Free Memory}
2015-06-19 13:27:16 - 0x0000C40D9000 - 0x0000C40DBFFF (12KB) {Boot Services Data}
2015-06-19 13:27:16 - 0x0000C40DC000 - 0x0000C40E0FFF (20KB) {Free Memory}
2015-06-19 13:27:16 - 0x0000C40E1000 - 0x0000C410EFFF (184KB) {Boot Services Data}
2015-06-19 13:27:16 - 0x0000C410F000 - 0x0000C4113FFF (20KB) {Free Memory}
2015-06-19 13:27:16 - 0x0000C4114000 - 0x0000C420CFFF (996KB) {Boot Services Data}
2015-06-19 13:27:16 - 0x0000C420D000 - 0x0000C4218FFF (48KB) {Boot Services Code}
2015-06-19 13:27:16 - 0x0000C4219000 - 0x0000C4E7FFFF (12MB) {Boot Services Data}
2015-06-19 13:27:16 - 0x0000C4E80000 - 0x0000C4FEFFFF (1472KB) {Boot Services Code}
2015-06-19 13:27:16 - 0x0000C4FF0000 - 0x0000C5025FFF (216KB) {Boot Services Data}
2015-06-19 13:27:16 - 0x0000C5026000 - 0x0000C504DFFF (160KB) {Boot Services Code}
2015-06-19 13:27:16 - 0x0000C504E000 - 0x0000C50DBFFF (568KB) {Boot Services Data}
2015-06-19 13:27:16 - 0x0000C50DC000 - 0x0000C50E1FFF (24KB) {Boot Services Code}
2015-06-19 13:27:16 - 0x0000C50E2000 - 0x0000C51B5FFF (848KB) {Boot Services Data}
2015-06-19 13:27:16 - 0x0000C51B6000 - 0x0000C51C3FFF (56KB) {Boot Services Code}
2015-06-19 13:27:16 - 0x0000C51C4000 - 0x0000C51CFFFF (48KB) {Boot Services Data}
2015-06-19 13:27:16 - 0x0000C51D0000 - 0x0000C51D5FFF (24KB) {Boot Services Code}
2015-06-19 13:27:16 - 0x0000C51D6000 - 0x0000C574FFFF (5MB) {Boot Services Data}
2015-06-19 13:27:16 - 0x0000C5750000 - 0x0000C5B8DFFF (4MB) {Free Memory}
2015-06-19 13:27:16 - 0x0000C5B8E000 - 0x0000C6051FFF (4MB) {Boot Services Data}
2015-06-19 13:27:16 - 0x0000C6052000 - 0x0000C60D9FFF (544KB) {Boot Services Code}
2015-06-19 13:27:17 - 0x0000C60DA000 - 0x0000C6186FFF (692KB) {Boot Services Data}
2015-06-19 13:27:17 - 0x0000C6187000 - 0x0000C621DFFF (604KB) {Boot Services Code}
2015-06-19 13:27:17 - 0x0000C621E000 - 0x0000C62FAFFF (884KB) {Boot Services Data}
2015-06-19 13:27:17 - 0x0000C62FB000 - 0x0000C631BFFF (132KB) {Boot Services Code}
2015-06-19 13:27:17 - 0x0000C631C000 - 0x0000C6322FFF (28KB) {Boot Services Data}
2015-06-19 13:27:17 - 0x0000C6323000 - 0x0000C632EFFF (48KB) {Boot Services Code}
2015-06-19 13:27:17 - 0x0000C632F000 - 0x0000C6330FFF (8KB) {Boot Services Data}
2015-06-19 13:27:17 - 0x0000C6331000 - 0x0000C6334FFF (16KB) {Boot Services Code}
2015-06-19 13:27:17 - 0x0000C6335000 - 0x0000C6337FFF (12KB) {Boot Services Data}
2015-06-19 13:27:17 - 0x0000C6338000 - 0x0000C6518FFF (1924KB) {Boot Services Code}
2015-06-19 13:27:17 - 0x0000C6519000 - 0x0000C6519FFF (4KB) {Boot Services Data}
2015-06-19 13:27:17 - 0x0000C651A000 - 0x0000C6529FFF (64KB) {Boot Services Code}
2015-06-19 13:27:17 - 0x0000C652A000 - 0x0000C6534FFF (44KB) {Boot Services Data}
2015-06-19 13:27:17 - 0x0000C6535000 - 0x0000C653AFFF (24KB) {Boot Services Code}
2015-06-19 13:27:17 - 0x0000C653B000 - 0x0000C653CFFF (8KB) {Boot Services Data}
2015-06-19 13:27:17 - 0x0000C653D000 - 0x0000C654DFFF (68KB) {Boot Services Code}
2015-06-19 13:27:17 - 0x0000C654E000 - 0x0000C654EFFF (4KB) {Boot Services Data}
2015-06-19 13:27:17 - 0x0000C654F000 - 0x0000C65DFFFF (580KB) {Boot Services Code}
2015-06-19 13:27:17 - 0x0000C65E0000 - 0x0000C65E3FFF (16KB) {Boot Services Data}
2015-06-19 13:27:17 - 0x0000C65E4000 - 0x0000C66A9FFF (792KB) {Boot Services Code}
2015-06-19 13:27:17 - 0x0000C66AA000 - 0x0000C66B0FFF (28KB) {Boot Services Data}
2015-06-19 13:27:17 - 0x0000C66B1000 - 0x0000C66C2FFF (72KB) {Boot Services Code}
2015-06-19 13:27:17 - 0x0000C66C3000 - 0x0000C66C3FFF (4KB) {Boot Services Data}
2015-06-19 13:27:17 - 0x0000C66C4000 - 0x0000C6735FFF (456KB) {Boot Services Code}
2015-06-19 13:27:17 - 0x0000C6736000 - 0x0000C6B35FFF (4MB) {ACPI Non-volatile}
2015-06-19 13:27:17 - 0x0000C6B36000 - 0x0000C6D36FFF (2MB) {Runtime Services Data}
2015-06-19 13:27:17 - 0x0000C6D37000 - 0x0000C71A5FFF (4MB) {Boot Services Data}
2015-06-19 13:27:18 - 0x0000C71A6000 - 0x0000C71C7FFF (136KB) {Boot Services Code}
2015-06-19 13:27:18 - 0x0000C71C8000 - 0x0000C734EFFF (1564KB) {Boot Services Data}
2015-06-19 13:27:18 - 0x0000C734F000 - 0x0000C7369FFF (108KB) {Boot Services Code}
2015-06-19 13:27:18 - 0x0000C736A000 - 0x0000C73FBFFF (584KB) {Boot Services Data}
2015-06-19 13:27:18 - 0x0000C73FC000 - 0x0000C743CFFF (260KB) {Boot Services Code}
2015-06-19 13:27:18 - 0x0000C743D000 - 0x0000C74FCFFF (768KB) {Boot Services Data}
2015-06-19 13:27:18 - 0x0000C74FD000 - 0x0000C750AFFF (56KB) {Boot Services Code}
2015-06-19 13:27:18 - 0x0000C750B000 - 0x0000C80BFFFF (11MB) {Boot Services Data}
2015-06-19 13:27:18 - 0x0000C80C0000 - 0x0000C81DEFFF (1148KB) {Free Memory}
2015-06-19 13:27:18 - 0x0000C81DF000 - 0x0000C82BFFFF (900KB) {Loader Code}
2015-06-19 13:27:18 - 0x0000C82C0000 - 0x0000C84C1FFF (2MB) {Boot Services Data}
2015-06-19 13:27:18 - 0x0000C84C2000 - 0x0000C86BFFFF (2040KB) {Boot Services Code}
2015-06-19 13:27:18 - 0x0000C86C0000 - 0x0000C87BFFFF (1024KB) {Runtime Services Code}
2015-06-19 13:27:18 - 0x0000C87C0000 - 0x0000C88BFFFF (1024KB) {Runtime Services Data}
2015-06-19 13:27:18 - 0x0000C88C0000 - 0x0000C88C3FFF (16KB) {Reserved Memory}
2015-06-19 13:27:18 - 0x0000C88C4000 - 0x0000C89C3FFF (1024KB) {ACPI Non-volatile}
2015-06-19 13:27:18 - 0x0000C89C4000 - 0x0000C8A43FFF (512KB) {ACPI Tables}
2015-06-19 13:27:18 - 0x0000C8A44000 - 0x0000CCA87FFF (64MB) {Boot Services Data}
2015-06-19 13:27:18 - 0x0000CCAB8000 - 0x0000CCAB8FFF (4KB) {Boot Services Data}
2015-06-19 13:27:18 - 0x0000CCAB9000 - 0x0000CCAE3FFF (172KB) {Boot Services Code}
2015-06-19 13:27:18 - 0x0000CCAE4000 - 0x0000CCAE5FFF (8KB) {Boot Services Data}
2015-06-19 13:27:18 - 0x0000CCAE6000 - 0x0000CCAEFFFF (40KB) {Boot Services Code}
2015-06-19 13:27:18 - 0x0000CD2F0000 - 0x0000CD31BFFF (176KB) {Reserved Memory}
2015-06-19 13:27:18 - 0x0000CD31C000 - 0x0000CD35AFFF (252KB) {ACPI Tables}
2015-06-19 13:27:18 - 0x0000CD35B000 - 0x0000CFFFFFFF (44MB) {Reserved Memory}
2015-06-19 13:27:18 - 0x0000E0000000 - 0x0000EFFFFFFF (256MB) {Reserved Memory}
2015-06-19 13:27:19 - 0x0000FE000000 - 0x0000FFFFFFFF (32MB) {Reserved Memory}
2015-06-19 13:27:19 - 0x000100000000 - 0x00022FFFFFFF (4864MB) {Free Memory}
2015-06-19 13:27:19 -
2015-06-19 13:27:19 - Available Memory: 0x1EFEA3000 (7GB)
2015-06-19 13:27:19 - Reserved Memory: 0x218BD000 (536MB)
2015-06-19 13:27:19 - mem_size - Number of entries: 250
2015-06-19 13:27:19 - mem_size - Max address: 0x230000000
2015-06-19 13:27:19 - mem_size - Total memory size(8882880512 bytes)
2015-06-19 13:27:19 - Getting memory SPD info
2015-06-19 13:27:19 - Searching PCI for SMBus Controller
2015-06-19 13:27:19 - E5 chipset found: SMB_STAT[0]=C0000040
2015-06-19 13:27:19 - MMCFGBase=E0000000 MMCFGLimit=EC000000
2015-06-19 13:27:19 - SMBUS MMIO address=E3F78180
2015-06-19 13:27:19 - SMB_STAT[0]=C0000040
2015-06-19 13:27:19 - Found SMBus device: VID:8086 DID:3CA8 Bus:3F Dev:0F Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:E3F78180 PCI Add:{3F:0F:00:0180} Rev:07 [Intel Sandy Bridge-E (IMC)]
2015-06-19 13:27:19 - Finished searching PCI for SMBus Controller
2015-06-19 13:27:19 - SMBIOS: Found SMBIOS BaseboardInformation (pbLinAddr=0xC89B914D, FormattedLen=9, iTotalLen=74)
2015-06-19 13:27:19 - Manufacturer: Dell Inc., Product: 07HNGV, Version: A01, S/N: ..CN1374039K00HX., AssetTag: , LocationInChassis:
2015-06-19 13:27:19 - [Intel Sandy Bridge-E (IMC) Bus:3F Dev:0F Fun:00] Looking for SPD
2015-06-19 13:27:19 - Failed to retrieve SPD info. Enumerating PCI bus...
2015-06-19 13:27:19 - Scanning PCI for devices:
2015-06-19 13:27:19 - VID:8086 DID:3C00 Bus:00 Dev:00 Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:19 - VID:8086 DID:3C02 Bus:00 Dev:01 Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:20 - VID:8086 DID:3C04 Bus:00 Dev:02 Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:20 - VID:8086 DID:3C08 Bus:00 Dev:03 Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:20 - VID:8086 DID:3C28 Bus:00 Dev:05 Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:20 - VID:8086 DID:3C2A Bus:00 Dev:05 Fun:02 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:20 - VID:8086 DID:1D3E Bus:00 Dev:11 Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:05 [Intel Unknown]
2015-06-19 13:27:20 - VID:8086 DID:1D3A Bus:00 Dev:16 Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:05 [Intel Unknown]
2015-06-19 13:27:20 - VID:8086 DID:1D3B Bus:00 Dev:16 Fun:01 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:05 [Intel Unknown]
2015-06-19 13:27:20 - VID:8086 DID:1D2D Bus:00 Dev:1A Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:05 [Intel Unknown]
2015-06-19 13:27:20 - VID:8086 DID:1D10 Bus:00 Dev:1C Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:B5 [Intel Unknown]
2015-06-19 13:27:20 - VID:8086 DID:1D18 Bus:00 Dev:1C Fun:04 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:B5 [Intel Unknown]
2015-06-19 13:27:20 - VID:8086 DID:1D1E Bus:00 Dev:1C Fun:07 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:B5 [Intel Unknown]
2015-06-19 13:27:20 - VID:8086 DID:1D26 Bus:00 Dev:1D Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:05 [Intel Unknown]
2015-06-19 13:27:20 - VID:8086 DID:244E Bus:00 Dev:1E Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:A5 [Intel Unknown]
2015-06-19 13:27:20 - VID:8086 DID:1D41 Bus:00 Dev:1F Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:05 [Intel Unknown]
2015-06-19 13:27:20 - VID:8086 DID:1D02 Bus:00 Dev:1F Fun:02 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:05 [Intel Unknown]
2015-06-19 13:27:20 - VID:8086 DID:1521 Bus:06 Dev:00 Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:01 [Intel Unknown]
2015-06-19 13:27:20 - VID:8086 DID:1521 Bus:06 Dev:00 Fun:01 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:01 [Intel Unknown]
2015-06-19 13:27:20 - VID:1912 DID:0013 Bus:07 Dev:00 Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:00 [Unknown Unknown]
2015-06-19 13:27:20 - VID:1912 DID:0013 Bus:08 Dev:00 Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:00 [Unknown Unknown]
2015-06-19 13:27:20 - VID:1912 DID:0013 Bus:08 Dev:01 Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:00 [Unknown Unknown]
2015-06-19 13:27:20 - VID:1912 DID:0012 Bus:09 Dev:00 Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:00 [Unknown Unknown]
2015-06-19 13:27:20 - VID:102B DID:0534 Bus:0A Dev:00 Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:00 [Unknown Unknown]
2015-06-19 13:27:20 - VID:8086 DID:3C80 Bus:3F Dev:08 Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:20 - VID:8086 DID:3C90 Bus:3F Dev:09 Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3CC0 Bus:3F Dev:0A Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3CC1 Bus:3F Dev:0A Fun:01 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3CC2 Bus:3F Dev:0A Fun:02 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3CD0 Bus:3F Dev:0A Fun:03 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3CE0 Bus:3F Dev:0B Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3CE3 Bus:3F Dev:0B Fun:03 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3CE8 Bus:3F Dev:0C Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3CE8 Bus:3F Dev:0C Fun:01 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3CF4 Bus:3F Dev:0C Fun:06 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3CF6 Bus:3F Dev:0C Fun:07 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3CE8 Bus:3F Dev:0D Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3CE8 Bus:3F Dev:0D Fun:01 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3CF5 Bus:3F Dev:0D Fun:06 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3CA0 Bus:3F Dev:0E Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3C46 Bus:3F Dev:0E Fun:01 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - E5 chipset found: SMB_STAT[0]=E30000FF
2015-06-19 13:27:21 - MMCFGBase=E0000000 MMCFGLimit=EC000000
2015-06-19 13:27:21 - SMBUS MMIO address=E3F78180
2015-06-19 13:27:21 - SMB_STAT[0]=E30000FF
2015-06-19 13:27:21 - VID:8086 DID:3CA8 Bus:3F Dev:0F Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:E3F78180 PCI Add:{3F:0F:00:0180} Rev:07 [Intel Sandy Bridge-E (IMC)]
2015-06-19 13:27:21 - VID:8086 DID:3C71 Bus:3F Dev:0F Fun:01 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3CAA Bus:3F Dev:0F Fun:02 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3CAB Bus:3F Dev:0F Fun:03 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3CAC Bus:3F Dev:0F Fun:04 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3CAD Bus:3F Dev:0F Fun:05 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:21 - VID:8086 DID:3CAE Bus:3F Dev:0F Fun:06 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:22 - VID:8086 DID:3CB0 Bus:3F Dev:10 Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:22 - VID:8086 DID:3CB1 Bus:3F Dev:10 Fun:01 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:22 - VID:8086 DID:3CB2 Bus:3F Dev:10 Fun:02 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:22 - VID:8086 DID:3CB3 Bus:3F Dev:10 Fun:03 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:22 - VID:8086 DID:3CB4 Bus:3F Dev:10 Fun:04 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:22 - VID:8086 DID:3CB5 Bus:3F Dev:10 Fun:05 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:22 - VID:8086 DID:3CB6 Bus:3F Dev:10 Fun:06 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:22 - VID:8086 DID:3CB7 Bus:3F Dev:10 Fun:07 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:22 - VID:8086 DID:3CB8 Bus:3F Dev:11 Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:22 - VID:8086 DID:3CE4 Bus:3F Dev:13 Fun:00 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:22 - VID:8086 DID:3C43 Bus:3F Dev:13 Fun:01 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:22 - VID:8086 DID:3CE6 Bus:3F Dev:13 Fun:04 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:22 - VID:8086 DID:3C44 Bus:3F Dev:13 Fun:05 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:22 - VID:8086 DID:3C45 Bus:3F Dev:13 Fun:06 IO Add:0000 IO (2) Add:0000 MMIO Add:0 PCI Add:{00:00:00:0000} Rev:07 [Intel Unknown]
2015-06-19 13:27:22 - Finished searching PCI for SMBus Controller
2015-06-19 13:27:22 - Getting SMBIOS Memory Device info...
2015-06-19 13:27:22 - Found 24 Memory Devices
2015-06-19 13:27:22 - DEBUG: Get SMB mem device Struct 0
2015-06-19 13:27:22 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:22 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 1, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:22 - DeviceLocator: DIMM_A1 , BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:22 - DEBUG: Get SMB mem device Struct 1
2015-06-19 13:27:22 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:22 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 1, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:22 - DeviceLocator: DIMM_A2 , BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:23 - DEBUG: Get SMB mem device Struct 2
2015-06-19 13:27:23 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:23 - TotalWidth: 72, DataWidth: 64, Size: 8192, FormFactor: 9, DeviceSet: 1, MemoryType: 24, Speed: 1333, Attributes: 1, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 1066, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:23 - DeviceLocator: DIMM_A3 , BankLocator: , Manufacturer: 002C04B3002C, S/N: 3AA18D60, AssetTag: 0F130321, PartNumber: 18KSF1G72PZ-1G4E1
2015-06-19 13:27:23 - DEBUG: Get SMB mem device Struct 3
2015-06-19 13:27:23 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:23 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 1, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:23 - DeviceLocator: DIMM_A4 , BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:23 - DEBUG: Get SMB mem device Struct 4
2015-06-19 13:27:23 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:23 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 2, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:23 - DeviceLocator: DIMM_A5 , BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:23 - DEBUG: Get SMB mem device Struct 5
2015-06-19 13:27:23 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:23 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 2, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:23 - DeviceLocator: DIMM_A6 , BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:23 - DEBUG: Get SMB mem device Struct 6
2015-06-19 13:27:23 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:23 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 2, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:23 - DeviceLocator: DIMM_A7 , BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:23 - DEBUG: Get SMB mem device Struct 7
2015-06-19 13:27:23 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:23 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 2, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:23 - DeviceLocator: DIMM_A8 , BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:23 - DEBUG: Get SMB mem device Struct 8
2015-06-19 13:27:23 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:24 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 3, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:24 - DeviceLocator: DIMM_A9 , BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:24 - DEBUG: Get SMB mem device Struct 9
2015-06-19 13:27:24 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:24 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 3, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:24 - DeviceLocator: DIMM_A10, BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:24 - DEBUG: Get SMB mem device Struct 10
2015-06-19 13:27:24 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:24 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 3, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:24 - DeviceLocator: DIMM_A11, BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:24 - DEBUG: Get SMB mem device Struct 11
2015-06-19 13:27:24 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:24 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 3, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:24 - DeviceLocator: DIMM_A12, BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:24 - DEBUG: Get SMB mem device Struct 12
2015-06-19 13:27:24 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:24 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 4, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:24 - DeviceLocator: DIMM_B1 , BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:24 - DEBUG: Get SMB mem device Struct 13
2015-06-19 13:27:24 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:24 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 4, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:24 - DeviceLocator: DIMM_B2 , BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:24 - DEBUG: Get SMB mem device Struct 14
2015-06-19 13:27:24 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:24 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 4, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:24 - DeviceLocator: DIMM_B3 , BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:25 - DEBUG: Get SMB mem device Struct 15
2015-06-19 13:27:25 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:25 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 4, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:25 - DeviceLocator: DIMM_B4 , BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:25 - DEBUG: Get SMB mem device Struct 16
2015-06-19 13:27:25 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:25 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 5, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:25 - DeviceLocator: DIMM_B5 , BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:25 - DEBUG: Get SMB mem device Struct 17
2015-06-19 13:27:25 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:25 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 5, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:25 - DeviceLocator: DIMM_B6 , BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:25 - DEBUG: Get SMB mem device Struct 18
2015-06-19 13:27:25 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:25 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 5, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:25 - DeviceLocator: DIMM_B7 , BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:25 - DEBUG: Get SMB mem device Struct 19
2015-06-19 13:27:25 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:25 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 5, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:25 - DeviceLocator: DIMM_B8 , BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:25 - DEBUG: Get SMB mem device Struct 20
2015-06-19 13:27:25 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:25 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 6, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:25 - DeviceLocator: DIMM_B9 , BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:25 - DEBUG: Get SMB mem device Struct 21
2015-06-19 13:27:26 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:26 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 6, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:26 - DeviceLocator: DIMM_B10, BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:26 - DEBUG: Get SMB mem device Struct 22
2015-06-19 13:27:26 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:26 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 6, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:26 - DeviceLocator: DIMM_B11, BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:26 - DEBUG: Get SMB mem device Struct 23
2015-06-19 13:27:26 - DEBUG: Get SMB mem device Struct Get strings (FormattedLen=34, iTotalLen=5E)
2015-06-19 13:27:26 - TotalWidth: 72, DataWidth: 64, Size: 0, FormFactor: 9, DeviceSet: 6, MemoryType: 24, Speed: 0, Attributes: 0, ExtendedSize: 0, ConfiguredMemoryClockSpeed: 0, MinimumVoltage: 0, MaximumVoltage: 0, ConfiguredVoltage: 0
2015-06-19 13:27:26 - DeviceLocator: DIMM_B12, BankLocator: , Manufacturer: , S/N: , AssetTag: , PartNumber:
2015-06-19 13:27:26 - Getting memory controller info
2015-06-19 13:27:26 - find_mem_controller - found Intel Sandy Bridge-E (8086:3CA8) at 63-15-0
2015-06-19 13:27:26 - Intel E5 Sandy Bridge chipset init
2015-06-19 13:27:26 - SB-E MCMTR=00000104
2015-06-19 13:27:26 - SB-E SCRUBCTL=84001400
2015-06-19 13:27:26 - SB-E MMCFGBase=E0000000, MMCFGLim=EC000000
2015-06-19 13:27:26 - [Channel 2] CORRERRCNT_0=00000000, CORRERRTHRSHLD_0=00010001
2015-06-19 13:27:26 - [Channel 2] CORRERRCNT_1=00000000, CORRERRTHRSHLD_1=00010001
2015-06-19 13:27:26 - [Channel 2] CORRERRCNT_2=00000000, CORRERRTHRSHLD_2=00010001
2015-06-19 13:27:26 - [Channel 2] CORRERRCNT_3=00000000, CORRERRTHRSHLD_3=00010001
2015-06-19 13:27:26 - [Channel 3] CORRERRCNT_0=00000000, CORRERRTHRSHLD_0=00010001
2015-06-19 13:27:26 - [Channel 3] CORRERRCNT_1=00000000, CORRERRTHRSHLD_1=00010001
2015-06-19 13:27:26 - [Channel 3] CORRERRCNT_2=00000000, CORRERRTHRSHLD_2=00010001
2015-06-19 13:27:26 - [Channel 3] CORRERRCNT_3=00000000, CORRERRTHRSHLD_3=00010001
2015-06-19 13:27:26 - [Channel 0] CORRERRCNT_0=00000000, CORRERRTHRSHLD_0=00010001
2015-06-19 13:27:26 - [Channel 0] CORRERRCNT_1=00000000, CORRERRTHRSHLD_1=00010001
2015-06-19 13:27:27 - [Channel 0] CORRERRCNT_2=00000000, CORRERRTHRSHLD_2=00010001
2015-06-19 13:27:27 - [Channel 0] CORRERRCNT_3=00000000, CORRERRTHRSHLD_3=00010001
2015-06-19 13:27:27 - [Channel 1] CORRERRCNT_0=00000000, CORRERRTHRSHLD_0=00010001
2015-06-19 13:27:27 - [Channel 1] CORRERRCNT_1=00000000, CORRERRTHRSHLD_1=00010001
2015-06-19 13:27:27 - [Channel 1] CORRERRCNT_2=00000000, CORRERRTHRSHLD_2=00010001
2015-06-19 13:27:27 - [Channel 1] CORRERRCNT_3=00000000, CORRERRTHRSHLD_3=00010001
2015-06-19 13:27:27 - SB-E MCG_CAP=0000000001000C10, MCG_STATUS=0000000000000000, ERROR_CONTROL=0000000000000002
2015-06-19 13:27:27 - find_mem_controller - Intel Sandy Bridge-E (8086:3CA8) at 63-15-0
2015-06-19 13:27:27 - find_mem_controller - Intel Sandy Bridge-E ECC mode: detect: yes, correct: yes, scrub: yes, chipkill: no
2015-06-19 13:27:27 - ECC polling enabled
2015-06-19 13:27:27 - Successfully located the PI MpService protocol.
2015-06-19 13:27:27 - BSP is Proc 0
2015-06-19 13:27:27 - This platform has 4 logical processors of which 4 are enabled.
2015-06-19 13:27:27 - ProcID Enabled Type Status Pkg Core Thread
2015-06-19 13:27:27 - -------- -------- ---- -------- ----- ---- ------
2015-06-19 13:27:27 - 00000000 Y BSP 00000007 0 0 0
2015-06-19 13:27:27 - 00000002 Y AP 00000006 0 1 0
2015-06-19 13:27:27 - 00000004 Y AP 00000006 0 2 0
2015-06-19 13:27:27 - 00000006 Y AP 00000006 0 3 0
2015-06-19 13:27:27 - This platform has 4 logical processors of which 4 are enabled.
2015-06-19 13:27:27 - Screen resolution is too low (800 x 600). Setting screen size to the minimum 1024 x 768
2015-06-19 13:27:27 - New screen size = 1024 x 768
2015-06-19 13:27:27 - Screen size = 1024 x 768
2015-06-19 13:27:27 - Char width=8 height=19
2015-06-19 13:27:27 - Installing default tests
2015-06-19 13:27:27 - Loading images
2015-06-19 13:27:36 - GetIA32ArchitecturalTemp - MSR(0x19C) = 88350000 (Vendor ID: GenuineIntel 6 2D 7)
2015-06-19 13:27:36 - MapTempIntel - MSR(0x1A2) = 580A00
2015-06-19 13:27:51 - Intel E5 Sandy Bridge chipset init
2015-06-19 13:27:51 - SB-E MCMTR=00000104
2015-06-19 13:27:51 - SB-E SCRUBCTL=84001400
2015-06-19 13:27:51 - SB-E MMCFGBase=E0000000, MMCFGLim=EC000000
2015-06-19 13:27:51 - [Channel 2] CORRERRCNT_0=00000000, CORRERRTHRSHLD_0=00010001
2015-06-19 13:27:51 - [Channel 2] CORRERRCNT_1=00000000, CORRERRTHRSHLD_1=00010001
2015-06-19 13:27:51 - [Channel 2] CORRERRCNT_2=00000000, CORRERRTHRSHLD_2=00010001
2015-06-19 13:27:52 - [Channel 2] CORRERRCNT_3=00000000, CORRERRTHRSHLD_3=00010001
2015-06-19 13:27:52 - [Channel 3] CORRERRCNT_0=00000000, CORRERRTHRSHLD_0=00010001
2015-06-19 13:27:52 - [Channel 3] CORRERRCNT_1=00000000, CORRERRTHRSHLD_1=00010001
2015-06-19 13:27:52 - [Channel 3] CORRERRCNT_2=00000000, CORRERRTHRSHLD_2=00010001
2015-06-19 13:27:52 - [Channel 3] CORRERRCNT_3=00000000, CORRERRTHRSHLD_3=00010001
2015-06-19 13:27:52 - [Channel 0] CORRERRCNT_0=00000000, CORRERRTHRSHLD_0=00010001
2015-06-19 13:27:52 - [Channel 0] CORRERRCNT_1=00000000, CORRERRTHRSHLD_1=00010001
2015-06-19 13:27:52 - [Channel 0] CORRERRCNT_2=00000000, CORRERRTHRSHLD_2=00010001
2015-06-19 13:27:52 - [Channel 0] CORRERRCNT_3=00000000, CORRERRTHRSHLD_3=00010001
2015-06-19 13:27:52 - [Channel 1] CORRERRCNT_0=00000000, CORRERRTHRSHLD_0=00010001
2015-06-19 13:27:52 - [Channel 1] CORRERRCNT_1=00000000, CORRERRTHRSHLD_1=00010001
2015-06-19 13:27:52 - [Channel 1] CORRERRCNT_2=00000000, CORRERRTHRSHLD_2=00010001
2015-06-19 13:27:52 - [Channel 1] CORRERRCNT_3=00000000, CORRERRTHRSHLD_3=00010001
2015-06-19 13:27:52 - SB-E MCG_CAP=0000000001000C10, MCG_STATUS=0000000000000000, ERROR_CONTROL=0000000000000002
2015-06-19 13:27:52 - *** TEST SESSION - 2015-06-19 13:27:52 ***
2015-06-19 13:27:52 - CPU selection mode = 1
2015-06-19 13:27:52 - GetIA32ArchitecturalTemp - MSR(0x19C) = 88350000 (Vendor ID: GenuineIntel 6 2D 7)
2015-06-19 13:27:52 - MapTempIntel - MSR(0x1A2) = 580A00
2015-06-19 13:27:52 - Starting pass #1
2015-06-19 13:27:52 - GetIA32ArchitecturalTemp - MSR(0x19C) = 88350000 (Vendor ID: GenuineIntel 6 2D 7)
2015-06-19 13:27:52 - MapTempIntel - MSR(0x1A2) = 580A00
2015-06-19 13:27:52 - Running test #0 (Test 0 [Address test, walking ones, 1 CPU])
2015-06-19 13:27:52 - MtSupportRunAllTests - Setting random seed to 0x50415353
2015-06-19 13:27:52 - MtSupportRunAllTests - Start time: 382 ms
2015-06-19 13:27:52 - ReadMemoryRanges - Available Pages = 2031067
2015-06-19 13:27:52 - MtSupportRunAllTests - Enabling memory cache for test
2015-06-19 13:27:53 - MtSupportRunAllTests - Enabling memory cache complete
2015-06-19 13:27:53 - Start memory range test (0x0 - 0x230000000)
2015-06-19 13:27:53 - Pre-allocating memory ranges >=16MB first...
2015-06-19 13:27:53 - All memory ranges successfully locked
2015-06-19 13:27:54 - Cleanup - Releasing all memory ranges...
2015-06-19 13:27:54 - MtSupportRunAllTests - Test execution time: 1.911
2015-06-19 13:27:55 - GetIA32ArchitecturalTemp - MSR(0x19C) = 88350000 (Vendor ID: GenuineIntel 6 2D 7)
2015-06-19 13:27:55 - MapTempIntel - MSR(0x1A2) = 580A00
2015-06-19 13:27:55 - Running test #1 (Test 1 [Address test, own address, 1 CPU])
2015-06-19 13:27:55 - MtSupportRunAllTests - Setting random seed to 0x50415353
2015-06-19 13:27:55 - MtSupportRunAllTests - Start time: 2618 ms
2015-06-19 13:27:55 - ReadMemoryRanges - Available Pages = 2031067
2015-06-19 13:27:55 - MtSupportRunAllTests - Enabling memory cache for test
2015-06-19 13:27:55 - MtSupportRunAllTests - Enabling memory cache complete
2015-06-19 13:27:55 - Start memory range test (0x0 - 0x230000000)
2015-06-19 13:27:55 - Pre-allocating memory ranges >=16MB first...
2015-06-19 13:27:55 - All memory ranges successfully locked
2015-06-19 13:28:00 - Cleanup - Releasing all memory ranges...
2015-06-19 13:28:00 - MtSupportRunAllTests - Test execution time: 5.213
2015-06-19 13:28:00 - GetIA32ArchitecturalTemp - MSR(0x19C) = 88350000 (Vendor ID: GenuineIntel 6 2D 7)
2015-06-19 13:28:00 - MapTempIntel - MSR(0x1A2) = 580A00
2015-06-19 13:28:00 - Running test #2 (Test 2 [Address test, own address])
2015-06-19 13:28:00 - MtSupportRunAllTests - Setting random seed to 0x50415353
2015-06-19 13:28:00 - MtSupportRunAllTests - Start time: 8194 ms
2015-06-19 13:28:00 - ReadMemoryRanges - Available Pages = 2031067
2015-06-19 13:28:00 - MtSupportRunAllTests - Enabling memory cache for test
2015-06-19 13:28:00 - MtSupportRunAllTests - Enabling memory cache complete
2015-06-19 13:28:00 - Start memory range test (0x0 - 0x230000000)
2015-06-19 13:28:00 - Pre-allocating memory ranges >=16MB first...
2015-06-19 13:28:00 - All memory ranges successfully locked
2015-06-19 13:28:05 - Cleanup - Releasing all memory ranges...
2015-06-19 13:28:05 - MtSupportRunAllTests - Test execution time: 5.083
2015-06-19 13:28:06 - GetIA32ArchitecturalTemp - MSR(0x19C) = 88350000 (Vendor ID: GenuineIntel 6 2D 7)
2015-06-19 13:28:06 - MapTempIntel - MSR(0x1A2) = 580A00
2015-06-19 13:28:06 - Running test #3 (Test 3 [Moving inversions, ones & zeroes])
2015-06-19 13:28:06 - MtSupportRunAllTests - Setting random seed to 0x50415353
2015-06-19 13:28:06 - MtSupportRunAllTests - Start time: 13611 ms
2015-06-19 13:28:06 - ReadMemoryRanges - Available Pages = 2031067
2015-06-19 13:28:06 - MtSupportRunAllTests - Enabling memory cache for test
2015-06-19 13:28:06 - MtSupportRunAllTests - Enabling memory cache complete
2015-06-19 13:28:06 - Start memory range test (0x0 - 0x230000000)
2015-06-19 13:28:06 - Pre-allocating memory ranges >=16MB first...
2015-06-19 13:28:06 - All memory ranges successfully locked
2015-06-19 13:28:30 - Cleanup - Releasing all memory ranges...
2015-06-19 13:28:30 - MtSupportRunAllTests - Test execution time: 24.246
2015-06-19 13:28:30 - GetIA32ArchitecturalTemp - MSR(0x19C) = 88350000 (Vendor ID: GenuineIntel 6 2D 7)
2015-06-19 13:28:30 - MapTempIntel - MSR(0x1A2) = 580A00
2015-06-19 13:28:30 - Running test #4 (Test 4 [Moving inversions, 8-bit pattern])
2015-06-19 13:28:30 - MtSupportRunAllTests - Setting random seed to 0x50415353
2015-06-19 13:28:30 - MtSupportRunAllTests - Start time: 38205 ms
2015-06-19 13:28:30 - ReadMemoryRanges - Available Pages = 2031067
2015-06-19 13:28:30 - MtSupportRunAllTests - Enabling memory cache for test
2015-06-19 13:28:30 - MtSupportRunAllTests - Enabling memory cache complete
2015-06-19 13:28:30 - Start memory range test (0x0 - 0x230000000)
2015-06-19 13:28:30 - Pre-allocating memory ranges >=16MB first...
2015-06-19 13:28:30 - All memory ranges successfully locked
2015-06-19 13:29:40 - MC10_STATUS=8800005100800092 (Overflow=No, Uncorrected=No, Recoverable=No, Corrected error count=1, Error code=0092)
2015-06-19 13:29:40 - Transaction error type: Memory read error
2015-06-19 13:29:40 - Model specific error: Reserved
2015-06-19 13:29:40 - MC10_ADDR=0000000000000000
2015-06-19 13:29:40 - MC10_MISC=4900200020002200
2015-06-19 13:30:21 - Cleanup - Releasing all memory ranges...
2015-06-19 13:30:21 - MtSupportRunAllTests - Test execution time: 110.302
2015-06-19 13:30:21 - GetIA32ArchitecturalTemp - MSR(0x19C) = 88340000 (Vendor ID: GenuineIntel 6 2D 7)
2015-06-19 13:30:21 - MapTempIntel - MSR(0x1A2) = 580A00
2015-06-19 13:30:21 - Running test #5 (Test 5 [Moving inversions, random pattern])
2015-06-19 13:30:21 - MtSupportRunAllTests - Setting random seed to 0x50415353
2015-06-19 13:30:21 - MtSupportRunAllTests - Start time: 148862 ms
2015-06-19 13:30:21 - ReadMemoryRanges - Available Pages = 2031067
2015-06-19 13:30:21 - MtSupportRunAllTests - Enabling memory cache for test
2015-06-19 13:30:21 - MtSupportRunAllTests - Enabling memory cache complete
2015-06-19 13:30:21 - Start memory range test (0x0 - 0x230000000)
2015-06-19 13:30:21 - Pre-allocating memory ranges >=16MB first...
2015-06-19 13:30:21 - All memory ranges successfully locked
2015-06-19 13:31:31 - MC10_STATUS=8800005100800092 (Overflow=No, Uncorrected=No, Recoverable=No, Corrected error count=1, Error code=0092)
2015-06-19 13:31:31 - Transaction error type: Memory read error
2015-06-19 13:31:32 - Model specific error: Reserved
2015-06-19 13:31:32 - MC10_ADDR=0000000000000000
2015-06-19 13:31:32 - MC10_MISC=4900200020002200
2015-06-19 13:32:15 - Cleanup - Releasing all memory ranges...
2015-06-19 13:32:15 - MtSupportRunAllTests - Test execution time: 114.314
2015-06-19 13:32:15 - GetIA32ArchitecturalTemp - MSR(0x19C) = 88330000 (Vendor ID: GenuineIntel 6 2D 7)
2015-06-19 13:32:15 - MapTempIntel - MSR(0x1A2) = 580A00
2015-06-19 13:32:15 - Running test #6 (Test 6 [Block move, 64-byte blocks])
2015-06-19 13:32:16 - MtSupportRunAllTests - Setting random seed to 0x50415353
2015-06-19 13:32:16 - MtSupportRunAllTests - Start time: 263510 ms
2015-06-19 13:32:16 - ReadMemoryRanges - Available Pages = 2031067
2015-06-19 13:32:16 - MtSupportRunAllTests - Enabling memory cache for test
2015-06-19 13:32:16 - MtSupportRunAllTests - Enabling memory cache complete
2015-06-19 13:32:16 - Start memory range test (0x0 - 0x230000000)
2015-06-19 13:32:16 - Pre-allocating memory ranges >=16MB first...
2015-06-19 13:32:16 - All memory ranges successfully locked
2015-06-19 13:33:41 - Cleanup - Releasing all memory ranges...
2015-06-19 13:33:41 - MtSupportRunAllTests - Test execution time: 85.641
2015-06-19 13:33:41 - GetIA32ArchitecturalTemp - MSR(0x19C) = 88320000 (Vendor ID: GenuineIntel 6 2D 7)
2015-06-19 13:33:41 - MapTempIntel - MSR(0x1A2) = 580A00
2015-06-19 13:33:41 - Running test #7 (Test 7 [Moving inversions, 32-bit pattern])
2015-06-19 13:33:41 - MtSupportRunAllTests - Setting random seed to 0x50415353
2015-06-19 13:33:42 - MtSupportRunAllTests - Start time: 349475 ms
2015-06-19 13:33:42 - ReadMemoryRanges - Available Pages = 2031067
2015-06-19 13:33:42 - MtSupportRunAllTests - Enabling memory cache for test
2015-06-19 13:33:42 - MtSupportRunAllTests - Enabling memory cache complete
2015-06-19 13:33:42 - Start memory range test (0x0 - 0x230000000)
2015-06-19 13:33:42 - Pre-allocating memory ranges >=16MB first...
2015-06-19 13:33:42 - All memory ranges successfully locked
2015-06-19 13:38:10 - MC10_STATUS=8800005100800092 (Overflow=No, Uncorrected=No, Recoverable=No, Corrected error count=1, Error code=0092)
2015-06-19 13:38:10 - Transaction error type: Memory read error
2015-06-19 13:38:11 - Model specific error: Reserved
2015-06-19 13:38:11 - MC10_ADDR=0000000000000000
2015-06-19 13:38:11 - MC10_MISC=4900200020002200
2015-06-19 13:38:12 - MC10_STATUS=8800005100800092 (Overflow=No, Uncorrected=No, Recoverable=No, Corrected error count=1, Error code=0092)
2015-06-19 13:38:12 - Transaction error type: Memory read error
2015-06-19 13:38:12 - Model specific error: Reserved
2015-06-19 13:38:12 - MC10_ADDR=0000000000000000
2015-06-19 13:38:12 - MC10_MISC=4900200020002200
2015-06-19 13:38:13 - MC10_STATUS=8800005100800092 (Overflow=No, Uncorrected=No, Recoverable=No, Corrected error count=1, Error code=0092)
2015-06-19 13:38:13 - Transaction error type: Memory read error
2015-06-19 13:38:13 - Model specific error: Reserved
2015-06-19 13:38:13 - MC10_ADDR=0000000000000000
2015-06-19 13:38:13 - MC10_MISC=4900200020002200
2015-06-19 13:38:14 - MC10_STATUS=8800005100800092 (Overflow=No, Uncorrected=No, Recoverable=No, Corrected error count=1, Error code=0092)
2015-06-19 13:38:14 - Transaction error type: Memory read error
2015-06-19 13:38:14 - Model specific error: Reserved
2015-06-19 13:38:14 - MC10_ADDR=0000000000000000
2015-06-19 13:38:14 - MC10_MISC=4900200020002200
2015-06-19 13:38:16 - MC10_STATUS=C800009100800092 (Overflow=Yes, Uncorrected=No, Recoverable=No, Corrected error count=2, Error code=0092)
2015-06-19 13:38:16 - Transaction error type: Memory read error
2015-06-19 13:38:16 - Model specific error: Reserved
2015-06-19 13:38:16 - MC10_ADDR=0000000000000000
2015-06-19 13:38:16 - MC10_MISC=C900200020002200
2015-06-19 13:38:19 - MC10_STATUS=8800005100800092 (Overflow=No, Uncorrected=No, Recoverable=No, Corrected error count=1, Error code=0092)
2015-06-19 13:38:19 - Transaction error type: Memory read error
2015-06-19 13:38:19 - Model specific error: Reserved
2015-06-19 13:38:19 - MC10_ADDR=0000000000000000
2015-06-19 13:38:19 - MC10_MISC=4900200020002200
2015-06-19 13:38:22 - MC10_STATUS=8800005100800092 (Overflow=No, Uncorrected=No, Recoverable=No, Corrected error count=1, Error code=0092)
2015-06-19 13:38:22 - Transaction error type: Memory read error
2015-06-19 13:38:22 - Model specific error: Reserved
2015-06-19 13:38:22 - MC10_ADDR=0000000000000000
2015-06-19 13:38:22 - MC10_MISC=4900200020002200
2015-06-19 13:40:59 - Cleanup - Releasing all memory ranges...
2015-06-19 13:40:59 - MtSupportRunAllTests - Test execution time: 436.903
2015-06-19 13:40:59 - GetIA32ArchitecturalTemp - MSR(0x19C) = 88330000 (Vendor ID: GenuineIntel 6 2D 7)
2015-06-19 13:40:59 - MapTempIntel - MSR(0x1A2) = 580A00
2015-06-19 13:40:59 - Running test #8 (Test 8 [Random number sequence])
2015-06-19 13:40:59 - MtSupportRunAllTests - Setting random seed to 0x50415353
2015-06-19 13:40:59 - MtSupportRunAllTests - Start time: 786713 ms
2015-06-19 13:40:59 - ReadMemoryRanges - Available Pages = 2031067
2015-06-19 13:40:59 - MtSupportRunAllTests - Enabling memory cache for test
2015-06-19 13:40:59 - MtSupportRunAllTests - Enabling memory cache complete
2015-06-19 13:40:59 - Start memory range test (0x0 - 0x230000000)
2015-06-19 13:40:59 - Pre-allocating memory ranges >=16MB first...
2015-06-19 13:40:59 - All memory ranges successfully locked
2015-06-19 13:42:06 - Cleanup - Releasing all memory ranges...
2015-06-19 13:42:06 - MtSupportRunAllTests - Test execution time: 66.787
2015-06-19 13:42:06 - GetIA32ArchitecturalTemp - MSR(0x19C) = 88320000 (Vendor ID: GenuineIntel 6 2D 7)
2015-06-19 13:42:06 - MapTempIntel - MSR(0x1A2) = 580A00
2015-06-19 13:42:06 - Running test #9 (Test 9 [Modulo 20, ones & zeros])
2015-06-19 13:42:06 - MtSupportRunAllTests - Setting random seed to 0x50415353
2015-06-19 13:42:06 - MtSupportRunAllTests - Start time: 853835 ms
2015-06-19 13:42:06 - ReadMemoryRanges - Available Pages = 2031067
2015-06-19 13:42:06 - MtSupportRunAllTests - Enabling memory cache for test
2015-06-19 13:42:06 - MtSupportRunAllTests - Enabling memory cache complete
2015-06-19 13:42:06 - Start memory range test (0x0 - 0x230000000)
2015-06-19 13:42:06 - Pre-allocating memory ranges >=16MB first...
2015-06-19 13:42:06 - All memory ranges successfully locked
2015-06-19 13:48:39 - MC10_STATUS=C80000D100800092 (Overflow=Yes, Uncorrected=No, Recoverable=No, Corrected error count=3, Error code=0092)
2015-06-19 13:48:39 - Transaction error type: Memory read error
2015-06-19 13:48:39 - Model specific error: Reserved
2015-06-19 13:48:39 - MC10_ADDR=0000000000000000
2015-06-19 13:48:39 - MC10_MISC=C900200020002200
2015-06-19 13:48:40 - MC10_STATUS=C800009100800092 (Overflow=Yes, Uncorrected=No, Recoverable=No, Corrected error count=2, Error code=0092)
2015-06-19 13:48:40 - Transaction error type: Memory read error
2015-06-19 13:48:40 - Model specific error: Reserved
2015-06-19 13:48:40 - MC10_ADDR=0000000000000000
2015-06-19 13:48:40 - MC10_MISC=C900200020002200
2015-06-19 13:48:41 - MC10_STATUS=8800005100800092 (Overflow=No, Uncorrected=No, Recoverable=No, Corrected error count=1, Error code=0092)
2015-06-19 13:48:41 - Transaction error type: Memory read error
2015-06-19 13:48:41 - Model specific error: Reserved
2015-06-19 13:48:41 - MC10_ADDR=0000000000000000
2015-06-19 13:48:41 - MC10_MISC=4900200020002200
2015-06-19 13:48:42 - MC10_STATUS=8800005100800092 (Overflow=No, Uncorrected=No, Recoverable=No, Corrected error count=1, Error code=0092)
2015-06-19 13:48:42 - Transaction error type: Memory read error
2015-06-19 13:48:42 - Model specific error: Reserved
2015-06-19 13:48:42 - MC10_ADDR=0000000000000000
2015-06-19 13:48:42 - MC10_MISC=4900200020002200
2015-06-19 13:52:28 - Cleanup - Releasing all memory ranges...
2015-06-19 13:52:28 - MtSupportRunAllTests - Test execution time: 621.894
2015-06-19 13:52:28 - GetIA32ArchitecturalTemp - MSR(0x19C) = 88330000 (Vendor ID: GenuineIntel 6 2D 7)
2015-06-19 13:52:28 - MapTempIntel - MSR(0x1A2) = 580A00
2015-06-19 13:52:28 - Running test #10 (Test 10 [Bit fade test, 2 patterns, 1 CPU])
2015-06-19 13:52:28 - MtSupportRunAllTests - Setting random seed to 0x50415353
2015-06-19 13:52:28 - MtSupportRunAllTests - Start time: 1476132 ms
2015-06-19 13:52:28 - ReadMemoryRanges - Available Pages = 2031067
2015-06-19 13:52:28 - MtSupportRunAllTests - Enabling memory cache for test
2015-06-19 13:52:28 - MtSupportRunAllTests - Enabling memory cache complete
2015-06-19 13:52:28 - Start bit fade test (0x0 - 0x230000000)
2015-06-19 13:52:28 - Locking all memory ranges first...
2015-06-19 13:52:28 - Memory range locked: 0x4000000 - 0xFFFF000 (7927664KB of available memory left)
2015-06-19 13:52:28 - Memory range locked: 0x1006D000 - 0xC33DF000 (4991400KB of available memory left)
2015-06-19 13:52:28 - Memory range locked: 0xC3640000 - 0xC3649000 (4991364KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC364E000 - 0xC3653000 (4991344KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC36A4000 - 0xC36A9000 (4991324KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC36AE000 - 0xC36B3000 (4991304KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC36BC000 - 0xC36E1000 (4991156KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC371E000 - 0xC3721000 (4991144KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC3725000 - 0xC3727000 (4991136KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC372D000 - 0xC372F000 (4991128KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC3738000 - 0xC373C000 (4991112KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC373D000 - 0xC3740000 (4991100KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC3741000 - 0xC3743000 (4991092KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC3744000 - 0xC3747000 (4991080KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC3748000 - 0xC374A000 (4991072KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC374B000 - 0xC374D000 (4991064KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC375B000 - 0xC375D000 (4991056KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC375E000 - 0xC3761000 (4991044KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC3763000 - 0xC3765000 (4991036KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC3767000 - 0xC3769000 (4991028KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC376C000 - 0xC376E000 (4991020KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC37B4000 - 0xC37B7000 (4991008KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC37B8000 - 0xC37BA000 (4991000KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC37CF000 - 0xC37D6000 (4990972KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC37D8000 - 0xC37E4000 (4990924KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC37EB000 - 0xC37ED000 (4990916KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC37EE000 - 0xC37F0000 (4990908KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC37F1000 - 0xC37F3000 (4990900KB of available memory left)
2015-06-19 13:52:29 - Memory range locked: 0xC37F4000 - 0xC37F6000 (4990892KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC37FE000 - 0xC3800000 (4990884KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC3801000 - 0xC3804000 (4990872KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC3805000 - 0xC3807000 (4990864KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC3808000 - 0xC380A000 (4990856KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC380B000 - 0xC3810000 (4990836KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC3811000 - 0xC3813000 (4990828KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC3817000 - 0xC381A000 (4990816KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC381B000 - 0xC381E000 (4990804KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC3820000 - 0xC3822000 (4990796KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC3823000 - 0xC382D000 (4990756KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC3831000 - 0xC3833000 (4990748KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC3834000 - 0xC3838000 (4990732KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC383A000 - 0xC383D000 (4990720KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC383F000 - 0xC3843000 (4990704KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC3844000 - 0xC3847000 (4990692KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC3848000 - 0xC384C000 (4990676KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC384E000 - 0xC3852000 (4990660KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC3854000 - 0xC3857000 (4990648KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC3858000 - 0xC385F000 (4990620KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC3860000 - 0xC3865000 (4990600KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC3867000 - 0xC386B000 (4990584KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC386D000 - 0xC386F000 (4990576KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC3870000 - 0xC3872000 (4990568KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC3873000 - 0xC3876000 (4990556KB of available memory left)
2015-06-19 13:52:30 - Memory range locked: 0xC3877000 - 0xC3879000 (4990548KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC387E000 - 0xC3881000 (4990536KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC3884000 - 0xC3886000 (4990528KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC3889000 - 0xC388B000 (4990520KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC38BA000 - 0xC38C4000 (4990480KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC38C8000 - 0xC38CB000 (4990468KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC38CD000 - 0xC38D0000 (4990456KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC38D1000 - 0xC38D4000 (4990444KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC38D6000 - 0xC38D9000 (4990432KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC38E9000 - 0xC38EC000 (4990420KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC38F4000 - 0xC38F9000 (4990400KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC38FF000 - 0xC3902000 (4990388KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC3903000 - 0xC3906000 (4990376KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC392E000 - 0xC3931000 (4990364KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC3932000 - 0xC3935000 (4990352KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC3936000 - 0xC3939000 (4990340KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC3953000 - 0xC3DD4000 (4985728KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC3ECF000 - 0xC3ED2000 (4985716KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC3EED000 - 0xC3EF0000 (4985704KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC3F76000 - 0xC3F79000 (4985692KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC4003000 - 0xC4006000 (4985680KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC4058000 - 0xC405B000 (4985668KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC409D000 - 0xC40A4000 (4985640KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC40A8000 - 0xC40B2000 (4985600KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC40BC000 - 0xC40C1000 (4985580KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC40C7000 - 0xC40CC000 (4985560KB of available memory left)
2015-06-19 13:52:31 - Memory range locked: 0xC40CD000 - 0xC40D2000 (4985540KB of available memory left)
2015-06-19 13:52:32 - Memory range locked: 0xC40D3000 - 0xC40D9000 (4985516KB of available memory left)
2015-06-19 13:52:32 - Memory range locked: 0xC40DC000 - 0xC40E1000 (4985496KB of available memory left)
2015-06-19 13:52:32 - Memory range locked: 0xC410F000 - 0xC4114000 (4985476KB of available memory left)
2015-06-19 13:52:32 - Memory range locked: 0xC5750000 - 0xC5A83000 (4982200KB of available memory left)
2015-06-19 13:52:32 - Memory range locked: 0xC5AD6000 - 0xC5AFF000 (4982036KB of available memory left)
2015-06-19 13:52:32 - Memory range locked: 0xC5B17000 - 0xC5B2F000 (4981940KB of available memory left)
2015-06-19 13:52:32 - Memory range locked: 0xC5B5B000 - 0xC5B5F000 (4981924KB of available memory left)
2015-06-19 13:52:32 - Memory range locked: 0xC5B64000 - 0xC5B67000 (4981912KB of available memory left)
2015-06-19 13:52:32 - Memory range locked: 0xC5B77000 - 0xC5B7B000 (4981896KB of available memory left)
2015-06-19 13:52:32 - Memory range locked: 0xC5B85000 - 0xC5B88000 (4981884KB of available memory left)
2015-06-19 13:52:32 - Memory range locked: 0xC80C0000 - 0xC81DF000 (4980736KB of available memory left)
2015-06-19 13:52:32 - Reducing memory range: 0x100000000 - 0x230000000 ==> 0x100000000 - 0x22FF00000
2015-06-19 13:52:32 - Memory range locked: 0x100000000 - 0x22FF00000 (1024KB of available memory left)
2015-06-19 13:52:32 - All memory ranges successfully locked
2015-06-19 13:52:32 - Starting Stage 0, Pattern=00000000
2015-06-19 13:52:33 - Reducing memory range: 0x100000000 - 0x230000000 ==> 0x100000000 - 0x22FF00000
2015-06-19 13:52:35 - Finished Stage 0, Pattern=00000000
2015-06-19 13:53:05 - Slept for 30 seconds
2015-06-19 13:53:36 - Slept for 60 seconds
2015-06-19 13:54:06 - Slept for 91 seconds
2015-06-19 13:54:37 - Slept for 121 seconds
2015-06-19 13:55:07 - Slept for 152 seconds
2015-06-19 13:55:38 - Slept for 182 seconds
2015-06-19 13:56:08 - Slept for 213 seconds
2015-06-19 13:56:39 - Slept for 243 seconds
2015-06-19 13:57:09 - Slept for 274 seconds
2015-06-19 13:57:35 - Starting Stage 1, Pattern=00000000
2015-06-19 13:57:36 - Reducing memory range: 0x100000000 - 0x230000000 ==> 0x100000000 - 0x22FF00000
2015-06-19 13:57:38 - Finished Stage 1, Pattern=00000000
2015-06-19 13:57:38 - Starting Stage 0, Pattern=FFFFFFFF
2015-06-19 13:57:39 - Reducing memory range: 0x100000000 - 0x230000000 ==> 0x100000000 - 0x22FF00000
2015-06-19 13:57:41 - Finished Stage 0, Pattern=FFFFFFFF
2015-06-19 13:58:11 - Slept for 30 seconds
2015-06-19 13:58:42 - Slept for 60 seconds
2015-06-19 13:59:12 - Slept for 91 seconds
2015-06-19 13:59:43 - Slept for 121 seconds
2015-06-19 14:00:13 - Slept for 152 seconds
2015-06-19 14:00:44 - Slept for 182 seconds
2015-06-19 14:01:14 - Slept for 213 seconds
2015-06-19 14:01:45 - Slept for 243 seconds
2015-06-19 14:02:15 - Slept for 274 seconds
2015-06-19 14:02:41 - Starting Stage 1, Pattern=FFFFFFFF
2015-06-19 14:02:42 - Reducing memory range: 0x100000000 - 0x230000000 ==> 0x100000000 - 0x22FF00000
2015-06-19 14:02:44 - Finished Stage 1, Pattern=FFFFFFFF
2015-06-19 14:02:44 - Cleanup - Unlocking all memory ranges...
2015-06-19 14:02:45 - Reducing memory range: 0x100000000 - 0x230000000 ==> 0x100000000 - 0x22FF00000
2015-06-19 14:02:45 - MtSupportRunAllTests - Test execution time: 616.948
2015-06-19 14:02:45 - GetIA32ArchitecturalTemp - MSR(0x19C) = 88350000 (Vendor ID: GenuineIntel 6 2D 7)
2015-06-19 14:02:45 - MapTempIntel - MSR(0x1A2) = 580A00
2015-06-19 14:02:45 - Running test #13 (Test 13 [Hammer test])
2015-06-19 14:02:45 - MtSupportRunAllTests - Setting random seed to 0x50415353
2015-06-19 14:02:46 - MtSupportRunAllTests - Start time: 2093451 ms
2015-06-19 14:02:46 - ReadMemoryRanges - Available Pages = 2031068
2015-06-19 14:02:46 - MtSupportRunAllTests - Enabling memory cache for test
2015-06-19 14:02:46 - MtSupportRunAllTests - Enabling memory cache complete
2015-06-19 14:02:46 - Start hammer test (0x0 - 0x230000000)
2015-06-19 14:02:46 - Locking all memory ranges first...
2015-06-19 14:02:46 - Memory range locked: 0x4000000 - 0xFFFF000 (7927668KB of available memory left)
2015-06-19 14:02:46 - Memory range locked: 0x1006D000 - 0xC33DF000 (4991404KB of available memory left)
2015-06-19 14:02:46 - Memory range locked: 0xC3640000 - 0xC3649000 (4991368KB of available memory left)
2015-06-19 14:02:46 - Memory range locked: 0xC364E000 - 0xC3653000 (4991348KB of available memory left)
2015-06-19 14:02:46 - Memory range locked: 0xC36A4000 - 0xC36A9000 (4991328KB of available memory left)
2015-06-19 14:02:46 - Memory range locked: 0xC36AE000 - 0xC36B3000 (4991308KB of available memory left)
2015-06-19 14:02:46 - Memory range locked: 0xC36BC000 - 0xC36E1000 (4991160KB of available memory left)
2015-06-19 14:02:46 - Memory range locked: 0xC371E000 - 0xC3721000 (4991148KB of available memory left)
2015-06-19 14:02:46 - Memory range locked: 0xC3725000 - 0xC3727000 (4991140KB of available memory left)
2015-06-19 14:02:46 - Memory range locked: 0xC372D000 - 0xC372F000 (4991132KB of available memory left)
2015-06-19 14:02:46 - Memory range locked: 0xC3738000 - 0xC373C000 (4991116KB of available memory left)
2015-06-19 14:02:46 - Memory range locked: 0xC373D000 - 0xC3740000 (4991104KB of available memory left)
2015-06-19 14:02:46 - Memory range locked: 0xC3741000 - 0xC3743000 (4991096KB of available memory left)
2015-06-19 14:02:46 - Memory range locked: 0xC3744000 - 0xC3747000 (4991084KB of available memory left)
2015-06-19 14:02:46 - Memory range locked: 0xC3748000 - 0xC374A000 (4991076KB of available memory left)
2015-06-19 14:02:46 - Memory range locked: 0xC374B000 - 0xC374D000 (4991068KB of available memory left)
2015-06-19 14:02:46 - Memory range locked: 0xC375B000 - 0xC375D000 (4991060KB of available memory left)
2015-06-19 14:02:46 - Memory range locked: 0xC375E000 - 0xC3761000 (4991048KB of available memory left)
2015-06-19 14:02:46 - Memory range locked: 0xC3763000 - 0xC3765000 (4991040KB of available memory left)
2015-06-19 14:02:46 - Memory range locked: 0xC3767000 - 0xC3769000 (4991032KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC376C000 - 0xC376E000 (4991024KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC37B4000 - 0xC37B7000 (4991012KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC37B8000 - 0xC37BA000 (4991004KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC37CF000 - 0xC37D6000 (4990976KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC37D8000 - 0xC37E4000 (4990928KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC37EB000 - 0xC37ED000 (4990920KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC37EE000 - 0xC37F0000 (4990912KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC37F1000 - 0xC37F3000 (4990904KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC37F4000 - 0xC37F6000 (4990896KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC37FE000 - 0xC3800000 (4990888KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC3801000 - 0xC3804000 (4990876KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC3805000 - 0xC3807000 (4990868KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC3808000 - 0xC380A000 (4990860KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC380B000 - 0xC3810000 (4990840KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC3811000 - 0xC3813000 (4990832KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC3817000 - 0xC381A000 (4990820KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC381B000 - 0xC381E000 (4990808KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC3820000 - 0xC3822000 (4990800KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC3823000 - 0xC382D000 (4990760KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC3831000 - 0xC3833000 (4990752KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC3834000 - 0xC3838000 (4990736KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC383A000 - 0xC383D000 (4990724KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC383F000 - 0xC3843000 (4990708KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC3844000 - 0xC3847000 (4990696KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC3848000 - 0xC384C000 (4990680KB of available memory left)
2015-06-19 14:02:47 - Memory range locked: 0xC384E000 - 0xC3852000 (4990664KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC3854000 - 0xC3857000 (4990652KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC3858000 - 0xC385F000 (4990624KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC3860000 - 0xC3865000 (4990604KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC3867000 - 0xC386B000 (4990588KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC386D000 - 0xC386F000 (4990580KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC3870000 - 0xC3872000 (4990572KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC3873000 - 0xC3876000 (4990560KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC3877000 - 0xC3879000 (4990552KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC387E000 - 0xC3881000 (4990540KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC3884000 - 0xC3886000 (4990532KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC3889000 - 0xC388B000 (4990524KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC38BA000 - 0xC38C4000 (4990484KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC38C8000 - 0xC38CB000 (4990472KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC38CD000 - 0xC38D0000 (4990460KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC38D1000 - 0xC38D4000 (4990448KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC38D6000 - 0xC38D9000 (4990436KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC38E9000 - 0xC38EC000 (4990424KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC38F4000 - 0xC38F9000 (4990404KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC38FF000 - 0xC3902000 (4990392KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC3903000 - 0xC3906000 (4990380KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC392E000 - 0xC3931000 (4990368KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC3932000 - 0xC3935000 (4990356KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC3936000 - 0xC3939000 (4990344KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC3953000 - 0xC3DD4000 (4985732KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC3ECF000 - 0xC3ED2000 (4985720KB of available memory left)
2015-06-19 14:02:48 - Memory range locked: 0xC3EED000 - 0xC3EF0000 (4985708KB of available memory left)
2015-06-19 14:02:49 - Memory range locked: 0xC3F76000 - 0xC3F79000 (4985696KB of available memory left)
2015-06-19 14:02:49 - Memory range locked: 0xC4003000 - 0xC4006000 (4985684KB of available memory left)
2015-06-19 14:02:49 - Memory range locked: 0xC4058000 - 0xC405B000 (4985672KB of available memory left)
2015-06-19 14:02:49 - Memory range locked: 0xC409D000 - 0xC40A4000 (4985644KB of available memory left)
2015-06-19 14:02:49 - Memory range locked: 0xC40A8000 - 0xC40B2000 (4985604KB of available memory left)
2015-06-19 14:02:49 - Memory range locked: 0xC40BC000 - 0xC40C1000 (4985584KB of available memory left)
2015-06-19 14:02:49 - Memory range locked: 0xC40C7000 - 0xC40CC000 (4985564KB of available memory left)
2015-06-19 14:02:49 - Memory range locked: 0xC40CD000 - 0xC40D2000 (4985544KB of available memory left)
2015-06-19 14:02:49 - Memory range locked: 0xC40D3000 - 0xC40D9000 (4985520KB of available memory left)