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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099 | Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] Zone ranges:
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] Normal [mem 0x100000000-0x67fffffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] Movable zone start for each node
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] Early memory node ranges
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] node 0: [mem 0x00001000-0x0008efff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] node 0: [mem 0x00090000-0x0009ffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] node 0: [mem 0x00100000-0x7f67efff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] node 0: [mem 0x7f6f5000-0x7f719fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] node 0: [mem 0x7f745000-0x7f7f9fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] node 0: [mem 0x7f845000-0x7f929fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] node 0: [mem 0x7f945000-0x7f990fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] node 0: [mem 0x7f996000-0x7fbfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] node 0: [mem 0x100000000-0x67fffffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] Initmem setup node 0 [mem 0x00001000-0x67fffffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] On node 0 totalpages: 6290066
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] DMA zone: 64 pages used for memmap
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] DMA zone: 22 pages reserved
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] DMA zone: 3998 pages, LIFO batch:0
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] DMA32 zone: 8108 pages used for memmap
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] DMA32 zone: 518900 pages, LIFO batch:31
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] Normal zone: 90112 pages used for memmap
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] Normal zone: 5767168 pages, LIFO batch:31
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x408
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x03] enabled)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] enabled)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x07] enabled)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high level lint[0x1])
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1])
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1])
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1])
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1])
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high level lint[0x1])
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high level lint[0x1])
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high level lint[0x1])
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: IRQ0 used by override.
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: IRQ9 used by override.
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000bffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x7b5bb000-0x7b5bbfff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x7b5d6000-0x7b5d6fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x7b5d7000-0x7b5d7fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x7b5f8000-0x7b5f8fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x7f67f000-0x7f6f4fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x7f71a000-0x7f744fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x7f7fa000-0x7f844fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x7f92a000-0x7f944fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x7f991000-0x7f995fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x7fc00000-0x7fffffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x80000000-0xfff8ffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfff90000-0xfffbffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfffc0000-0xffffffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] e820: [mem 0x80000000-0xfff8ffff] available for PCI devices
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] PERCPU: Embedded 31 pages/cpu @ffff88067fc00000 s86144 r8192 d32640 u262144
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] pcpu-alloc: s86144 r8192 d32640 u262144 alloc=1*2097152
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 6191760
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] Policy zone: Normal
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] Kernel command line: \boot\vmlinuz-3.19.0-25-generic ro root=UUID=1e37be4d-ddfb-4b83-af9e-c1f16e0a37ed initrd=boot\initrd.img-3.19.0-25-generic fbcon=map:0 text gfxpayload=text vesafb.nonsense=1
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] AGP: Checking aperture...
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] AGP: No AGP bridge found
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] Memory: 24597376K/25160264K available (7918K kernel code, 1172K rwdata, 3752K rodata, 1408K init, 1292K bss, 562888K reserved, 0K cma-reserved)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] Hierarchical RCU implementation.
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] NR_IRQS:16640 nr_irqs:488 16
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] Offload RCU callbacks from all CPUs
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] Offload RCU callbacks from CPUs: 0-7.
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] Console: colour dummy device 80x25
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] console [tty0] enabled
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] hpet clockevent registered
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] tsc: Fast TSC calibration using PIT
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.000000] tsc: Detected 2992.228 MHz processor
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.004012] Calibrating delay loop (skipped), value calculated using timer frequency.. 5984.45 BogoMIPS (lpj=11968912)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.004017] pid_max: default: 32768 minimum: 301
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.004025] ACPI: Core revision 20141107
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.014461] ACPI: All ACPI Tables successfully acquired
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.016021] Security Framework initialized
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.016047] AppArmor: AppArmor initialized
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.016050] Yama: becoming mindful.
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.020694] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.034331] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.040650] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.040698] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.041333] Initializing cgroup subsys memory
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.041343] Initializing cgroup subsys devices
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.041348] Initializing cgroup subsys freezer
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.041352] Initializing cgroup subsys net_cls
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.041355] Initializing cgroup subsys blkio
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.041359] Initializing cgroup subsys perf_event
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.041363] Initializing cgroup subsys net_prio
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.041366] Initializing cgroup subsys hugetlb
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.041393] CPU: Physical Processor ID: 0
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.041395] CPU: Processor Core ID: 0
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.041398] mce: CPU supports 6 MCE banks
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.041405] CPU0: Thermal monitoring enabled (TM2)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.041409] process: using mwait in idle threads
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.041415] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.041415] Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.041502] Freeing SMP alternatives memory: 32K (ffffffff81e87000 - ffffffff81e8f000)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.044911] ftrace: allocating 29988 entries in 118 pages
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.052103] dmar: Host address width 38
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.052108] dmar: DRHD base: 0x000000fe710000 flags: 0x0
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.052116] dmar: IOMMU 0: reg_base_addr fe710000 ver 1:0 cap 900000c2f0462 ecap e01
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.052119] dmar: DRHD base: 0x000000fe714000 flags: 0x0
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.052125] dmar: IOMMU 1: reg_base_addr fe714000 ver 1:0 cap 900000c2f0462 ecap e01
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.052127] dmar: DRHD base: 0x000000fe719000 flags: 0x0
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.052134] dmar: IOMMU 2: reg_base_addr fe719000 ver 1:0 cap 900000c2f0462 ecap e01
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.052137] dmar: DRHD base: 0x000000fe718000 flags: 0x1
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.052142] dmar: IOMMU 3: reg_base_addr fe718000 ver 1:0 cap 900000c2f0462 ecap e01
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.052592] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.093994] smpboot: CPU0: Intel(R) Xeon(R) CPU X5472 @ 3.00GHz (fam: 06, model: 17, stepping: 06)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.096000] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.096000] ... version: 2
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.096000] ... bit width: 40
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.096000] ... generic registers: 2
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.096000] ... value mask: 000000ffffffffff
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.096000] ... max period: 000000007fffffff
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.096000] ... fixed-purpose events: 3
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.096000] ... event mask: 0000000700000003
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.096000] x86: Booting SMP configuration:
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.096000] .... node #0, CPUs: #1
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.106330] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.106488] #2 #3 #4 #5 #6 #7
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.263516] x86: Booted up 1 node, 8 CPUs
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.263520] smpboot: Total of 8 processors activated (47877.79 BogoMIPS)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.264205] devtmpfs: initialized
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.272388] evm: security.selinux
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.272391] evm: security.SMACK64
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.272392] evm: security.SMACK64EXEC
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.272394] evm: security.SMACK64TRANSMUTE
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.272396] evm: security.SMACK64MMAP
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.272397] evm: security.ima
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.272399] evm: security.capability
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.272423] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.272423] PM: Registering ACPI NVS region [mem 0x7f67f000-0x7f6f4fff] (483328 bytes)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.272423] pinctrl core: initialized pinctrl subsystem
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.272423] RTC time: 5:31:37, date: 01/15/16
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.272423] NET: Registered protocol family 16
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.276007] cpuidle: using governor ladder
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.280007] cpuidle: using governor menu
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.280093] ACPI: bus type PCI registered
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.280097] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.280192] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.280197] PCI: not using MMCONFIG
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.280199] PCI: Using configuration type 1 for base access
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.288168] ACPI: Added _OSI(Module Device)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.288171] ACPI: Added _OSI(Processor Device)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.288173] ACPI: Added _OSI(3.0 _SCP Extensions)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.288175] ACPI: Added _OSI(Processor Aggregator Device)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.288872] ACPI : EC: EC description table is found, configuring boot EC
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.405073] ACPI: Interpreter enabled
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.405084] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20141107/hwxface-580)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.405098] ACPI: (supports S0 S1 S3 S4 S5)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.405100] ACPI: Using IOAPIC for interrupt routing
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.405112] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.405202] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.405568] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.408891] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.408898] acpi PNP0A08:00: _OSC: OS assumes control of [PCIeHotplug SHPCHotplug AER PCIeCapability]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.409512] PCI host bridge to bus 0000:00
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.409517] pci_bus 0000:00: root bus resource [bus 00-ff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.409520] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.409522] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.409525] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.409527] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.409530] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfe000000]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.409542] pci 0000:00:00.0: [8086:4003] type 00 class 0x060000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.409587] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.409662] pci 0000:00:01.0: [8086:4021] type 01 class 0x060400
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.409704] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.409743] pci 0000:00:01.0: System wakeup disabled by ACPI
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.409790] pci 0000:00:05.0: [8086:4025] type 01 class 0x060400
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.409831] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.409866] pci 0000:00:05.0: System wakeup disabled by ACPI
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.409910] pci 0000:00:09.0: [8086:4029] type 01 class 0x060400
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.409951] pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.410025] pci 0000:00:0f.0: [8086:402f] type 00 class 0x088000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.410034] pci 0000:00:0f.0: reg 0x10: [mem 0xb1f00000-0xb1f03fff 64bit]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.410124] pci 0000:00:10.0: [8086:4030] type 00 class 0x060000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.410199] pci 0000:00:10.1: [8086:4030] type 00 class 0x060000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.410274] pci 0000:00:10.2: [8086:4030] type 00 class 0x060000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.410347] pci 0000:00:10.3: [8086:4030] type 00 class 0x060000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.410421] pci 0000:00:10.4: [8086:4030] type 00 class 0x060000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.410496] pci 0000:00:11.0: [8086:4031] type 00 class 0x060000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.410571] pci 0000:00:15.0: [8086:4035] type 00 class 0x060000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.410644] pci 0000:00:15.1: [8086:4035] type 00 class 0x060000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.410722] pci 0000:00:16.0: [8086:4036] type 00 class 0x060000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.410796] pci 0000:00:16.1: [8086:4036] type 00 class 0x060000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.410886] pci 0000:00:1b.0: [8086:269a] type 00 class 0x040300
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.410899] pci 0000:00:1b.0: reg 0x10: [mem 0xb1f04000-0xb1f07fff 64bit]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.410957] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.411036] pci 0000:00:1c.0: [8086:2690] type 01 class 0x060400
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.411099] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.411175] pci 0000:00:1c.1: [8086:2692] type 01 class 0x060400
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.411238] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.411315] pci 0000:00:1c.2: [8086:2694] type 01 class 0x060400
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.411382] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.411462] pci 0000:00:1c.3: [8086:2696] type 01 class 0x060400
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.411525] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.411565] pci 0000:00:1c.3: System wakeup disabled by ACPI
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.411609] pci 0000:00:1d.0: [8086:2688] type 00 class 0x0c0300
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.411644] pci 0000:00:1d.0: reg 0x20: [io 0x40a0-0x40bf]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.411707] pci 0000:00:1d.0: System wakeup disabled by ACPI
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.411750] pci 0000:00:1d.1: [8086:2689] type 00 class 0x0c0300
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.411784] pci 0000:00:1d.1: reg 0x20: [io 0x4080-0x409f]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.411846] pci 0000:00:1d.1: System wakeup disabled by ACPI
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.411890] pci 0000:00:1d.2: [8086:268a] type 00 class 0x0c0300
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.411925] pci 0000:00:1d.2: reg 0x20: [io 0x4060-0x407f]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.411987] pci 0000:00:1d.2: System wakeup disabled by ACPI
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412035] pci 0000:00:1d.3: [8086:268b] type 00 class 0x0c0300
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412070] pci 0000:00:1d.3: reg 0x20: [io 0x4040-0x405f]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412132] pci 0000:00:1d.3: System wakeup disabled by ACPI
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412182] pci 0000:00:1d.7: [8086:268c] type 00 class 0x0c0320
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412197] pci 0000:00:1d.7: reg 0x10: [mem 0xb1f08400-0xb1f087ff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412259] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412308] pci 0000:00:1d.7: System wakeup disabled by ACPI
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412354] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412456] pci 0000:00:1f.0: [8086:2670] type 00 class 0x060100
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412585] pci 0000:00:1f.1: [8086:269e] type 00 class 0x01018f
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412596] pci 0000:00:1f.1: reg 0x10: [io 0x40e8-0x40ef]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412604] pci 0000:00:1f.1: reg 0x14: [io 0x40fc-0x40ff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412612] pci 0000:00:1f.1: reg 0x18: [io 0x40e0-0x40e7]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412620] pci 0000:00:1f.1: reg 0x1c: [io 0x40f8-0x40fb]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412628] pci 0000:00:1f.1: reg 0x20: [io 0x40c0-0x40cf]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412720] pci 0000:00:1f.2: [8086:2681] type 00 class 0x010601
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412733] pci 0000:00:1f.2: reg 0x10: [io 0x40d8-0x40df]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412740] pci 0000:00:1f.2: reg 0x14: [io 0x40f4-0x40f7]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412747] pci 0000:00:1f.2: reg 0x18: [io 0x40d0-0x40d7]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412753] pci 0000:00:1f.2: reg 0x1c: [io 0x40f0-0x40f3]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412760] pci 0000:00:1f.2: reg 0x20: [io 0x4020-0x403f]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412767] pci 0000:00:1f.2: reg 0x24: [mem 0xb1f08000-0xb1f083ff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412799] pci 0000:00:1f.2: PME# supported from D3hot
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412874] pci 0000:00:1f.3: [8086:269b] type 00 class 0x0c0500
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.412919] pci 0000:00:1f.3: reg 0x20: [io 0x4000-0x401f]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.413066] pci 0000:01:00.0: [10de:13c0] type 00 class 0x030000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.413076] pci 0000:01:00.0: reg 0x10: [mem 0xb0000000-0xb0ffffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.413085] pci 0000:01:00.0: reg 0x14: [mem 0x80000000-0x8fffffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.413094] pci 0000:01:00.0: reg 0x1c: [mem 0x90000000-0x91ffffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.413100] pci 0000:01:00.0: reg 0x24: [io 0x3000-0x307f]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.413105] pci 0000:01:00.0: reg 0x30: [mem 0xb1000000-0xb107ffff pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.413205] pci 0000:01:00.1: [10de:0fbb] type 00 class 0x040300
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.413215] pci 0000:01:00.1: reg 0x10: [mem 0xb1080000-0xb1083fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.420019] pci 0000:00:01.0: PCI bridge to [bus 01]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.420025] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.420028] pci 0000:00:01.0: bridge window [mem 0xb0000000-0xb10fffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.420032] pci 0000:00:01.0: bridge window [mem 0x80000000-0x91ffffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.420104] pci 0000:02:00.0: [1002:679a] type 00 class 0x030000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.420118] pci 0000:02:00.0: reg 0x10: [mem 0xa0000000-0xafffffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.420128] pci 0000:02:00.0: reg 0x18: [mem 0xb1e00000-0xb1e3ffff 64bit]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.420135] pci 0000:02:00.0: reg 0x20: [io 0x2000-0x20ff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.420151] pci 0000:02:00.0: reg 0x30: [mem 0xb1e40000-0xb1e5ffff pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.420194] pci 0000:02:00.0: supports D1 D2
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.420195] pci 0000:02:00.0: PME# supported from D1 D2 D3hot
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.420263] pci 0000:02:00.1: [1002:aaa0] type 00 class 0x040300
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.420274] pci 0000:02:00.1: reg 0x10: [mem 0xb1e60000-0xb1e63fff 64bit]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.420328] pci 0000:02:00.1: supports D1 D2
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428012] pci 0000:00:05.0: PCI bridge to [bus 02]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428017] pci 0000:00:05.0: bridge window [io 0x2000-0x2fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428020] pci 0000:00:05.0: bridge window [mem 0xb1e00000-0xb1efffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428024] pci 0000:00:05.0: bridge window [mem 0xa0000000-0xafffffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428084] pci 0000:03:00.0: [8086:3500] type 01 class 0x060400
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428152] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428219] pci 0000:03:00.3: [8086:350c] type 01 class 0x060400
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428272] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428326] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428336] pci 0000:00:09.0: PCI bridge to [bus 03-08]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428339] pci 0000:00:09.0: bridge window [io 0x1000-0x1fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428342] pci 0000:00:09.0: bridge window [mem 0xb1400000-0xb1cfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428408] pci 0000:04:00.0: [8086:3510] type 01 class 0x060400
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428467] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428495] pci 0000:04:00.0: System wakeup disabled by ACPI
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428532] pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428543] pci 0000:04:01.0: [8086:3514] type 01 class 0x060400
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428602] pci 0000:04:01.0: PME# supported from D0 D3hot D3cold
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428658] pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428669] pci 0000:04:02.0: [8086:3518] type 01 class 0x060400
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428743] pci 0000:04:02.0: PME# supported from D0 D3hot D3cold
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428768] pci 0000:04:02.0: System wakeup disabled by ACPI
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428805] pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428830] pci 0000:03:00.0: PCI bridge to [bus 04-07]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428834] pci 0000:03:00.0: bridge window [io 0x1000-0x1fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428837] pci 0000:03:00.0: bridge window [mem 0xb1400000-0xb1cfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428902] pci 0000:04:00.0: PCI bridge to [bus 05]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.428970] pci 0000:04:01.0: PCI bridge to [bus 06]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.429058] pci 0000:07:00.0: [8086:1096] type 00 class 0x020000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.429073] pci 0000:07:00.0: reg 0x10: [mem 0xb1c20000-0xb1c3ffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.429082] pci 0000:07:00.0: reg 0x14: [mem 0xb1800000-0xb1bfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.429092] pci 0000:07:00.0: reg 0x18: [io 0x1020-0x103f]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.429172] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.429249] pci 0000:07:00.1: [8086:1096] type 00 class 0x020000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.429264] pci 0000:07:00.1: reg 0x10: [mem 0xb1c00000-0xb1c1ffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.429273] pci 0000:07:00.1: reg 0x14: [mem 0xb1400000-0xb17fffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.429282] pci 0000:07:00.1: reg 0x18: [io 0x1000-0x101f]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.429362] pci 0000:07:00.1: PME# supported from D0 D3hot D3cold
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.429433] pci 0000:07:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.429444] pci 0000:04:02.0: PCI bridge to [bus 07]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.429448] pci 0000:04:02.0: bridge window [io 0x1000-0x1fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.429452] pci 0000:04:02.0: bridge window [mem 0xb1400000-0xb1cfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.429537] pci 0000:03:00.3: PCI bridge to [bus 08]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.429598] pci 0000:00:1c.0: PCI bridge to [bus 09]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.429654] pci 0000:00:1c.1: PCI bridge to [bus 0a]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.429741] pci 0000:0b:00.0: [104c:823e] type 01 class 0x060400
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.429865] pci 0000:0b:00.0: supports D1 D2
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436016] pci 0000:00:1c.2: PCI bridge to [bus 0b-0c]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436023] pci 0000:00:1c.2: bridge window [mem 0xb1d00000-0xb1dfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436133] pci 0000:0c:00.0: [104c:823f] type 00 class 0x0c0010
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436163] pci 0000:0c:00.0: reg 0x10: [mem 0xb1d04000-0xb1d047ff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436177] pci 0000:0c:00.0: reg 0x14: [mem 0xb1d00000-0xb1d03fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436282] pci 0000:0c:00.0: supports D1 D2
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436283] pci 0000:0c:00.0: PME# supported from D0 D1 D2 D3hot
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436392] pci 0000:0b:00.0: PCI bridge to [bus 0c]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436404] pci 0000:0b:00.0: bridge window [mem 0xb1d00000-0xb1dfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436481] pci 0000:00:1c.3: PCI bridge to [bus 0d]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436562] pci 0000:00:1e.0: PCI bridge to [bus 0e] (subtractive decode)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436572] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436573] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436575] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436577] pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436579] pci 0000:00:1e.0: bridge window [mem 0x80000000-0xfe000000] (subtractive decode)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436746] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 7 9 10 11) *0, disabled.
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436798] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 7 9 10 11) *0, disabled.
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436847] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 7 9 10 11) *0, disabled.
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436896] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 7 9 10 11) *0, disabled.
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436945] ACPI: PCI Interrupt Link [LNKE] (IRQs 5 7 9 10 11) *0, disabled.
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.436994] ACPI: PCI Interrupt Link [LNKF] (IRQs 5 7 9 10 11) *0, disabled.
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.437042] ACPI: PCI Interrupt Link [LNKG] (IRQs 5 7 9 10 11) *0, disabled.
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.437091] ACPI: PCI Interrupt Link [LNKH] (IRQs 5 7 9 10 11) *0, disabled.
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.437458] ACPI: Enabled 2 GPEs in block 00 to 1F
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.437484] ACPI : EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.437562] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.437562] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=none,locks=none
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.437562] vgaarb: loaded
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.437562] vgaarb: bridge control possible 0000:02:00.0
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.437562] vgaarb: bridge control possible 0000:01:00.0
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.437562] SCSI subsystem initialized
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.437562] libata version 3.00 loaded.
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.437562] ACPI: bus type USB registered
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.437562] usbcore: registered new interface driver usbfs
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.437562] usbcore: registered new interface driver hub
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.437562] usbcore: registered new device driver usb
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.437562] PCI: Using ACPI for IRQ routing
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.443462] PCI: pci_cache_line_size set to 64 bytes
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.443537] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.443539] e820: reserve RAM buffer [mem 0x7b5bb018-0x7bffffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.443540] e820: reserve RAM buffer [mem 0x7b5d7018-0x7bffffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.443541] e820: reserve RAM buffer [mem 0x7f67f000-0x7fffffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.443543] e820: reserve RAM buffer [mem 0x7f71a000-0x7fffffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.443545] e820: reserve RAM buffer [mem 0x7f7fa000-0x7fffffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.443546] e820: reserve RAM buffer [mem 0x7f92a000-0x7fffffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.443547] e820: reserve RAM buffer [mem 0x7f991000-0x7fffffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.443549] e820: reserve RAM buffer [mem 0x7fc00000-0x7fffffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.443683] NetLabel: Initializing
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.443686] NetLabel: domain hash size = 128
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.443687] NetLabel: protocols = UNLABELED CIPSOv4
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.443704] NetLabel: unlabeled traffic allowed by default
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.443735] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.443735] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.443735] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.445016] Switched to clocksource hpet
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.452100] AppArmor: AppArmor Filesystem Enabled
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.452192] pnp: PnP ACPI init
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.452315] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.452319] system 00:00: [mem 0xfed1c000-0xfed1ffff] has been reserved
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.452322] system 00:00: [mem 0xffc00000-0xffffffff] could not be reserved
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.452325] system 00:00: [mem 0xfec00000-0xfecfffff] could not be reserved
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.452328] system 00:00: [mem 0xfee00000-0xfeefffff] has been reserved
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.452331] system 00:00: [mem 0xfe700000-0xfe7003ff] has been reserved
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.452334] system 00:00: [mem 0xfe600000-0xfe6fffff] has been reserved
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.452336] system 00:00: [mem 0xfe000000-0xfe01ffff] could not be reserved
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.452341] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.452525] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.452588] system 00:02: [io 0x0320-0x037f] has been reserved
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.452592] system 00:02: [io 0x0400-0x047f] could not be reserved
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.452595] system 00:02: [io 0x0500-0x053f] has been reserved
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.452600] system 00:02: [io 0x0872-0x0875] has been reserved
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.452603] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.452641] pnp: PnP ACPI: found 3 devices
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461260] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 09] add_size 1000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461263] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 09] add_size 200000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461265] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 09] add_size 200000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461272] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 0a] add_size 1000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461274] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0a] add_size 200000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461276] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff] to [bus 0a] add_size 200000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461293] pci 0000:00:1c.2: bridge window [io 0x1000-0x0fff] to [bus 0b-0c] add_size 1000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461295] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b-0c] add_size 200000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461302] pci 0000:00:1c.3: bridge window [io 0x1000-0x0fff] to [bus 0d] add_size 1000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461305] pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0d] add_size 200000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461307] pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff] to [bus 0d] add_size 200000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461320] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461322] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461324] pci 0000:00:1c.1: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461326] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461328] pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461330] pci 0000:00:1c.3: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461332] pci 0000:00:1c.3: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461334] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461335] pci 0000:00:1c.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461337] pci 0000:00:1c.2: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461339] pci 0000:00:1c.3: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461345] pci 0000:00:1c.0: BAR 14: assigned [mem 0x92000000-0x921fffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461350] pci 0000:00:1c.0: BAR 15: assigned [mem 0x92200000-0x923fffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461354] pci 0000:00:1c.1: BAR 14: assigned [mem 0x92400000-0x925fffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461358] pci 0000:00:1c.1: BAR 15: assigned [mem 0x92600000-0x927fffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461363] pci 0000:00:1c.2: BAR 15: assigned [mem 0x92800000-0x929fffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461367] pci 0000:00:1c.3: BAR 14: assigned [mem 0x92a00000-0x92bfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461371] pci 0000:00:1c.3: BAR 15: assigned [mem 0x92c00000-0x92dfffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461375] pci 0000:00:1c.0: BAR 13: assigned [io 0x5000-0x5fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461378] pci 0000:00:1c.1: BAR 13: assigned [io 0x6000-0x6fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461381] pci 0000:00:1c.2: BAR 13: assigned [io 0x7000-0x7fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461384] pci 0000:00:1c.3: BAR 13: assigned [io 0x8000-0x8fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461390] pci 0000:00:01.0: PCI bridge to [bus 01]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461393] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461397] pci 0000:00:01.0: bridge window [mem 0xb0000000-0xb10fffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461401] pci 0000:00:01.0: bridge window [mem 0x80000000-0x91ffffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461406] pci 0000:00:05.0: PCI bridge to [bus 02]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461408] pci 0000:00:05.0: bridge window [io 0x2000-0x2fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461412] pci 0000:00:05.0: bridge window [mem 0xb1e00000-0xb1efffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461416] pci 0000:00:05.0: bridge window [mem 0xa0000000-0xafffffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461421] pci 0000:04:00.0: PCI bridge to [bus 05]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461431] pci 0000:04:01.0: PCI bridge to [bus 06]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461440] pci 0000:04:02.0: PCI bridge to [bus 07]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461443] pci 0000:04:02.0: bridge window [io 0x1000-0x1fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461448] pci 0000:04:02.0: bridge window [mem 0xb1400000-0xb1cfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461455] pci 0000:03:00.0: PCI bridge to [bus 04-07]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461458] pci 0000:03:00.0: bridge window [io 0x1000-0x1fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461463] pci 0000:03:00.0: bridge window [mem 0xb1400000-0xb1cfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461470] pci 0000:03:00.3: PCI bridge to [bus 08]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461479] pci 0000:00:09.0: PCI bridge to [bus 03-08]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461482] pci 0000:00:09.0: bridge window [io 0x1000-0x1fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461486] pci 0000:00:09.0: bridge window [mem 0xb1400000-0xb1cfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461491] pci 0000:00:1c.0: PCI bridge to [bus 09]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461494] pci 0000:00:1c.0: bridge window [io 0x5000-0x5fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461499] pci 0000:00:1c.0: bridge window [mem 0x92000000-0x921fffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461503] pci 0000:00:1c.0: bridge window [mem 0x92200000-0x923fffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461509] pci 0000:00:1c.1: PCI bridge to [bus 0a]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461512] pci 0000:00:1c.1: bridge window [io 0x6000-0x6fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461516] pci 0000:00:1c.1: bridge window [mem 0x92400000-0x925fffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461521] pci 0000:00:1c.1: bridge window [mem 0x92600000-0x927fffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461527] pci 0000:0b:00.0: PCI bridge to [bus 0c]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461534] pci 0000:0b:00.0: bridge window [mem 0xb1d00000-0xb1dfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461545] pci 0000:00:1c.2: PCI bridge to [bus 0b-0c]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461548] pci 0000:00:1c.2: bridge window [io 0x7000-0x7fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461553] pci 0000:00:1c.2: bridge window [mem 0xb1d00000-0xb1dfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461557] pci 0000:00:1c.2: bridge window [mem 0x92800000-0x929fffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461563] pci 0000:00:1c.3: PCI bridge to [bus 0d]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461566] pci 0000:00:1c.3: bridge window [io 0x8000-0x8fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461571] pci 0000:00:1c.3: bridge window [mem 0x92a00000-0x92bfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461575] pci 0000:00:1c.3: bridge window [mem 0x92c00000-0x92dfffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461581] pci 0000:00:1e.0: PCI bridge to [bus 0e]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461591] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461593] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461595] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461596] pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461598] pci_bus 0000:00: resource 8 [mem 0x80000000-0xfe000000]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461600] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461602] pci_bus 0000:01: resource 1 [mem 0xb0000000-0xb10fffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461603] pci_bus 0000:01: resource 2 [mem 0x80000000-0x91ffffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461605] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461607] pci_bus 0000:02: resource 1 [mem 0xb1e00000-0xb1efffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461609] pci_bus 0000:02: resource 2 [mem 0xa0000000-0xafffffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461610] pci_bus 0000:03: resource 0 [io 0x1000-0x1fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461612] pci_bus 0000:03: resource 1 [mem 0xb1400000-0xb1cfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461614] pci_bus 0000:04: resource 0 [io 0x1000-0x1fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461615] pci_bus 0000:04: resource 1 [mem 0xb1400000-0xb1cfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461617] pci_bus 0000:07: resource 0 [io 0x1000-0x1fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461619] pci_bus 0000:07: resource 1 [mem 0xb1400000-0xb1cfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461621] pci_bus 0000:09: resource 0 [io 0x5000-0x5fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461623] pci_bus 0000:09: resource 1 [mem 0x92000000-0x921fffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461624] pci_bus 0000:09: resource 2 [mem 0x92200000-0x923fffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461626] pci_bus 0000:0a: resource 0 [io 0x6000-0x6fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461628] pci_bus 0000:0a: resource 1 [mem 0x92400000-0x925fffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461629] pci_bus 0000:0a: resource 2 [mem 0x92600000-0x927fffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461631] pci_bus 0000:0b: resource 0 [io 0x7000-0x7fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461633] pci_bus 0000:0b: resource 1 [mem 0xb1d00000-0xb1dfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461635] pci_bus 0000:0b: resource 2 [mem 0x92800000-0x929fffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461636] pci_bus 0000:0c: resource 1 [mem 0xb1d00000-0xb1dfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461638] pci_bus 0000:0d: resource 0 [io 0x8000-0x8fff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461640] pci_bus 0000:0d: resource 1 [mem 0x92a00000-0x92bfffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461641] pci_bus 0000:0d: resource 2 [mem 0x92c00000-0x92dfffff 64bit pref]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461643] pci_bus 0000:0e: resource 4 [io 0x0000-0x0cf7]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461645] pci_bus 0000:0e: resource 5 [io 0x0d00-0xffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461646] pci_bus 0000:0e: resource 6 [mem 0x000a0000-0x000bffff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461648] pci_bus 0000:0e: resource 7 [mem 0x000d8000-0x000dbfff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461650] pci_bus 0000:0e: resource 8 [mem 0x80000000-0xfe000000]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.461677] NET: Registered protocol family 2
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.462046] TCP established hash table entries: 262144 (order: 9, 2097152 bytes)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.462876] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.463252] TCP: Hash tables configured (established 262144 bind 65536)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.463295] TCP: reno registered
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.463336] UDP hash table entries: 16384 (order: 7, 524288 bytes)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.463560] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.463818] NET: Registered protocol family 1
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.464790] pci 0000:00:1d.7: enabling device (0000 -> 0002)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.465017] pci 0000:00:1f.0: rerouting interrupts for [8086:2670]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.465070] PCI: CLS mismatch (256 != 64), using 64 bytes
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.465139] Trying to unpack rootfs image as initramfs...
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.753414] Freeing initrd memory: 19460K (ffff8800778de000 - ffff880078bdf000)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.753497] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.753501] software IO TLB [mem 0x738de000-0x778de000] (64MB) mapped at [ffff8800738de000-ffff8800778ddfff]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.753936] microcode: CPU0 sig=0x10676, pf=0x40, revision=0x60b
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.753945] microcode: CPU1 sig=0x10676, pf=0x40, revision=0x60b
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.753964] microcode: CPU2 sig=0x10676, pf=0x40, revision=0x60b
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.753985] microcode: CPU3 sig=0x10676, pf=0x40, revision=0x60b
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.754013] microcode: CPU4 sig=0x10676, pf=0x40, revision=0x60b
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.754038] microcode: CPU5 sig=0x10676, pf=0x40, revision=0x60b
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.754055] microcode: CPU6 sig=0x10676, pf=0x40, revision=0x60b
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.754067] microcode: CPU7 sig=0x10676, pf=0x40, revision=0x60b
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.754171] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.754242] Scanning for low memory corruption every 60 seconds
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.754655] futex hash table entries: 2048 (order: 5, 131072 bytes)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.754702] Initialise system trusted keyring
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.754728] audit: initializing netlink subsys (disabled)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.754756] audit: type=2000 audit(1452835896.752:1): initialized
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.755187] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.756984] zpool: loaded
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.756988] zbud: loaded
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.757152] VFS: Disk quotas dquot_6.5.2
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.757192] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.757762] fuse init (API version 7.23)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.757918] Key type big_key registered
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.758566] Key type asymmetric registered
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.758570] Asymmetric key parser 'x509' registered
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.758619] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.758706] io scheduler noop registered
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.758710] io scheduler deadline registered (default)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.758744] io scheduler cfq registered
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.759368] pcieport 0000:00:1c.0: enabling device (0000 -> 0003)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.759562] pcieport 0000:00:1c.1: enabling device (0000 -> 0003)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.759931] pcieport 0000:00:1c.3: enabling device (0000 -> 0003)
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.760578] aer 0000:00:01.0:pcie02: service driver aer loaded
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.760597] aer 0000:00:05.0:pcie02: service driver aer loaded
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.760623] aer 0000:00:09.0:pcie02: service driver aer loaded
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.760636] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.760680] pciehp 0000:00:1c.0:pcie04: Slot #3 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl- LLActRep-
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.760737] pciehp 0000:00:1c.0:pcie04: service driver pciehp loaded
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.760745] pciehp 0000:00:1c.1:pcie04: Slot #4 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl- LLActRep-
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.760797] pciehp 0000:00:1c.1:pcie04: service driver pciehp loaded
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.760805] pciehp 0000:00:1c.2:pcie04: Slot #5 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl- LLActRep-
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.760873] pciehp 0000:00:1c.2:pcie04: service driver pciehp loaded
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.760881] pciehp 0000:00:1c.3:pcie04: Slot #6 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl- LLActRep-
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.760934] pciehp 0000:00:1c.3:pcie04: service driver pciehp loaded
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.760940] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.760989] intel_idle: does not run on family 6 model 23
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.761073] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.761080] ACPI: Power Button [PWRB]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.761123] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.761126] ACPI: Power Button [PWRF]
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.761222] Monitor-Mwait will be used to enter C-1 state
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.761964] GHES: HEST is not enabled!
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.762080] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.763812] Linux agpgart interface v0.103
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.765345] brd: module loaded
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.766068] loop: module loaded
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.766227] ata_piix 0000:00:1f.1: version 2.13
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.766992] scsi host0: ata_piix
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.767170] scsi host1: ata_piix
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.767215] ata1: PATA max UDMA/100 cmd 0x40e8 ctl 0x40fc bmdma 0x40c0 irq 20
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.767218] ata2: PATA max UDMA/100 cmd 0x40e0 ctl 0x40f8 bmdma 0x40c8 irq 20
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.767321] libphy: Fixed MDIO Bus: probed
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.767325] tun: Universal TUN/TAP device driver, 1.6
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.767327] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.767381] PPP generic driver version 2.4.2
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.767461] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.767467] ehci-pci: EHCI PCI platform driver
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.767611] ehci-pci 0000:00:1d.7: EHCI Host Controller
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.767620] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.767633] ehci-pci 0000:00:1d.7: debug port 1
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.771543] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.771555] ehci-pci 0000:00:1d.7: irq 19, io mem 0xb1f08400
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780016] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780086] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780090] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780094] usb usb1: Product: EHCI Host Controller
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780097] usb usb1: Manufacturer: Linux 3.19.0-25-generic ehci_hcd
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780100] usb usb1: SerialNumber: 0000:00:1d.7
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780222] hub 1-0:1.0: USB hub found
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780231] hub 1-0:1.0: 8 ports detected
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780427] ehci-platform: EHCI generic platform driver
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780438] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780443] ohci-pci: OHCI PCI platform driver
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780457] ohci-platform: OHCI generic platform driver
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780467] uhci_hcd: USB Universal Host Controller Interface driver
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780598] uhci_hcd 0000:00:1d.0: UHCI Host Controller
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780604] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780611] uhci_hcd 0000:00:1d.0: detected 2 ports
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780629] uhci_hcd 0000:00:1d.0: irq 19, io base 0x000040a0
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780666] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780670] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780673] usb usb2: Product: UHCI Host Controller
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780675] usb usb2: Manufacturer: Linux 3.19.0-25-generic uhci_hcd
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780677] usb usb2: SerialNumber: 0000:00:1d.0
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780776] hub 2-0:1.0: USB hub found
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780784] hub 2-0:1.0: 2 ports detected
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780979] uhci_hcd 0000:00:1d.1: UHCI Host Controller
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780985] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.780992] uhci_hcd 0000:00:1d.1: detected 2 ports
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781009] uhci_hcd 0000:00:1d.1: irq 20, io base 0x00004080
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781047] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781050] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781053] usb usb3: Product: UHCI Host Controller
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781055] usb usb3: Manufacturer: Linux 3.19.0-25-generic uhci_hcd
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781058] usb usb3: SerialNumber: 0000:00:1d.1
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781150] hub 3-0:1.0: USB hub found
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781157] hub 3-0:1.0: 2 ports detected
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781354] uhci_hcd 0000:00:1d.2: UHCI Host Controller
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781361] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781367] uhci_hcd 0000:00:1d.2: detected 2 ports
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781391] uhci_hcd 0000:00:1d.2: irq 21, io base 0x00004060
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781429] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781433] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781435] usb usb4: Product: UHCI Host Controller
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781438] usb usb4: Manufacturer: Linux 3.19.0-25-generic uhci_hcd
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781440] usb usb4: SerialNumber: 0000:00:1d.2
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781545] hub 4-0:1.0: USB hub found
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781552] hub 4-0:1.0: 2 ports detected
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781752] uhci_hcd 0000:00:1d.3: UHCI Host Controller
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781758] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781765] uhci_hcd 0000:00:1d.3: detected 2 ports
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781790] uhci_hcd 0000:00:1d.3: irq 22, io base 0x00004040
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781829] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781832] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781835] usb usb5: Product: UHCI Host Controller
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781837] usb usb5: Manufacturer: Linux 3.19.0-25-generic uhci_hcd
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781839] usb usb5: SerialNumber: 0000:00:1d.3
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781933] hub 5-0:1.0: USB hub found
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.781940] hub 5-0:1.0: 2 ports detected
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.782065] i8042: PNP: No PS/2 controller found. Probing ports directly.
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.930865] ata1.00: ATAPI: PIONEER DVD-RW DVR-112D, BC14, max UDMA/66
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.944206] ata1.00: configured for UDMA/66
Jan 15 00:31:43 ubuntu-amos kernel: [ 0.957023] scsi 0:0:0:0: CD-ROM PIONEER DVD-RW DVR-112D BC14 PQ: 0 ANSI: 5
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.504023] usb 1-1: new high-speed USB device number 2 using ehci-pci
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.752017] tsc: Refined TSC clocksource calibration: 2992.499 MHz
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.805424] i8042: No controller found
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.805506] mousedev: PS/2 mouse device common for all mice
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.805634] rtc_cmos 00:01: RTC can wake from S4
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.805746] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.805771] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.805787] i2c /dev entries driver
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.805855] device-mapper: uevent: version 1.0.3
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.805922] device-mapper: ioctl: 4.29.0-ioctl (2014-10-28) initialised: dm-devel@redhat.com
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.805938] ledtrig-cpu: registered to indicate activity on CPUs
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.805943] EFI Variables Facility v0.08 2004-May-17
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.810881] sr 0:0:0:0: [sr0] scsi3-mmc drive: 62x/62x writer cd/rw xa/form2 cdda tray
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.810890] cdrom: Uniform CD-ROM driver Revision: 3.20
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.811044] sr 0:0:0:0: Attached scsi CD-ROM sr0
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.811106] sr 0:0:0:0: Attached scsi generic sg0 type 5
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.813387] usb 1-1: New USB device found, idVendor=05ac, idProduct=1006
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.813396] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.813400] usb 1-1: Product: Keyboard Hub
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.813402] usb 1-1: Manufacturer: Apple, Inc.
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.813405] usb 1-1: SerialNumber: 000000000000
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.814623] hub 1-1:1.0: USB hub found
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.814756] hub 1-1:1.0: 3 ports detected
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.852928] PCCT header not found.
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.852936] ACPI PCC probe failed.
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.853046] TCP: cubic registered
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.853170] NET: Registered protocol family 10
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.853453] NET: Registered protocol family 17
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.853466] Key type dns_resolver registered
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.853973] Loading compiled-in X.509 certificates
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.854862] Loaded X.509 cert 'Magrathea: Glacier signing key: 6aaa11d18c2d3a40b1b4dbe5bf8ad656ddf51838'
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.854879] registered taskstats version 1
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.856818] Key type trusted registered
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.859698] Key type encrypted registered
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.859705] AppArmor: AppArmor sha1 policy hashing enabled
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.859710] ima: No TPM chip found, activating TPM-bypass!
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.859735] evm: HMAC attrs: 0x1
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.860417] Magic number: 0:102:517
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.860555] rtc_cmos 00:01: setting system clock to 2016-01-15 05:31:38 UTC (1452835898)
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.861013] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.861016] EDD information not available.
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.861109] PM: Hibernation image not present or could not be loaded.
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.861606] Freeing unused kernel memory: 1408K (ffffffff81d27000 - ffffffff81e87000)
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.861610] Write protecting the kernel read-only data: 12288k
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.861932] Freeing unused kernel memory: 260K (ffff8800017bf000 - ffff880001800000)
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.862092] Freeing unused kernel memory: 344K (ffff880001baa000 - ffff880001c00000)
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.898405] pps_core: LinuxPPS API ver. 1 registered
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.898417] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.899713] PTP clock support registered
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.905713] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.905717] e1000e: Copyright(c) 1999 - 2014 Intel Corporation.
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.905919] e1000e 0000:07:00.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.911760] ahci 0000:00:1f.2: version 3.0
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.912028] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.912040] ahci 0000:00:1f.2: flags: 64bit ncq pm led slum part
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.913266] scsi host2: ahci
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.913430] scsi host3: ahci
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.913598] scsi host4: ahci
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.913752] scsi host5: ahci
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.913940] scsi host6: ahci
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.914167] scsi host7: ahci
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.914348] ata3: SATA max UDMA/133 abar m1024@0xb1f08000 port 0xb1f08100 irq 21
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.914352] ata4: SATA max UDMA/133 abar m1024@0xb1f08000 port 0xb1f08180 irq 21
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.914355] ata5: SATA max UDMA/133 abar m1024@0xb1f08000 port 0xb1f08200 irq 21
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.914358] ata6: SATA max UDMA/133 abar m1024@0xb1f08000 port 0xb1f08280 irq 21
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.914361] ata7: SATA max UDMA/133 abar m1024@0xb1f08000 port 0xb1f08300 irq 21
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.914364] ata8: SATA max UDMA/133 abar m1024@0xb1f08000 port 0xb1f08380 irq 21
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.960066] firewire_ohci 0000:0c:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x2
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.962525] e1000e 0000:07:00.0 eth0: (PCI Express:2.5GT/s:Width x4) 00:1d:4f:49:9c:00
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.962530] e1000e 0000:07:00.0 eth0: Intel(R) PRO/1000 Network Connection
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.962608] e1000e 0000:07:00.0 eth0: MAC: 5, PHY: 5, PBA No: 3070FF-0FF
Jan 15 00:31:43 ubuntu-amos kernel: [ 1.962758] e1000e 0000:07:00.1: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.018000] e1000e 0000:07:00.1 eth1: (PCI Express:2.5GT/s:Width x4) 00:1d:4f:49:9c:01
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.018004] e1000e 0000:07:00.1 eth1: Intel(R) PRO/1000 Network Connection
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.018082] e1000e 0000:07:00.1 eth1: MAC: 5, PHY: 5, PBA No: 3070FF-0FF
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.108023] usb 2-2: new full-speed USB device number 2 using uhci_hcd
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.144110] usb 1-1.2: new low-speed USB device number 4 using ehci-pci
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.232030] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.232054] ata7: SATA link down (SStatus 0 SControl 300)
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.232083] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.232115] ata8: SATA link down (SStatus 0 SControl 300)
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.232152] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.232189] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.232669] ata3.00: ATA-9: WDC WD30EZRX-00SPEB0, 80.00A80, max UDMA/133
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.232673] ata3.00: 5860533168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.233065] ata4.00: ATA-9: SSD2SC240G1CS1754D117-488, CS111101, max UDMA/133
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.233075] ata4.00: 468862128 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.233204] ata3.00: configured for UDMA/133
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.233251] ata4.00: configured for UDMA/133
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.233323] scsi 2:0:0:0: Direct-Access ATA WDC WD30EZRX-00S 0A80 PQ: 0 ANSI: 5
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.233560] sd 2:0:0:0: [sda] 5860533168 512-byte logical blocks: (3.00 TB/2.72 TiB)
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.233564] sd 2:0:0:0: [sda] 4096-byte physical blocks
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.233602] sd 2:0:0:0: Attached scsi generic sg1 type 0
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.233615] sd 2:0:0:0: [sda] Write Protect is off
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.233619] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.233639] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.233650] ata5.00: ATA-8: MAXTOR STM3500320AS, MX1A, max UDMA/133
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.233660] ata5.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32)
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.233763] scsi 3:0:0:0: Direct-Access ATA SSD2SC240G1CS175 1101 PQ: 0 ANSI: 5
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.234036] sd 3:0:0:0: Attached scsi generic sg2 type 0
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.234042] sd 3:0:0:0: [sdb] 468862128 512-byte logical blocks: (240 GB/223 GiB)
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.234123] sd 3:0:0:0: [sdb] Write Protect is off
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.234132] sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.234163] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.235673] ata5.00: configured for UDMA/133
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.235794] scsi 4:0:0:0: Direct-Access ATA MAXTOR STM350032 MX1A PQ: 0 ANSI: 5
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.235846] sdb: sdb1 sdb2 sdb3 sdb4
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.236145] sd 4:0:0:0: Attached scsi generic sg3 type 0
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.236151] sd 4:0:0:0: [sdc] 976773168 512-byte logical blocks: (500 GB/465 GiB)
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.236194] sd 4:0:0:0: [sdc] Write Protect is off
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.236198] sd 4:0:0:0: [sdc] Mode Sense: 00 3a 00 00
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.236224] sd 4:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.236375] sd 3:0:0:0: [sdb] Attached SCSI disk
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.238008] ata6.00: ATA-8: WDC WD25EZRX-00AZ6B0, 80.00A80, max UDMA/133
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.238013] ata6.00: 4883781168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.242850] usb 1-1.2: New USB device found, idVendor=05ac, idProduct=0220
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.242855] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.242859] usb 1-1.2: Product: Apple Keyboard
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.242861] usb 1-1.2: Manufacturer: Apple, Inc
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.243957] ata6.00: configured for UDMA/133
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.244060] scsi 5:0:0:0: Direct-Access ATA WDC WD25EZRX-00A 0A80 PQ: 0 ANSI: 5
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.244260] sd 5:0:0:0: Attached scsi generic sg4 type 0
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.244300] sd 5:0:0:0: [sdd] 4883781168 512-byte logical blocks: (2.50 TB/2.27 TiB)
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.244304] sd 5:0:0:0: [sdd] 4096-byte physical blocks
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.244361] sd 5:0:0:0: [sdd] Write Protect is off
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.244365] sd 5:0:0:0: [sdd] Mode Sense: 00 3a 00 00
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.244391] sd 5:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.286058] usb 2-2: New USB device found, idVendor=05ac, idProduct=0265
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.286064] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.286068] usb 2-2: Product: Magic Trackpad 2
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.286071] usb 2-2: Manufacturer: Apple Inc.
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.286073] usb 2-2: SerialNumber: CC25336081NG61CAP
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.291556] sdd: sdd1 sdd2 sdd3 sdd4 sdd5
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.292045] sd 5:0:0:0: [sdd] Attached SCSI disk
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.303365] hidraw: raw HID events driver (C) Jiri Kosina
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.310883] sdc: sdc1 sdc2
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.311273] sd 4:0:0:0: [sdc] Attached SCSI disk
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.326211] usbcore: registered new interface driver usbhid
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.326219] usbhid: USB HID core driver
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.330211] hid-generic 0003:05AC:0265.0003: hiddev0,hidraw0: USB HID v1.10 Device [Apple Inc. Magic Trackpad 2] on usb-0000:00:1d.0-2/input0
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.330559] input: Apple Inc. Magic Trackpad 2 as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.1/0003:05AC:0265.0004/input/input2
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.330777] hid-generic 0003:05AC:0265.0004: input,hiddev0,hidraw1: USB HID v1.10 Mouse [Apple Inc. Magic Trackpad 2] on usb-0000:00:1d.0-2/input1
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.332177] hid-generic 0003:05AC:0265.0005: hiddev0,hidraw2: USB HID v1.10 Device [Apple Inc. Magic Trackpad 2] on usb-0000:00:1d.0-2/input2
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.333164] hid-generic 0003:05AC:0265.0006: hiddev0,hidraw3: USB HID v1.10 Device [Apple Inc. Magic Trackpad 2] on usb-0000:00:1d.0-2/input3
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.348032] usb 1-3: new high-speed USB device number 5 using ehci-pci
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.460115] firewire_core 0000:0c:00.0: created device fw0: GUID 001ec2fffefb2936, S800
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.460166] firewire_core 0000:0c:00.0: phy config: new root=ffc1, gap_count=5
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.480358] usb 1-3: New USB device found, idVendor=05ac, idProduct=1008
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.480368] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.480644] hub 1-3:1.0: USB hub found
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.480732] hub 1-3:1.0: 1 port detected
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.592021] usb 1-4: new high-speed USB device number 6 using ehci-pci
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.752084] Switched to clocksource tsc
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.889853] usb 1-4: New USB device found, idVendor=046d, idProduct=09a6
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.889862] usb 1-4: New USB device strings: Mfr=0, Product=0, SerialNumber=2
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.889865] usb 1-4: SerialNumber: 0E237F80
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.981527] sda: sda1 sda2
Jan 15 00:31:43 ubuntu-amos kernel: [ 2.981788] sd 2:0:0:0: [sda] Attached SCSI disk
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.000031] usb 1-5: new high-speed USB device number 7 using ehci-pci
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.132357] usb 1-5: New USB device found, idVendor=05ac, idProduct=1008
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.132365] usb 1-5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.132666] hub 1-5:1.0: USB hub found
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.132726] hub 1-5:1.0: 1 port detected
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.209748] random: nonblocking pool is initialized
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.428017] usb 4-2: new full-speed USB device number 2 using uhci_hcd
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.464104] usb 1-5.1: new full-speed USB device number 9 using ehci-pci
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.536099] usb 1-5.1: device descriptor read/64, error -32
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.651034] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1.2/1-1.2:1.0/0003:05AC:0220.0001/input/input3
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.704104] apple 0003:05AC:0220.0001: input,hidraw4: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:00:1d.7-1.2/input0
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.704815] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1.2/1-1.2:1.1/0003:05AC:0220.0002/input/input4
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.712101] usb 1-5.1: device descriptor read/64, error -32
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.760117] apple 0003:05AC:0220.0002: input,hidraw5: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:00:1d.7-1.2/input1
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.817639] EXT4-fs (sdb4): mounted filesystem with ordered data mode. Opts: (null)
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.888107] usb 1-5.1: new full-speed USB device number 10 using ehci-pci
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.900040] usb 4-2: New USB device found, idVendor=05ac, idProduct=1000
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.900051] usb 4-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.924404] input: HID 05ac:1000 as /devices/pci0000:00/0000:00:1d.2/usb4/4-2/4-2:1.0/0003:05AC:1000.0007/input/input5
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.960104] usb 1-5.1: device descriptor read/64, error -32
Jan 15 00:31:43 ubuntu-amos kernel: [ 3.980089] hid-generic 0003:05AC:1000.0007: input,hidraw6: USB HID v1.11 Keyboard [HID 05ac:1000] on usb-0000:00:1d.2-2/input0
Jan 15 00:31:43 ubuntu-amos kernel: [ 4.007379] input: HID 05ac:1000 as /devices/pci0000:00/0000:00:1d.2/usb4/4-2/4-2:1.1/0003:05AC:1000.0008/input/input6
Jan 15 00:31:43 ubuntu-amos kernel: [ 4.007464] hid-generic 0003:05AC:1000.0008: input,hidraw7: USB HID v1.11 Mouse [HID 05ac:1000] on usb-0000:00:1d.2-2/input1
Jan 15 00:31:43 ubuntu-amos kernel: [ 4.136104] usb 1-5.1: device descriptor read/64, error -32
Jan 15 00:31:43 ubuntu-amos kernel: [ 4.312102] usb 1-5.1: new full-speed USB device number 11 using ehci-pci
Jan 15 00:31:43 ubuntu-amos kernel: [ 4.720007] usb 1-5.1: device not accepting address 11, error -32
Jan 15 00:31:43 ubuntu-amos kernel: [ 4.792104] usb 1-5.1: new full-speed USB device number 12 using ehci-pci
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.200008] usb 1-5.1: device not accepting address 12, error -32
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.200101] usb 1-5-port1: unable to enumerate USB device
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.450404] Adding 9764860k swap on /dev/sdd3. Priority:-1 extents:1 across:9764860k FS
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.453452] EXT4-fs (sdb4): re-mounted. Opts: errors=remount-ro
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.555358] lp: driver loaded but no devices found
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.584597] dca service started, version 1.12.1
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.585493] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587529] ioatdma: Intel(R) QuickData Technology Driver 4.00
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587687] ioatdma 0000:00:0f.0: can't derive routing for PCI INT A
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587689] ioatdma 0000:00:0f.0: PCI INT A: no GSI
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587692] ------------[ cut here ]------------
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587698] WARNING: CPU: 6 PID: 429 at /build/linux-lts-vivid-whAhIw/linux-lts-vivid-3.19.0/drivers/iommu/intel-iommu.c:3500 quirk_ioat_snb_local_iommu+0xab/0xc0()
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587699] BIOS assigned incorrect VT-d unit for Intel(R) QuickData Technology device
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587700] Modules linked in: ioatdma(+) shpchp dca lp parport hid_apple hid_generic usbhid hid ahci libahci pata_acpi firewire_ohci firewire_core e1000e crc_itu_t ptp pps_core
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587711] CPU: 6 PID: 429 Comm: systemd-udevd Not tainted 3.19.0-25-generic #26~14.04.1-Ubuntu
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587713] Hardware name: Apple Inc. MacPro3,1/Mac-F42C88C8, BIOS MP31.88Z.006C.B05.0802291410 02/29/08
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587714] ffffffff81b0c590 ffff8806628a7978 ffffffff817aed00 0000000000003b52
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587717] ffff8806628a79c8 ffff8806628a79b8 ffffffff81074d8a ffff8806628a7a34
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587719] ffff880663523000 ffffffff81b52df0 ffff88065e85d850 ffff880663523000
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587721] Call Trace:
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587727] [<ffffffff817aed00>] dump_stack+0x45/0x57
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587730] [<ffffffff81074d8a>] warn_slowpath_common+0x8a/0xc0
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587732] [<ffffffff81074e4f>] warn_slowpath_fmt_taint+0x3f/0x50
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587734] [<ffffffff814e4d4b>] quirk_ioat_snb_local_iommu+0xab/0xc0
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587738] [<ffffffff813fd4c7>] pci_fixup_device+0x107/0x260
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587741] [<ffffffff813efa73>] do_pci_enable_device+0x63/0x100
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587743] [<ffffffff813f0a68>] pci_enable_device_flags+0xc8/0x120
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587745] [<ffffffff813f0b7d>] pcim_enable_device+0x5d/0xc0
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587749] [<ffffffffc0148088>] ioat_pci_probe+0x18/0x1b0 [ioatdma]
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587751] [<ffffffff813f1ef5>] local_pci_probe+0x45/0xa0
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587754] [<ffffffff813f3195>] ? pci_match_device+0xe5/0x110
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587756] [<ffffffff813f32d9>] pci_device_probe+0xd9/0x130
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587759] [<ffffffff814f547d>] driver_probe_device+0x12d/0x3e0
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587762] [<ffffffff814f580b>] __driver_attach+0x9b/0xa0
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587764] [<ffffffff814f5770>] ? __device_attach+0x40/0x40
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587766] [<ffffffff814f3383>] bus_for_each_dev+0x63/0xa0
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587768] [<ffffffff814f4e5e>] driver_attach+0x1e/0x20
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587770] [<ffffffff814f4a50>] bus_add_driver+0x180/0x240
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587772] [<ffffffffc00da000>] ? 0xffffffffc00da000
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587774] [<ffffffff814f5ff4>] driver_register+0x64/0xf0
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587776] [<ffffffff813f183c>] __pci_register_driver+0x4c/0x50
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587780] [<ffffffffc00da08a>] ioat_init_module+0x8a/0x1000 [ioatdma]
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587783] [<ffffffff81002144>] do_one_initcall+0xd4/0x210
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587787] [<ffffffff811cf219>] ? kmem_cache_alloc_trace+0x199/0x220
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587790] [<ffffffff810f7b1d>] ? load_module+0x162d/0x1ca0
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587792] [<ffffffff810f7b56>] load_module+0x1666/0x1ca0
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587794] [<ffffffff810f3420>] ? store_uevent+0x40/0x40
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587797] [<ffffffff810f8306>] SyS_finit_module+0x86/0xb0
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587800] [<ffffffff817b668d>] system_call_fastpath+0x16/0x1b
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.587802] ---[ end trace 79589f12ddcb39b1 ]---
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.619060] i5k_amb: probe of i5k_amb.0 failed with error -16
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.623276] EDAC MC: Ver: 3.0.0
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.626170] EDAC MC0: Giving out device to module i5400_edac.c controller I5400: DEV 0000:00:10.0 (POLLED)
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.626183] EDAC PCI0: Giving out device to module i5400_edac controller EDAC PCI controller: DEV 0000:00:10.0 (POLLED)
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.636628] [drm] Initialized drm 1.1.0 20060810
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.638179] EXT4-fs (sdd5): mounted filesystem with ordered data mode. Opts: (null)
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.648536] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.648796] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.648826] snd_hda_intel 0000:01:00.1: Disabling MSI
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.648839] snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.648914] snd_hda_intel 0000:02:00.1: enabling device (0000 -> 0002)
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.648947] snd_hda_intel 0000:02:00.1: Handle VGA-switcheroo audio client
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.648949] snd_hda_intel 0000:02:00.1: Force to non-snoop mode
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.649240] wmi: Mapper loaded
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.659376] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:05.0/0000:02:00.1/sound/card2/input7
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.659470] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:05.0/0000:02:00.1/sound/card2/input8
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.659549] input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:05.0/0000:02:00.1/sound/card2/input9
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.659634] input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:05.0/0000:02:00.1/sound/card2/input10
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.659718] input: HDA ATI HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:05.0/0000:02:00.1/sound/card2/input11
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.659799] input: HDA ATI HDMI HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:05.0/0000:02:00.1/sound/card2/input12
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.664255] sound hdaudioC0D0: ALC889A: SKU not ready 0x400000f0
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.664565] sound hdaudioC0D0: autoconfig: line_outs=1 (0x15/0x0/0x0/0x0/0x0) type:line
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.664567] sound hdaudioC0D0: speaker_outs=1 (0x1a/0x0/0x0/0x0/0x0)
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.664569] sound hdaudioC0D0: hp_outs=1 (0x18/0x0/0x0/0x0/0x0)
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.664570] sound hdaudioC0D0: mono: mono_out=0x0
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.664572] sound hdaudioC0D0: dig-out=0x1e/0x0
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.664573] sound hdaudioC0D0: inputs:
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.664575] sound hdaudioC0D0: Line=0x19
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.664576] sound hdaudioC0D0: dig-in=0x1f
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.675674] [drm] radeon kernel modesetting enabled.
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.679246] nouveau 0000:01:00.0: enabling device (0004 -> 0007)
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.679587] nouveau [ DEVICE][0000:01:00.0] BOOT0 : 0x124000a1
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.679590] nouveau [ DEVICE][0000:01:00.0] Chipset: GM204 (NV124)
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.679592] nouveau [ DEVICE][0000:01:00.0] Family : NV110
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.681057] AMD IOMMUv2 driver by Joerg Roedel <joerg.roedel@amd.com>
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.681060] AMD IOMMUv2 functionality not available on this system
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.684542] CRAT table not found
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.684544] Finished initializing topology ret=0
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.684633] kfd kfd: Initialized module
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.688775] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.688847] input: HDA Intel Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.758202] nouveau [ VBIOS][0000:01:00.0] using image from PROM
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.758427] nouveau [ VBIOS][0000:01:00.0] BIT signature found
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.758430] nouveau [ VBIOS][0000:01:00.0] version 84.04.1f.00.02
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.759546] nouveau [ DEVINIT][0000:01:00.0] adaptor not initialised
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.771214] nouveau [ PMC][0000:01:00.0] MSI interrupts enabled
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.771252] nouveau [ PFB][0000:01:00.0] RAM type: GDDR5
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.771254] nouveau [ PFB][0000:01:00.0] RAM size: 4096 MiB
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.771256] nouveau [ PFB][0000:01:00.0] ZCOMP: 0 tags
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773154] [TTM] Zone kernel: Available graphics memory: 12342554 kiB
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773155] [TTM] Zone dma32: Available graphics memory: 2097152 kiB
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773156] [TTM] Initializing pool allocator
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773162] [TTM] Initializing DMA pool allocator
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773173] nouveau [ DRM] VRAM: 4096 MiB
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773175] nouveau [ DRM] GART: 1048576 MiB
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773179] nouveau [ DRM] TMDS table version 2.0
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773180] nouveau [ DRM] DCB version 4.1
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773182] nouveau [ DRM] DCB outp 00: 01000f02 00020030
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773184] nouveau [ DRM] DCB outp 01: 02000f00 00000000
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773186] nouveau [ DRM] DCB outp 02: 02811f76 04400020
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773188] nouveau [ DRM] DCB outp 03: 02011f72 00020020
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773189] nouveau [ DRM] DCB outp 04: 04822f86 04400010
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773190] nouveau [ DRM] DCB outp 05: 04022f82 00020010
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773192] nouveau [ DRM] DCB outp 06: 04833f96 04400020
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773193] nouveau [ DRM] DCB outp 07: 04033f92 00020020
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773195] nouveau [ DRM] DCB outp 08: 02044f62 00020010
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773196] nouveau [ DRM] DCB outp 15: 01df5ff8 00000000
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773198] nouveau [ DRM] DCB conn 00: 00001030
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773200] nouveau [ DRM] DCB conn 01: 00020146
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773201] nouveau [ DRM] DCB conn 02: 01000246
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773203] nouveau [ DRM] DCB conn 03: 02000346
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773204] nouveau [ DRM] DCB conn 04: 00010461
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.773205] nouveau [ DRM] DCB conn 05: 00000570
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.778221] nouveau W[ DRM] unknown connector type 70
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.778275] nouveau W[ DRM] failed to create encoder 1/8/0: -19
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.778277] nouveau W[ DRM] Unknown-1 has no encoders, removing
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.778313] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.778315] [drm] Driver supports precise vblank timestamp query.
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.778322] nouveau E[ DRM] failed to initialise sync subsystem, -38
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.807716] EXT4-fs (sdd2): mounted filesystem with ordered data mode. Opts: (null)
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.820039] intel_rng: FWH not detected
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.837106] media: Linux media interface: v0.10
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.844040] Linux video capture interface: v2.00
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.862488] audit: type=1400 audit(1452835902.499:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=483 comm="apparmor_parser"
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.862497] audit: type=1400 audit(1452835902.499:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=483 comm="apparmor_parser"
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.862501] audit: type=1400 audit(1452835902.499:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=483 comm="apparmor_parser"
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.862857] audit: type=1400 audit(1452835902.499:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=483 comm="apparmor_parser"
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.862864] audit: type=1400 audit(1452835902.499:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=483 comm="apparmor_parser"
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.863056] audit: type=1400 audit(1452835902.499:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=483 comm="apparmor_parser"
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.863067] audit: type=1400 audit(1452835902.499:8): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=487 comm="apparmor_parser"
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.863072] audit: type=1400 audit(1452835902.499:9): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=487 comm="apparmor_parser"
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.863077] audit: type=1400 audit(1452835902.499:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=487 comm="apparmor_parser"
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.863440] audit: type=1400 audit(1452835902.499:11): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=487 comm="apparmor_parser"
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.865621] usb 1-4: Warning! Unlikely big volume range (=5120), cval->res is probably wrong.
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.865626] usb 1-4: [5] FU [Mic Capture Volume] ch = 1, val = 2816/7936/1
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.884196] usbcore: registered new interface driver snd-usb-audio
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.884258] uvcvideo: Found UVC 1.00 device <unnamed> (046d:09a6)
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.914881] input: UVC Camera (046d:09a6) as /devices/pci0000:00/0000:00:1d.7/usb1/1-4/1-4:1.0/input/input15
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.914979] usbcore: registered new interface driver uvcvideo
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.914981] USB Video Class driver (1.1.1)
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.938941] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x000000000000042c-0x000000000000042f (\GPE0) (20141107/utaddress-258)
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.938954] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\PMIO) (20141107/utaddress-258)
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.938957] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.938960] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x000000000000053b (\GPIO) (20141107/utaddress-258)
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.938963] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.938964] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x000000000000053b (\GPIO) (20141107/utaddress-258)
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.938967] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.938968] lpc_ich: Resource conflict(s) found affecting gpio_ich
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.981061] nouveau 0000:01:00.0: No connectors reported connected with modes
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.981069] [drm] Cannot find any crtc or sizes - going 1024x768
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.982553] nouveau [ DRM] allocated 1024x768 fb: 0x60000, bo ffff88065f6c4c00
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.983524] Console: switching to colour frame buffer device 128x48
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.985192] nouveau 0000:01:00.0: fb0: nouveaufb frame buffer device
Jan 15 00:31:43 ubuntu-amos kernel: [ 5.985194] nouveau 0000:01:00.0: registered panic notifier
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.120146] [drm] Initialized nouveau 1.2.1 20120801 for 0000:01:00.0 on minor 0
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.121915] [drm] initializing kernel modesetting (TAHITI 0x1002:0x679A 0x1462:0x2761).
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.121935] [drm] register mmio base: 0xB1E00000
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.121936] [drm] register mmio size: 262144
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.215208] applesmc: key=274 fan=4 temp=40 index=40 acc=1 lux=0 kbd=0
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.216064] input: applesmc as /devices/platform/applesmc.768/input/input18
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.250318] EXT4-fs (sdd4): mounted filesystem with ordered data mode. Opts: (null)
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.409461] ATOM BIOS: 113
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.409514] [drm] Changing default dispclk from 500Mhz to 600Mhz
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.409536] radeon 0000:02:00.0: VRAM: 3072M 0x0000000000000000 - 0x00000000BFFFFFFF (3072M used)
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.409538] radeon 0000:02:00.0: GTT: 1024M 0x00000000C0000000 - 0x00000000FFFFFFFF
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.409540] [drm] Detected VRAM RAM=3072M, BAR=256M
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.409541] [drm] RAM width 384bits DDR
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.409567] [drm] radeon: 3072M of VRAM memory ready
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.409568] [drm] radeon: 1024M of GTT memory ready.
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.409584] [drm] Loading tahiti Microcode
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.413533] [drm] Internal thermal controller with fan control
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.413644] [drm] probing gen 2 caps for device 8086:4025 = 8394d02/0
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.419454] [drm] radeon: dpm initialized
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.420643] [drm] GART: num cpu pages 262144, num gpu pages 262144
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.421876] [drm] probing gen 2 caps for device 8086:4025 = 8394d02/0
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.421880] [drm] PCIE gen 2 link speeds already enabled
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.425865] [drm] PCIE GART of 1024M enabled (table at 0x0000000000277000).
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.426012] radeon 0000:02:00.0: WB enabled
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.426017] radeon 0000:02:00.0: fence driver on ring 0 use gpu addr 0x00000000c0000c00 and cpu addr 0xffff88065fee1c00
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.426018] radeon 0000:02:00.0: fence driver on ring 1 use gpu addr 0x00000000c0000c04 and cpu addr 0xffff88065fee1c04
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.426020] radeon 0000:02:00.0: fence driver on ring 2 use gpu addr 0x00000000c0000c08 and cpu addr 0xffff88065fee1c08
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.426022] radeon 0000:02:00.0: fence driver on ring 3 use gpu addr 0x00000000c0000c0c and cpu addr 0xffff88065fee1c0c
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.426024] radeon 0000:02:00.0: fence driver on ring 4 use gpu addr 0x00000000c0000c10 and cpu addr 0xffff88065fee1c10
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.426524] radeon 0000:02:00.0: fence driver on ring 5 use gpu addr 0x0000000000075a18 and cpu addr 0xffffc90015035a18
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.426528] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.426529] [drm] Driver supports precise vblank timestamp query.
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.426531] radeon 0000:02:00.0: radeon: MSI limited to 32-bit
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.426565] radeon 0000:02:00.0: radeon: using MSI.
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.426592] [drm] radeon: irq initialized.
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.581928] [drm] ring test on 0 succeeded in 1 usecs
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.581934] [drm] ring test on 1 succeeded in 1 usecs
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.581943] [drm] ring test on 2 succeeded in 1 usecs
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.581951] [drm] ring test on 3 succeeded in 3 usecs
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.581956] [drm] ring test on 4 succeeded in 3 usecs
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.582573] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input16
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.583204] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input17
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.583334] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input19
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.583465] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input20
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.757638] [drm] ring test on 5 succeeded in 2 usecs
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.757643] [drm] UVD initialized successfully.
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.758074] [drm] ib test on ring 0 succeeded in 0 usecs
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.758095] [drm] ib test on ring 1 succeeded in 0 usecs
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.758113] [drm] ib test on ring 2 succeeded in 0 usecs
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.758133] [drm] ib test on ring 3 succeeded in 0 usecs
Jan 15 00:31:43 ubuntu-amos kernel: [ 6.758150] [drm] ib test on ring 4 succeeded in 0 usecs
Jan 15 00:31:43 ubuntu-amos kernel: [ 7.096167] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.408023] [drm] ib test on ring 5 succeeded
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409710] [drm] Radeon Display Connectors
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409714] [drm] Connector 0:
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409715] [drm] DP-4
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409716] [drm] HPD5
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409717] [drm] DDC: 0x6530 0x6530 0x6534 0x6534 0x6538 0x6538 0x653c 0x653c
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409718] [drm] Encoders:
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409720] [drm] DFP1: INTERNAL_UNIPHY2
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409720] [drm] Connector 1:
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409721] [drm] DP-5
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409722] [drm] HPD4
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409724] [drm] DDC: 0x6540 0x6540 0x6544 0x6544 0x6548 0x6548 0x654c 0x654c
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409725] [drm] Encoders:
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409726] [drm] DFP2: INTERNAL_UNIPHY2
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409726] [drm] Connector 2:
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409727] [drm] HDMI-A-2
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409728] [drm] HPD1
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409730] [drm] DDC: 0x6550 0x6550 0x6554 0x6554 0x6558 0x6558 0x655c 0x655c
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409730] [drm] Encoders:
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409731] [drm] DFP3: INTERNAL_UNIPHY1
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409732] [drm] Connector 3:
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409733] [drm] DVI-I-2
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409734] [drm] HPD3
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409736] [drm] DDC: 0x6580 0x6580 0x6584 0x6584 0x6588 0x6588 0x658c 0x658c
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409737] [drm] Encoders:
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409737] [drm] DFP4: INTERNAL_UNIPHY
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.409739] [drm] CRT1: INTERNAL_KLDSCP_DAC1
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.795560] [drm] fb mappable at 0xA0479000
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.795562] [drm] vram apper at 0xA0000000
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.795563] [drm] size 8294400
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.795564] [drm] fb depth is 24
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.795565] [drm] pitch is 7680
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.795649] radeon 0000:02:00.0: fb1: radeondrmfb frame buffer device
Jan 15 00:31:44 ubuntu-amos kernel: [ 7.795675] [drm] Initialized radeon 2.40.0 20080528 for 0000:02:00.0 on minor 1
Jan 15 00:31:46 ubuntu-amos kernel: [ 9.834380] e1000e: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
Jan 15 00:31:46 ubuntu-amos kernel: [ 9.834884] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
Jan 15 00:31:53 ubuntu-amos kernel: [ 16.972674] audit_printk_skb: 6 callbacks suppressed
Jan 15 00:31:53 ubuntu-amos kernel: [ 16.972678] audit: type=1400 audit(1452835913.611:14): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=944 comm="apparmor_parser"
Jan 15 00:31:53 ubuntu-amos kernel: [ 16.972687] audit: type=1400 audit(1452835913.611:15): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=944 comm="apparmor_parser"
Jan 15 00:31:53 ubuntu-amos kernel: [ 16.972692] audit: type=1400 audit(1452835913.611:16): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=944 comm="apparmor_parser"
Jan 15 00:31:53 ubuntu-amos kernel: [ 16.973050] audit: type=1400 audit(1452835913.611:17): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=944 comm="apparmor_parser"
Jan 15 00:31:53 ubuntu-amos kernel: [ 16.973054] audit: type=1400 audit(1452835913.611:18): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=944 comm="apparmor_parser"
Jan 15 00:31:53 ubuntu-amos kernel: [ 16.973248] audit: type=1400 audit(1452835913.611:19): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=944 comm="apparmor_parser"
Jan 15 00:31:53 ubuntu-amos kernel: [ 16.973478] audit: type=1400 audit(1452835913.611:20): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=946 comm="apparmor_parser"
|