ubuntuusers.de

/var/log/Xorg.0.log_Tick-Tack

Autor:
Tick-Tack
Datum:
15. Juni 2015 19:46
Code:
   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
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
[     4.773] 
X.Org X Server 1.17.1
Release Date: 2015-02-10
[     4.773] X Protocol Version 11, Revision 0
[     4.773] Build Operating System: Linux 3.2.0-61-generic x86_64 Ubuntu
[     4.773] Current Operating System: Linux Dell-Jascha 3.19.0-20-generic #20-Ubuntu SMP Fri May 29 10:10:47 UTC 2015 x86_64
[     4.773] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.19.0-20-generic.efi.signed root=UUID=8b784b06-4a8d-49d3-9cc0-355993bd3bd4 ro quiet splash vt.handoff=7
[     4.773] Build Date: 19 March 2015  09:26:59AM
[     4.773] xorg-server 2:1.17.1-0ubuntu3 (For technical support please see http://www.ubuntu.com/support) 
[     4.773] Current version of pixman: 0.32.6
[     4.773] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     4.773] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     4.774] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Jun 15 19:38:46 2015
[     4.775] (==) Using config file: "/etc/X11/xorg.conf"
[     4.775] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     4.777] (==) ServerLayout "layout"
[     4.777] (**) |-->Screen "nvidia" (0)
[     4.777] (**) |   |-->Monitor "<default monitor>"
[     4.778] (**) |   |-->Device "nvidia"
[     4.778] (==) No monitor specified for screen "nvidia".
	Using a default monitor configuration.
[     4.778] (**) |-->Inactive Device "intel"
[     4.778] (==) Automatically adding devices
[     4.778] (==) Automatically enabling devices
[     4.778] (==) Automatically adding GPU devices
[     4.778] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[     4.778] 	Entry deleted from font path.
[     4.778] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
[     4.778] 	Entry deleted from font path.
[     4.778] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
[     4.778] 	Entry deleted from font path.
[     4.778] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
[     4.778] 	Entry deleted from font path.
[     4.778] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
[     4.778] 	Entry deleted from font path.
[     4.778] (==) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/Type1,
	built-ins
[     4.778] (==) ModulePath set to "/usr/lib/x86_64-linux-gnu/xorg/extra-modules,/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules"
[     4.778] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[     4.778] (II) Loader magic: 0x7fbb6a3d8d80
[     4.778] (II) Module ABI versions:
[     4.778] 	X.Org ANSI C Emulation: 0.4
[     4.778] 	X.Org Video Driver: 19.0
[     4.778] 	X.Org XInput driver : 21.0
[     4.778] 	X.Org Server Extension : 9.0
[     4.778] (II) xfree86: Adding drm device (/dev/dri/card1)
[     4.779] (II) xfree86: Adding drm device (/dev/dri/card0)
[     4.780] (--) PCI:*(0:0:2:0) 8086:0416:1028:05fe rev 6, Mem @ 0xf7400000/4194304, 0xd0000000/268435456, I/O @ 0x0000f000/64
[     4.780] (--) PCI: (0:2:0:0) 10de:0fe4:1028:05fe rev 161, Mem @ 0xf6000000/16777216, 0xe0000000/268435456, 0xf0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
[     4.780] (WW) "glamoregl" will not be loaded unless you've specified it to be loaded elsewhere.
[     4.780] (II) "glx" will be loaded by default.
[     4.780] (WW) "xmir" is not to be loaded by default. Skipping.
[     4.780] (II) LoadModule: "glx"
[     4.781] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/libglx.so
[     4.853] (II) Module glx: vendor="NVIDIA Corporation"
[     4.853] 	compiled for 4.0.2, module version = 1.0.0
[     4.853] 	Module class: X.Org Server Extension
[     4.854] (II) NVIDIA GLX Module  346.59  Tue Mar 31 13:38:58 PDT 2015
[     4.854] (II) LoadModule: "nvidia"
[     4.854] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/nvidia_drv.so
[     4.860] (II) Module nvidia: vendor="NVIDIA Corporation"
[     4.860] 	compiled for 4.0.2, module version = 1.0.0
[     4.860] 	Module class: X.Org Video Driver
[     4.860] (II) LoadModule: "intel"
[     4.861] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[     4.864] (II) Module intel: vendor="X.Org Foundation"
[     4.864] 	compiled for 1.17.1, module version = 2.99.917
[     4.864] 	Module class: X.Org Video Driver
[     4.864] 	ABI class: X.Org Video Driver, version 19.0
[     4.864] (II) NVIDIA dlloader X Driver  346.59  Tue Mar 31 13:17:41 PDT 2015
[     4.864] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[     4.864] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
	i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
	915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
	Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
	GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
[     4.864] (II) intel: Driver for Intel(R) HD Graphics: 2000-6000
[     4.864] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100, 6100
[     4.864] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200, 6200, P6300
[     4.864] (++) using VT number 7

[     4.865] (II) Loading sub module "fb"
[     4.865] (II) LoadModule: "fb"
[     4.865] (II) Loading /usr/lib/xorg/modules/libfb.so
[     4.866] (II) Module fb: vendor="X.Org Foundation"
[     4.866] 	compiled for 1.17.1, module version = 1.0.0
[     4.866] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.866] (II) Loading sub module "wfb"
[     4.866] (II) LoadModule: "wfb"
[     4.866] (II) Loading /usr/lib/xorg/modules/libwfb.so
[     4.867] (II) Module wfb: vendor="X.Org Foundation"
[     4.867] 	compiled for 1.17.1, module version = 1.0.0
[     4.867] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.867] (II) Loading sub module "ramdac"
[     4.867] (II) LoadModule: "ramdac"
[     4.867] (II) Module "ramdac" already built-in
[     4.868] (II) intel(G0): Using Kernel Mode Setting driver: i915, version 1.6.0 20141121
[     4.868] (II) intel(G0): SNA compiled: xserver-xorg-video-intel 2:2.99.917-1~exp1ubuntu2.2 (Alessio Treglia <quadrispro@ubuntu.com>)
[     4.868] (II) intel(G0): SNA compiled for use with valgrind
[     4.869] (II) intel(G1): Using Kernel Mode Setting driver: i915, version 1.6.0 20141121
[     4.869] (II) intel(G1): SNA compiled: xserver-xorg-video-intel 2:2.99.917-1~exp1ubuntu2.2 (Alessio Treglia <quadrispro@ubuntu.com>)
[     4.869] (II) intel(G1): SNA compiled for use with valgrind
[     4.869] (II) NVIDIA(0): Creating default Display subsection in Screen section
	"nvidia" for depth/fbbpp 24/32
[     4.869] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[     4.869] (==) NVIDIA(0): RGB weight 888
[     4.869] (==) NVIDIA(0): Default visual is TrueColor
[     4.869] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[     4.870] (**) NVIDIA(0): Option "ConstrainCursor" "off"
[     4.870] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration" "on"
[     4.870] (**) NVIDIA(0): Option "IgnoreDisplayDevices" "CRT"
[     4.870] (**) NVIDIA(0): Enabling 2D acceleration
[     5.290] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20150116)
[     5.291] (II) NVIDIA(0): NVIDIA GPU GeForce GT 750M (GK107) at PCI:2:0:0 (GPU-0)
[     5.291] (--) NVIDIA(0): Memory: 2097152 kBytes
[     5.291] (--) NVIDIA(0): VideoBIOS: 80.07.b3.00.10
[     5.291] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[     5.291] (--) NVIDIA(0): Valid display device(s) on GeForce GT 750M at PCI:2:0:0
[     5.291] (--) NVIDIA(0):     none
[     5.292] (II) NVIDIA(0): Validated MetaModes:
[     5.292] (II) NVIDIA(0):     "NULL"
[     5.292] (II) NVIDIA(0): Virtual screen size determined to be 640 x 480
[     5.292] (WW) NVIDIA(0): Unable to get display device for DPI computation.
[     5.292] (==) NVIDIA(0): DPI set to (75, 75); computed from built-in default
[     5.292] (--) intel(G0): Integrated Graphics Chipset: Intel(R) HD Graphics 4600
[     5.292] (--) intel(G0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx, avx2
[     5.292] (==) intel(G0): Depth 24, (--) framebuffer bpp 32
[     5.292] (==) intel(G0): RGB weight 888
[     5.292] (==) intel(G0): Default visual is TrueColor
[     5.292] (**) intel(G0): Option "AccelMethod" "SNA"
[     5.292] (II) intel(G0): Output eDP1 has no monitor section
[     5.293] (--) intel(G0): Found backlight control interface intel_backlight (type 'raw') for output eDP1
[     5.293] (II) intel(G0): Enabled output eDP1
[     5.293] (II) intel(G0): Output VGA1 has no monitor section
[     5.293] (II) intel(G0): Enabled output VGA1
[     5.293] (II) intel(G0): Output HDMI1 has no monitor section
[     5.293] (II) intel(G0): Enabled output HDMI1
[     5.293] (II) intel(G0): Output DP1 has no monitor section
[     5.293] (II) intel(G0): Enabled output DP1
[     5.293] (II) intel(G0): Output HDMI2 has no monitor section
[     5.293] (II) intel(G0): Enabled output HDMI2
[     5.293] (--) intel(G0): Using a maximum size of 256x256 for hardware cursors
[     5.293] (II) intel(G0): Output VIRTUAL1 has no monitor section
[     5.293] (II) intel(G0): Enabled output VIRTUAL1
[     5.293] (==) intel(G0): TearFree disabled
[     5.293] (==) intel(G0): DPI set to (96, 96)
[     5.293] (II) Loading sub module "dri2"
[     5.293] (II) LoadModule: "dri2"
[     5.293] (II) Module "dri2" already built-in
[     5.293] (II) Loading sub module "present"
[     5.293] (II) LoadModule: "present"
[     5.293] (II) Module "present" already built-in
[     7.514] (EE) intel(G1): [drm] failed to set drm interface version: Permission denied [13].
[     7.514] (II) intel(G1): [drm] Contents of '/sys/kernel/debug/dri/0/clients':
[     7.514] (II) intel(G1): [drm]              command   pid dev master a   uid      magic
[     7.514] (II) intel(G1): [drm]                 Xorg   920   0   y    y     0          0
[     7.514] (II) intel(G1): [drm]                 Xorg   920   0   n    y     0          0
[     7.514] (EE) intel(G1): Failed to claim DRM device.
[     7.514] (II) UnloadModule: "intel"
[     7.514] (--) Depth 24 pixmap format is 32 bpp
[     7.518] (II) intel(G0): SNA initialized with Haswell (gen7.5, gt2) backend
[     7.518] (==) intel(G0): Backing store enabled
[     7.518] (==) intel(G0): Silken mouse enabled
[     7.519] (II) intel(G0): HW Cursor enabled
[     7.519] (II) intel(G0): RandR 1.2 enabled, ignore the following RandR disabled message.
[     7.519] (==) intel(G0): DPMS enabled
[     7.520] (==) intel(G0): display hotplug detection enabled
[     7.520] (II) intel(G0): [DRI2] Setup complete
[     7.520] (II) intel(G0): [DRI2]   DRI driver: i965
[     7.520] (II) intel(G0): [DRI2]   VDPAU driver: i965
[     7.520] (II) intel(G0): direct rendering: DRI2 enabled
[     7.520] (II) intel(G0): hardware support for Present enabled
[     7.520] (WW) intel(G0): Option "AllowEmptyInitialConfiguration" is not used
[     7.520] (WW) intel(G0): Option "IgnoreDisplayDevices" is not used
[     7.520] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect memory
[     7.520] (II) NVIDIA:     access.
[     7.525] (II) NVIDIA(0): Setting mode "NULL"
[     7.539] (II) NVIDIA(0): Built-in logo is bigger than the screen.
[     7.544] (==) NVIDIA(0): Disabling shared memory pixmaps
[     7.544] (==) NVIDIA(0): Backing store enabled
[     7.544] (==) NVIDIA(0): Silken mouse enabled
[     7.544] (==) NVIDIA(0): DPMS enabled
[     7.545] (II) Loading sub module "dri2"
[     7.545] (II) LoadModule: "dri2"
[     7.545] (II) Module "dri2" already built-in
[     7.545] (II) NVIDIA(0): [DRI2] Setup complete
[     7.545] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[     7.545] (--) RandR disabled
[     7.549] (II) SELinux: Disabled on system
[     7.549] (II) Initializing extension GLX
[     7.549] (II) Indirect GLX disabled.(II) XKB: reuse xkmfile /var/lib/xkb/server-B20D7FC79C7F597315E3E501AEF10E0D866E8E92.xkm
[     8.058] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[     8.058] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[     8.058] (II) LoadModule: "evdev"
[     8.058] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[     8.059] (II) Module evdev: vendor="X.Org Foundation"
[     8.059] 	compiled for 1.16.0, module version = 2.9.0
[     8.059] 	Module class: X.Org XInput Driver
[     8.059] 	ABI class: X.Org XInput driver, version 21.0
[     8.059] (II) Using input driver 'evdev' for 'Power Button'
[     8.059] (**) Power Button: always reports core events
[     8.059] (**) evdev: Power Button: Device: "/dev/input/event2"
[     8.059] (--) evdev: Power Button: Vendor 0 Product 0x1
[     8.059] (--) evdev: Power Button: Found keys
[     8.059] (II) evdev: Power Button: Configuring as keyboard
[     8.059] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[     8.059] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[     8.059] (**) Option "xkb_rules" "evdev"
[     8.059] (**) Option "xkb_model" "pc105"
[     8.059] (**) Option "xkb_layout" "de"
[     8.061] (II) XKB: reuse xkmfile /var/lib/xkb/server-808BBA3D4C227BDB44C370226C34E44C5D69A4A9.xkm
[     8.062] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
[     8.062] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[     8.062] (II) Using input driver 'evdev' for 'Video Bus'
[     8.062] (**) Video Bus: always reports core events
[     8.062] (**) evdev: Video Bus: Device: "/dev/input/event5"
[     8.062] (--) evdev: Video Bus: Vendor 0 Product 0x6
[     8.062] (--) evdev: Video Bus: Found keys
[     8.062] (II) evdev: Video Bus: Configuring as keyboard
[     8.062] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input8/event5"
[     8.062] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[     8.062] (**) Option "xkb_rules" "evdev"
[     8.062] (**) Option "xkb_model" "pc105"
[     8.062] (**) Option "xkb_layout" "de"
[     8.062] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
[     8.062] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[     8.062] (II) Using input driver 'evdev' for 'Video Bus'
[     8.062] (**) Video Bus: always reports core events
[     8.062] (**) evdev: Video Bus: Device: "/dev/input/event4"
[     8.062] (--) evdev: Video Bus: Vendor 0 Product 0x6
[     8.062] (--) evdev: Video Bus: Found keys
[     8.062] (II) evdev: Video Bus: Configuring as keyboard
[     8.062] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:4d/LNXVIDEO:00/input/input7/event4"
[     8.062] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[     8.062] (**) Option "xkb_rules" "evdev"
[     8.062] (**) Option "xkb_model" "pc105"
[     8.062] (**) Option "xkb_layout" "de"
[     8.062] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[     8.062] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[     8.062] (II) Using input driver 'evdev' for 'Power Button'
[     8.062] (**) Power Button: always reports core events
[     8.062] (**) evdev: Power Button: Device: "/dev/input/event0"
[     8.062] (--) evdev: Power Button: Vendor 0 Product 0x1
[     8.062] (--) evdev: Power Button: Found keys
[     8.062] (II) evdev: Power Button: Configuring as keyboard
[     8.062] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[     8.062] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
[     8.062] (**) Option "xkb_rules" "evdev"
[     8.062] (**) Option "xkb_model" "pc105"
[     8.062] (**) Option "xkb_layout" "de"
[     8.063] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
[     8.063] (II) No input driver specified, ignoring this device.
[     8.063] (II) This device may have been added with another device file.
[     8.063] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=7 (/dev/input/event7)
[     8.063] (II) No input driver specified, ignoring this device.
[     8.063] (II) This device may have been added with another device file.
[     8.063] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=8 (/dev/input/event8)
[     8.063] (II) No input driver specified, ignoring this device.
[     8.063] (II) This device may have been added with another device file.
[     8.063] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=3 (/dev/input/event6)
[     8.063] (II) No input driver specified, ignoring this device.
[     8.063] (II) This device may have been added with another device file.
[     8.063] (II) config/udev: Adding input device Integrated_Webcam_HD (/dev/input/event15)
[     8.063] (**) Integrated_Webcam_HD: Applying InputClass "evdev keyboard catchall"
[     8.063] (II) Using input driver 'evdev' for 'Integrated_Webcam_HD'
[     8.063] (**) Integrated_Webcam_HD: always reports core events
[     8.063] (**) evdev: Integrated_Webcam_HD: Device: "/dev/input/event15"
[     8.063] (--) evdev: Integrated_Webcam_HD: Vendor 0xbda Product 0x573c
[     8.063] (--) evdev: Integrated_Webcam_HD: Found keys
[     8.063] (II) evdev: Integrated_Webcam_HD: Configuring as keyboard
[     8.063] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/input/input17/event15"
[     8.063] (II) XINPUT: Adding extended input device "Integrated_Webcam_HD" (type: KEYBOARD, id 10)
[     8.063] (**) Option "xkb_rules" "evdev"
[     8.063] (**) Option "xkb_model" "pc105"
[     8.063] (**) Option "xkb_layout" "de"
[     8.064] (II) config/udev: Adding input device USB Optical Mouse (/dev/input/event13)
[     8.064] (**) USB Optical Mouse: Applying InputClass "evdev pointer catchall"
[     8.064] (**) USB Optical Mouse: Applying InputClass "Avago Technologies mouse quirks (LP: #746639)"
[     8.064] (II) Using input driver 'evdev' for 'USB Optical Mouse'
[     8.064] (**) USB Optical Mouse: always reports core events
[     8.064] (**) evdev: USB Optical Mouse: Device: "/dev/input/event13"
[     8.120] (--) evdev: USB Optical Mouse: Vendor 0x192f Product 0x416
[     8.120] (--) evdev: USB Optical Mouse: Found 3 mouse buttons
[     8.120] (--) evdev: USB Optical Mouse: Found scroll wheel(s)
[     8.120] (--) evdev: USB Optical Mouse: Found relative axes
[     8.120] (--) evdev: USB Optical Mouse: Found x and y relative axes
[     8.120] (II) evdev: USB Optical Mouse: Configuring as mouse
[     8.120] (II) evdev: USB Optical Mouse: Adding scrollwheel support
[     8.120] (**) Option "Emulate3Buttons" "True"
[     8.120] (**) Option "Emulate3Timeout" "50"
[     8.120] (**) evdev: USB Optical Mouse: YAxisMapping: buttons 4 and 5
[     8.120] (**) evdev: USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[     8.120] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.1/1-2.1:1.0/0003:192F:0416.0002/input/input15/event13"
[     8.120] (II) XINPUT: Adding extended input device "USB Optical Mouse" (type: MOUSE, id 11)
[     8.120] (II) evdev: USB Optical Mouse: initialized for relative axes.
[     8.120] (**) USB Optical Mouse: (accel) keeping acceleration scheme 1
[     8.120] (**) USB Optical Mouse: (accel) acceleration profile 0
[     8.120] (**) USB Optical Mouse: (accel) acceleration factor: 2.000
[     8.120] (**) USB Optical Mouse: (accel) acceleration threshold: 4
[     8.120] (II) config/udev: Adding input device USB Optical Mouse (/dev/input/mouse1)
[     8.120] (II) No input driver specified, ignoring this device.
[     8.120] (II) This device may have been added with another device file.
[     8.121] (II) config/udev: Adding input device HID 046a:0023 (/dev/input/event12)
[     8.121] (**) HID 046a:0023: Applying InputClass "evdev keyboard catchall"
[     8.121] (II) Using input driver 'evdev' for 'HID 046a:0023'
[     8.121] (**) HID 046a:0023: always reports core events
[     8.121] (**) evdev: HID 046a:0023: Device: "/dev/input/event12"
[     8.121] (--) evdev: HID 046a:0023: Vendor 0x46a Product 0x23
[     8.121] (--) evdev: HID 046a:0023: Found keys
[     8.121] (II) evdev: HID 046a:0023: Configuring as keyboard
[     8.121] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.0/0003:046A:0023.0003/input/input14/event12"
[     8.121] (II) XINPUT: Adding extended input device "HID 046a:0023" (type: KEYBOARD, id 12)
[     8.121] (**) Option "xkb_rules" "evdev"
[     8.121] (**) Option "xkb_model" "pc105"
[     8.121] (**) Option "xkb_layout" "de"
[     8.122] (II) config/udev: Adding input device HID 046a:0023 (/dev/input/event16)
[     8.122] (**) HID 046a:0023: Applying InputClass "evdev keyboard catchall"
[     8.122] (II) Using input driver 'evdev' for 'HID 046a:0023'
[     8.122] (**) HID 046a:0023: always reports core events
[     8.122] (**) evdev: HID 046a:0023: Device: "/dev/input/event16"
[     8.122] (--) evdev: HID 046a:0023: Vendor 0x46a Product 0x23
[     8.122] (--) evdev: HID 046a:0023: Found 1 mouse buttons
[     8.122] (--) evdev: HID 046a:0023: Found scroll wheel(s)
[     8.122] (--) evdev: HID 046a:0023: Found relative axes
[     8.122] (II) evdev: HID 046a:0023: Forcing relative x/y axes to exist.
[     8.122] (--) evdev: HID 046a:0023: Found absolute axes
[     8.122] (II) evdev: HID 046a:0023: Forcing absolute x/y axes to exist.
[     8.122] (--) evdev: HID 046a:0023: Found keys
[     8.122] (II) evdev: HID 046a:0023: Configuring as mouse
[     8.122] (II) evdev: HID 046a:0023: Configuring as keyboard
[     8.122] (II) evdev: HID 046a:0023: Adding scrollwheel support
[     8.122] (**) evdev: HID 046a:0023: YAxisMapping: buttons 4 and 5
[     8.122] (**) evdev: HID 046a:0023: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[     8.122] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.1/0003:046A:0023.0004/input/input19/event16"
[     8.122] (II) XINPUT: Adding extended input device "HID 046a:0023" (type: KEYBOARD, id 13)
[     8.122] (**) Option "xkb_rules" "evdev"
[     8.122] (**) Option "xkb_model" "pc105"
[     8.122] (**) Option "xkb_layout" "de"
[     8.122] (II) evdev: HID 046a:0023: initialized for relative axes.
[     8.122] (WW) evdev: HID 046a:0023: ignoring absolute axes.
[     8.122] (**) HID 046a:0023: (accel) keeping acceleration scheme 1
[     8.122] (**) HID 046a:0023: (accel) acceleration profile 0
[     8.122] (**) HID 046a:0023: (accel) acceleration factor: 2.000
[     8.122] (**) HID 046a:0023: (accel) acceleration threshold: 4
[     8.122] (II) config/udev: Adding input device SYNAPTICS Synaptics Large Touch Screen (/dev/input/event14)
[     8.122] (**) SYNAPTICS Synaptics Large Touch Screen: Applying InputClass "evdev touchscreen catchall"
[     8.122] (II) Using input driver 'evdev' for 'SYNAPTICS Synaptics Large Touch Screen'
[     8.122] (**) SYNAPTICS Synaptics Large Touch Screen: always reports core events
[     8.122] (**) evdev: SYNAPTICS Synaptics Large Touch Screen: Device: "/dev/input/event14"
[     8.176] (--) evdev: SYNAPTICS Synaptics Large Touch Screen: Vendor 0x6cb Product 0xac3
[     8.176] (--) evdev: SYNAPTICS Synaptics Large Touch Screen: Found absolute axes
[     8.176] (--) evdev: SYNAPTICS Synaptics Large Touch Screen: Found absolute multitouch axes
[     8.176] (II) evdev: SYNAPTICS Synaptics Large Touch Screen: No buttons found, faking one.
[     8.176] (--) evdev: SYNAPTICS Synaptics Large Touch Screen: Found x and y absolute axes
[     8.176] (--) evdev: SYNAPTICS Synaptics Large Touch Screen: Found absolute touchscreen
[     8.176] (II) evdev: SYNAPTICS Synaptics Large Touch Screen: Configuring as touchscreen
[     8.176] (**) evdev: SYNAPTICS Synaptics Large Touch Screen: YAxisMapping: buttons 4 and 5
[     8.176] (**) evdev: SYNAPTICS Synaptics Large Touch Screen: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[     8.176] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.0/0003:06CB:0AC3.0001/input/input16/event14"
[     8.176] (II) XINPUT: Adding extended input device "SYNAPTICS Synaptics Large Touch Screen" (type: TOUCHSCREEN, id 14)
[     8.176] (II) evdev: SYNAPTICS Synaptics Large Touch Screen: initialized for absolute axes.
[     8.176] (**) SYNAPTICS Synaptics Large Touch Screen: (accel) keeping acceleration scheme 1
[     8.176] (**) SYNAPTICS Synaptics Large Touch Screen: (accel) acceleration profile 0
[     8.176] (**) SYNAPTICS Synaptics Large Touch Screen: (accel) acceleration factor: 2.000
[     8.176] (**) SYNAPTICS Synaptics Large Touch Screen: (accel) acceleration threshold: 4
[     8.176] (II) config/udev: Adding input device SYNAPTICS Synaptics Large Touch Screen (/dev/input/mouse2)
[     8.176] (II) No input driver specified, ignoring this device.
[     8.176] (II) This device may have been added with another device file.
[     8.176] (II) config/udev: Adding input device HDA Intel PCH Headphone Mic (/dev/input/event9)
[     8.176] (II) No input driver specified, ignoring this device.
[     8.176] (II) This device may have been added with another device file.
[     8.177] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
[     8.177] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[     8.177] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[     8.177] (**) AT Translated Set 2 keyboard: always reports core events
[     8.177] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event3"
[     8.177] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[     8.177] (--) evdev: AT Translated Set 2 keyboard: Found keys
[     8.177] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[     8.177] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"
[     8.177] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 15)
[     8.177] (**) Option "xkb_rules" "evdev"
[     8.177] (**) Option "xkb_model" "pc105"
[     8.177] (**) Option "xkb_layout" "de"
[     8.177] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event11)
[     8.177] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
[     8.177] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[     8.177] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[     8.177] (II) LoadModule: "synaptics"
[     8.177] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[     8.178] (II) Module synaptics: vendor="X.Org Foundation"
[     8.178] 	compiled for 1.16.0, module version = 1.8.99
[     8.178] 	Module class: X.Org XInput Driver
[     8.178] 	ABI class: X.Org XInput driver, version 21.0
[     8.178] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[     8.178] (**) SynPS/2 Synaptics TouchPad: always reports core events
[     8.178] (**) Option "Device" "/dev/input/event11"
[     8.216] (II) synaptics: SynPS/2 Synaptics TouchPad: found clickpad property
[     8.216] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1386 - 5660 (res 42)
[     8.216] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1252 - 4646 (res 44)
[     8.216] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[     8.216] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[     8.216] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left double triple
[     8.216] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[     8.216] (**) Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
[     8.216] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[     8.216] (**) SynPS/2 Synaptics TouchPad: always reports core events
[     8.252] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event11"
[     8.252] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 16)
[     8.252] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[     8.252] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
[     8.252] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.037
[     8.252] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[     8.252] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[     8.252] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[     8.252] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[     8.252] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[     8.252] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[     8.252] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
[     8.253] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event10)
[     8.253] (**) Dell WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[     8.253] (II) Using input driver 'evdev' for 'Dell WMI hotkeys'
[     8.253] (**) Dell WMI hotkeys: always reports core events
[     8.253] (**) evdev: Dell WMI hotkeys: Device: "/dev/input/event10"
[     8.253] (--) evdev: Dell WMI hotkeys: Vendor 0 Product 0
[     8.253] (--) evdev: Dell WMI hotkeys: Found keys
[     8.253] (II) evdev: Dell WMI hotkeys: Configuring as keyboard
[     8.253] (**) Option "config_info" "udev:/sys/devices/virtual/input/input13/event10"
[     8.253] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 17)
[     8.253] (**) Option "xkb_rules" "evdev"
[     8.253] (**) Option "xkb_model" "pc105"
[     8.253] (**) Option "xkb_layout" "de"
[     8.279] (II) intel(G0): EDID vendor "SHP", prod id 5112
[     8.279] (II) intel(G0): Printing DDC gathered Modelines:
[     8.279] (II) intel(G0): Modeline "3200x1800"x0.0  373.25  3200 3248 3280 3360  1800 1803 1808 1852 -hsync -vsync (111.1 kHz eP)
[     8.320] reporting 4 6 30 248
[     8.340] have a master to look out for
[     8.340] adjust shatters 0 3200
[     8.344] need to create shared pixmap 1(II) intel(G0): switch to mode 3200x1800@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[     8.837] have a master to look out for
[     8.837] adjust shatters 0 3200
[     8.839] need to create shared pixmap 1(II) intel(G0): switch to mode 1920x1080@60.0 on DP1 using pipe 1, position (0, 0), rotation normal, reflection none
[     8.920] reporting 4 6 30 248
[     8.960] reporting 4 6 30 248
[     8.960] have a master to look out for
[     8.980] need to create shared pixmap 1reporting 4 6 30 248
[     9.540] have a master to look out for
[     9.540] adjust shatters 0 3200
[     9.543] need to create shared pixmap 1(II) intel(G0): switch to mode 3200x1800@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[    10.399] reporting 4 6 30 248
[    10.570] reporting 4 6 30 248
[    10.600] reporting 4 6 30 248
[    10.601] reporting 4 6 30 248
[    10.692] reporting 4 6 30 248
[    10.888] have a master to look out for
[    10.888] adjust shatters 0 5120
[    10.890] need to create shared pixmap 1(II) intel(G0): switch to mode 1920x1080@60.0 on DP1 using pipe 1, position (3200, 0), rotation normal, reflection none
[    10.920] reporting 4 6 30 248
[    10.920] reporting 4 6 30 248
[    10.921] reporting 4 6 30 248
[    10.921] reporting 4 6 30 248
[    10.921] reporting 4 6 30 248
[    10.921] reporting 4 6 30 248
[    10.921] reporting 4 6 30 248
[    10.921] reporting 4 6 30 248
[    10.960] reporting 4 6 30 248
[    11.008] reporting 4 6 30 248
[    11.048] reporting 4 6 30 248
[    11.061] reporting 4 6 30 248
[    11.104] reporting 4 6 30 248
[    11.144] reporting 4 6 30 248
[    11.184] reporting 4 6 30 248
[    11.185] reporting 4 6 30 248
[    11.185] reporting 4 6 30 248
[    11.228] reporting 4 6 30 248
[    11.268] reporting 4 6 30 248
[    11.308] reporting 4 6 30 248
[    11.308] reporting 4 6 30 248
[    11.309] reporting 4 6 30 248
[    11.312] reporting 4 6 30 248
[    11.313] reporting 4 6 30 248
[    11.313] reporting 4 6 30 248
[    11.313] reporting 4 6 30 248
[    11.313] reporting 4 6 30 248
[    11.356] reporting 4 6 30 248
[    11.408] reporting 4 6 30 248
[    11.456] reporting 4 6 30 248
[    11.466] reporting 4 6 30 248
[    11.576] reporting 4 6 30 248
[    13.351] reporting 4 6 30 248
[    13.411] reporting 4 6 30 248
[    13.413] reporting 4 6 30 248
[    13.431] reporting 4 6 30 248
[    13.468] reporting 4 6 30 248
[    13.508] reporting 4 6 30 248
[    13.510] reporting 4 6 30 248
[    13.511] reporting 4 6 30 248
[    13.511] reporting 4 6 30 248
[    13.511] reporting 4 6 30 248
[    13.518] reporting 4 6 30 248
[    13.572] (II) XKB: reuse xkmfile /var/lib/xkb/server-808BBA3D4C227BDB44C370226C34E44C5D69A4A9.xkm
[    13.608] reporting 4 6 30 248
[    13.608] reporting 4 6 30 248
[    13.652] reporting 4 6 30 248
[    13.653] reporting 4 6 30 248
[    13.700] reporting 4 6 30 248
[    13.740] reporting 4 6 30 248
[    13.741] reporting 4 6 30 248
[    13.757] reporting 4 6 30 248
[    13.774] reporting 4 6 30 248
[    13.777] have a master to look out for
[    13.815] need to create shared pixmap 1(II) intel(G0): switch to mode 3200x1800@60.0 on eDP1 using pipe 1, position (0, 0), rotation normal, reflection none
[    14.872] have a master to look out for
[    14.906] need to create shared pixmap 1(II) intel(G0): switch to mode 1920x1080@60.0 on DP1 using pipe 0, position (3200, 0), rotation normal, reflection none
[    14.946] reporting 4 6 30 248
[    14.946] reporting 4 6 30 248
[    14.946] reporting 4 6 30 248
[    14.946] reporting 4 6 30 248
[    14.946] reporting 4 6 30 248
[    14.947] reporting 4 6 30 248
[    14.947] reporting 4 6 30 248
[    14.947] reporting 4 6 30 248
[    14.947] reporting 4 6 30 248
[    14.948] reporting 4 6 30 248
[    14.948] reporting 4 6 30 248
[    14.951] reporting 4 6 30 248
[    14.953] reporting 4 6 30 248
[    14.953] reporting 4 6 30 248
[    14.953] reporting 4 6 30 248
[    14.954] reporting 4 6 30 248
[    14.954] reporting 4 6 30 248
[    14.954] reporting 4 6 30 248
[    14.954] reporting 4 6 30 248
[    14.954] reporting 4 6 30 248
[    14.955] reporting 4 6 30 248
[    14.955] reporting 4 6 30 248
[    14.955] reporting 4 6 30 248
[    14.955] reporting 4 6 30 248
[    14.955] reporting 4 6 30 248
[    14.956] reporting 4 6 30 248
[    14.956] reporting 4 6 30 248
[    14.956] reporting 4 6 30 248
[    14.957] reporting 4 6 30 248
[    14.957] reporting 4 6 30 248
[    14.958] reporting 4 6 30 248
[    14.958] reporting 4 6 30 248
[    14.959] reporting 4 6 30 248
[    14.959] reporting 4 6 30 248
[    14.959] reporting 4 6 30 248
[    14.960] reporting 4 6 30 248
[    14.963] reporting 4 6 30 248
[    14.967] reporting 4 6 30 248
[    15.020] reporting 4 6 30 248
[    15.060] reporting 4 6 30 248
[    15.104] reporting 4 6 30 248
[    15.105] reporting 4 6 30 248
[    15.108] reporting 4 6 30 248
[    15.110] have a master to look out for
[    15.146] need to create shared pixmap 1(II) intel(G0): switch to mode 3200x1800@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[    16.235] have a master to look out for
[    16.272] need to create shared pixmap 1(II) intel(G0): switch to mode 1920x1080@60.0 on DP1 using pipe 1, position (3200, 0), rotation normal, reflection none
[    16.310] reporting 4 6 30 248
[    16.310] reporting 4 6 30 248
[    16.310] reporting 4 6 30 248
[    16.310] reporting 4 6 30 248
[    16.310] reporting 4 6 30 248
[    16.314] reporting 4 6 30 248
[    16.314] reporting 4 6 30 248
[    16.314] reporting 4 6 30 248
[    16.314] reporting 4 6 30 248
[    16.314] reporting 4 6 30 248
[    16.315] reporting 4 6 30 248
[    16.315] reporting 4 6 30 248
[    16.315] reporting 4 6 30 248
[    16.315] reporting 4 6 30 248
[    16.315] reporting 4 6 30 248
[    16.316] reporting 4 6 30 248
[    16.316] reporting 4 6 30 248
[    16.316] reporting 4 6 30 248
[    16.316] reporting 4 6 30 248
[    16.316] reporting 4 6 30 248
[    16.316] reporting 4 6 30 248
[    16.316] reporting 4 6 30 248
[    16.316] reporting 4 6 30 248
[    16.316] reporting 4 6 30 248
[    16.316] reporting 4 6 30 248
[    16.317] reporting 4 6 30 248
[    16.317] reporting 4 6 30 248
[    16.317] reporting 4 6 30 248
[    16.317] reporting 4 6 30 248
[    16.318] reporting 4 6 30 248
[    16.318] reporting 4 6 30 248
[    16.318] reporting 4 6 30 248
[    16.318] reporting 4 6 30 248
[    16.319] reporting 4 6 30 248
[    16.319] reporting 4 6 30 248
[    16.319] reporting 4 6 30 248
[    16.320] reporting 4 6 30 248
[    16.320] reporting 4 6 30 248
[    16.321] reporting 4 6 30 248
[    16.321] reporting 4 6 30 248
[    16.322] reporting 4 6 30 248
[    16.322] reporting 4 6 30 248
[    16.322] reporting 4 6 30 248
[    16.323] reporting 4 6 30 248
[    16.324] reporting 4 6 30 248
[    16.324] reporting 4 6 30 248
[    16.324] reporting 4 6 30 248
[    16.324] reporting 4 6 30 248
[    16.324] reporting 4 6 30 248
[    16.324] reporting 4 6 30 248
[    16.325] reporting 4 6 30 248
[    16.325] reporting 4 6 30 248
[    16.325] reporting 4 6 30 248
[    16.325] reporting 4 6 30 248
[    16.326] reporting 4 6 30 248
[    16.328] reporting 4 6 30 248
[    16.368] reporting 4 6 30 248
[    16.408] reporting 4 6 30 248
[    16.448] reporting 4 6 30 248
[    16.449] reporting 4 6 30 248
[    16.450] reporting 4 6 30 248
[    16.453] have a master to look out for
[    16.480] need to create shared pixmap 1(II) intel(G0): switch to mode 1920x1080@60.0 on DP1 using pipe 0, position (3200, 0), rotation normal, reflection none
[    16.990] have a master to look out for
[    17.016] need to create shared pixmap 1(II) intel(G0): switch to mode 3200x1800@60.0 on eDP1 using pipe 1, position (0, 0), rotation normal, reflection none
[    17.774] reporting 4 6 30 248
[    17.774] reporting 4 6 30 248
[    17.774] reporting 4 6 30 248
[    17.774] reporting 4 6 30 248
[    17.774] reporting 4 6 30 248
[    17.774] reporting 4 6 30 248
[    17.774] reporting 4 6 30 248
[    17.774] reporting 4 6 30 248
[    17.774] reporting 4 6 30 248
[    17.774] reporting 4 6 30 248
[    17.775] reporting 4 6 30 248
[    17.775] reporting 4 6 30 248
[    17.775] reporting 4 6 30 248
[    17.775] reporting 4 6 30 248
[    17.775] reporting 4 6 30 248
[    17.776] reporting 4 6 30 248
[    17.776] reporting 4 6 30 248
[    17.776] reporting 4 6 30 248
[    17.776] reporting 4 6 30 248
[    17.776] reporting 4 6 30 248
[    17.776] reporting 4 6 30 248
[    17.776] reporting 4 6 30 248
[    17.776] reporting 4 6 30 248
[    17.776] reporting 4 6 30 248
[    17.776] reporting 4 6 30 248
[    17.777] reporting 4 6 30 248
[    17.777] reporting 4 6 30 248
[    17.777] reporting 4 6 30 248
[    17.777] reporting 4 6 30 248
[    17.777] reporting 4 6 30 248
[    17.778] reporting 4 6 30 248
[    17.778] reporting 4 6 30 248
[    17.778] reporting 4 6 30 248
[    17.778] reporting 4 6 30 248
[    17.778] reporting 4 6 30 248
[    17.780] reporting 4 6 30 248
[    17.780] reporting 4 6 30 248
[    17.780] reporting 4 6 30 248
[    17.781] reporting 4 6 30 248
[    17.781] reporting 4 6 30 248
[    17.781] reporting 4 6 30 248
[    17.782] reporting 4 6 30 248
[    17.782] reporting 4 6 30 248
[    17.782] reporting 4 6 30 248
[    17.782] reporting 4 6 30 248
[    17.782] reporting 4 6 30 248
[    17.782] reporting 4 6 30 248
[    17.782] reporting 4 6 30 248
[    17.782] reporting 4 6 30 248
[    17.782] reporting 4 6 30 248
[    17.783] reporting 4 6 30 248
[    17.783] reporting 4 6 30 248
[    17.783] reporting 4 6 30 248
[    17.783] reporting 4 6 30 248
[    17.783] reporting 4 6 30 248
[    17.783] reporting 4 6 30 248
[    17.828] reporting 4 6 30 248
[    17.868] reporting 4 6 30 248
[    17.908] reporting 4 6 30 248
[    17.911] reporting 4 6 30 248
[    17.913] reporting 4 6 30 248
[    17.914] reporting 4 6 30 248
[    17.918] reporting 4 6 30 248
[    17.924] have a master to look out for
[    17.956] need to create shared pixmap 1(II) intel(G0): switch to mode 3200x1800@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[    19.031] have a master to look out for
[    19.057] need to create shared pixmap 1(II) intel(G0): switch to mode 1920x1080@60.0 on DP1 using pipe 1, position (3200, 0), rotation normal, reflection none
[    19.107] reporting 4 6 30 248
[    19.107] reporting 4 6 30 248
[    19.107] reporting 4 6 30 248
[    19.107] reporting 4 6 30 248
[    19.107] reporting 4 6 30 248
[    19.108] reporting 4 6 30 248
[    19.108] reporting 4 6 30 248
[    19.108] reporting 4 6 30 248
[    19.108] reporting 4 6 30 248
[    19.108] reporting 4 6 30 248
[    19.111] reporting 4 6 30 248
[    19.111] reporting 4 6 30 248
[    19.111] reporting 4 6 30 248
[    19.111] reporting 4 6 30 248
[    19.111] reporting 4 6 30 248
[    19.114] reporting 4 6 30 248
[    19.114] reporting 4 6 30 248
[    19.114] reporting 4 6 30 248
[    19.114] reporting 4 6 30 248
[    19.114] reporting 4 6 30 248
[    19.115] reporting 4 6 30 248
[    19.115] reporting 4 6 30 248
[    19.115] reporting 4 6 30 248
[    19.115] reporting 4 6 30 248
[    19.115] reporting 4 6 30 248
[    19.116] reporting 4 6 30 248
[    19.116] reporting 4 6 30 248
[    19.116] reporting 4 6 30 248
[    19.116] reporting 4 6 30 248
[    19.116] reporting 4 6 30 248
[    19.119] reporting 4 6 30 248
[    19.119] reporting 4 6 30 248
[    19.119] reporting 4 6 30 248
[    19.119] reporting 4 6 30 248
[    19.119] reporting 4 6 30 248
[    19.122] reporting 4 6 30 248
[    19.122] reporting 4 6 30 248
[    19.122] reporting 4 6 30 248
[    19.125] reporting 4 6 30 248
[    19.125] reporting 4 6 30 248
[    19.125] reporting 4 6 30 248
[    19.126] reporting 4 6 30 248
[    19.126] reporting 4 6 30 248
[    19.126] reporting 4 6 30 248
[    19.126] reporting 4 6 30 248
[    19.126] reporting 4 6 30 248
[    19.126] reporting 4 6 30 248
[    19.127] reporting 4 6 30 248
[    19.127] reporting 4 6 30 248
[    19.127] reporting 4 6 30 248
[    19.127] reporting 4 6 30 248
[    19.127] reporting 4 6 30 248
[    19.127] reporting 4 6 30 248
[    19.127] reporting 4 6 30 248
[    19.127] reporting 4 6 30 248
[    19.127] reporting 4 6 30 248
[    19.129] reporting 4 6 30 248
[    19.168] reporting 4 6 30 248
[    19.169] reporting 4 6 30 248
[    19.169] reporting 4 6 30 248
[    19.170] reporting 4 6 30 248
[    19.170] reporting 4 6 30 248
[    19.208] reporting 4 6 30 248
[    19.248] reporting 4 6 30 248
[    19.249] reporting 4 6 30 248
[    19.256] reporting 4 6 30 248
[    19.257] reporting 4 6 30 248
[    19.259] have a master to look out for
[    19.292] need to create shared pixmap 1(II) intel(G0): switch to mode 3200x1800@60.0 on eDP1 using pipe 1, position (0, 0), rotation normal, reflection none
[    20.343] have a master to look out for
[    20.369] need to create shared pixmap 1(II) intel(G0): switch to mode 1920x1080@60.0 on DP1 using pipe 0, position (3200, 0), rotation normal, reflection none
[    20.418] reporting 4 6 30 248
[    20.418] reporting 4 6 30 248
[    20.418] reporting 4 6 30 248
[    20.418] reporting 4 6 30 248
[    20.418] reporting 4 6 30 248
[    20.419] reporting 4 6 30 248
[    20.419] reporting 4 6 30 248
[    20.419] reporting 4 6 30 248
[    20.419] reporting 4 6 30 248
[    20.419] reporting 4 6 30 248
[    20.420] reporting 4 6 30 248
[    20.420] reporting 4 6 30 248
[    20.420] reporting 4 6 30 248
[    20.420] reporting 4 6 30 248
[    20.420] reporting 4 6 30 248
[    20.420] reporting 4 6 30 248
[    20.420] reporting 4 6 30 248
[    20.420] reporting 4 6 30 248
[    20.420] reporting 4 6 30 248
[    20.420] reporting 4 6 30 248
[    20.421] reporting 4 6 30 248
[    20.421] reporting 4 6 30 248
[    20.421] reporting 4 6 30 248
[    20.421] reporting 4 6 30 248
[    20.421] reporting 4 6 30 248
[    20.422] reporting 4 6 30 248
[    20.422] reporting 4 6 30 248
[    20.422] reporting 4 6 30 248
[    20.422] reporting 4 6 30 248
[    20.422] reporting 4 6 30 248
[    20.422] reporting 4 6 30 248
[    20.422] reporting 4 6 30 248
[    20.422] reporting 4 6 30 248
[    20.422] reporting 4 6 30 248
[    20.422] reporting 4 6 30 248
[    20.423] reporting 4 6 30 248
[    20.423] reporting 4 6 30 248
[    20.423] reporting 4 6 30 248
[    20.423] reporting 4 6 30 248
[    20.423] reporting 4 6 30 248
[    20.423] reporting 4 6 30 248
[    20.424] reporting 4 6 30 248
[    20.424] reporting 4 6 30 248
[    20.424] reporting 4 6 30 248
[    20.424] reporting 4 6 30 248
[    20.424] reporting 4 6 30 248
[    20.424] reporting 4 6 30 248
[    20.424] reporting 4 6 30 248
[    20.424] reporting 4 6 30 248
[    20.424] reporting 4 6 30 248
[    20.425] reporting 4 6 30 248
[    20.425] reporting 4 6 30 248
[    20.425] reporting 4 6 30 248
[    20.425] reporting 4 6 30 248
[    20.425] reporting 4 6 30 248
[    20.425] reporting 4 6 30 248
[    20.426] reporting 4 6 30 248
[    20.426] reporting 4 6 30 248
[    20.427] reporting 4 6 30 248
[    20.427] reporting 4 6 30 248
[    20.427] reporting 4 6 30 248
[    20.427] reporting 4 6 30 248
[    20.428] reporting 4 6 30 248
[    20.428] reporting 4 6 30 248
[    20.428] reporting 4 6 30 248
[    20.428] reporting 4 6 30 248
[    20.428] reporting 4 6 30 248
[    20.429] reporting 4 6 30 248
[    20.429] reporting 4 6 30 248
[    20.429] reporting 4 6 30 248
[    20.468] reporting 4 6 30 248
[    20.508] reporting 4 6 30 248
[    20.548] reporting 4 6 30 248
[    20.549] reporting 4 6 30 248
[    20.550] reporting 4 6 30 248
[    20.592] reporting 4 6 30 248
[    20.593] reporting 4 6 30 248
[    20.595] have a master to look out for
[    20.622] need to create shared pixmap 1(II) intel(G0): switch to mode 3200x1800@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[    21.671] have a master to look out for
[    21.698] need to create shared pixmap 1(II) intel(G0): switch to mode 1920x1080@60.0 on DP1 using pipe 1, position (3200, 0), rotation normal, reflection none
[    21.746] reporting 4 6 30 248
[    21.746] reporting 4 6 30 248
[    21.746] reporting 4 6 30 248
[    21.746] reporting 4 6 30 248
[    21.746] reporting 4 6 30 248
[    21.747] reporting 4 6 30 248
[    21.747] reporting 4 6 30 248
[    21.747] reporting 4 6 30 248
[    21.747] reporting 4 6 30 248
[    21.747] reporting 4 6 30 248
[    21.748] reporting 4 6 30 248
[    21.748] reporting 4 6 30 248
[    21.748] reporting 4 6 30 248
[    21.748] reporting 4 6 30 248
[    21.748] reporting 4 6 30 248
[    21.749] reporting 4 6 30 248
[    21.749] reporting 4 6 30 248
[    21.749] reporting 4 6 30 248
[    21.749] reporting 4 6 30 248
[    21.749] reporting 4 6 30 248
[    21.750] reporting 4 6 30 248
[    21.750] reporting 4 6 30 248
[    21.750] reporting 4 6 30 248
[    21.750] reporting 4 6 30 248
[    21.750] reporting 4 6 30 248
[    21.751] reporting 4 6 30 248
[    21.751] reporting 4 6 30 248
[    21.751] reporting 4 6 30 248
[    21.751] reporting 4 6 30 248
[    21.751] reporting 4 6 30 248
[    21.752] reporting 4 6 30 248
[    21.752] reporting 4 6 30 248
[    21.752] reporting 4 6 30 248
[    21.752] reporting 4 6 30 248
[    21.752] reporting 4 6 30 248
[    21.753] reporting 4 6 30 248
[    21.753] reporting 4 6 30 248
[    21.753] reporting 4 6 30 248
[    21.753] reporting 4 6 30 248
[    21.753] reporting 4 6 30 248
[    21.753] reporting 4 6 30 248
[    21.754] reporting 4 6 30 248
[    21.754] reporting 4 6 30 248
[    21.754] reporting 4 6 30 248
[    21.754] reporting 4 6 30 248
[    21.754] reporting 4 6 30 248
[    21.754] reporting 4 6 30 248
[    21.755] reporting 4 6 30 248
[    21.755] reporting 4 6 30 248
[    21.755] reporting 4 6 30 248
[    21.755] reporting 4 6 30 248
[    21.756] reporting 4 6 30 248
[    21.756] reporting 4 6 30 248
[    21.756] reporting 4 6 30 248
[    21.756] reporting 4 6 30 248
[    21.756] reporting 4 6 30 248
[    21.757] reporting 4 6 30 248
[    21.759] reporting 4 6 30 248
[    21.759] reporting 4 6 30 248
[    21.759] reporting 4 6 30 248
[    21.759] reporting 4 6 30 248
[    21.760] reporting 4 6 30 248
[    21.760] reporting 4 6 30 248
[    21.760] reporting 4 6 30 248
[    21.762] reporting 4 6 30 248
[    21.762] reporting 4 6 30 248
[    21.762] reporting 4 6 30 248
[    21.762] reporting 4 6 30 248
[    21.762] reporting 4 6 30 248
[    21.762] reporting 4 6 30 248
[    21.762] reporting 4 6 30 248
[    21.763] reporting 4 6 30 248
[    21.763] reporting 4 6 30 248
[    21.763] reporting 4 6 30 248
[    21.763] reporting 4 6 30 248
[    21.763] reporting 4 6 30 248
[    21.764] reporting 4 6 30 248
[    21.764] reporting 4 6 30 248
[    21.764] reporting 4 6 30 248
[    21.764] reporting 4 6 30 248
[    21.765] reporting 4 6 30 248
[    21.765] reporting 4 6 30 248
[    21.765] reporting 4 6 30 248
[    21.765] reporting 4 6 30 248
[    21.766] reporting 4 6 30 248
[    21.766] reporting 4 6 30 248
[    21.804] reporting 4 6 30 248
[    21.804] reporting 4 6 30 248
[    21.844] reporting 4 6 30 248
[    21.844] reporting 4 6 30 248
[    21.884] reporting 4 6 30 248
[    21.884] reporting 4 6 30 248
[    21.884] reporting 4 6 30 248
[    21.885] reporting 4 6 30 248
[    21.885] reporting 4 6 30 248
[    21.885] reporting 4 6 30 248
[    21.886] reporting 4 6 30 248
[    21.886] reporting 4 6 30 248
[    21.886] reporting 4 6 30 248
[    21.886] reporting 4 6 30 248
[    21.886] reporting 4 6 30 248
[    21.887] reporting 4 6 30 248
[    21.887] reporting 4 6 30 248
[    21.888] reporting 4 6 30 248
[    21.888] have a master to look out for
[    21.922] need to create shared pixmap 1(II) intel(G0): switch to mode 1920x1080@60.0 on DP1 using pipe 0, position (3200, 0), rotation normal, reflection none
[    22.422] have a master to look out for
[    22.449] need to create shared pixmap 1(II) intel(G0): switch to mode 3200x1800@60.0 on eDP1 using pipe 1, position (0, 0), rotation normal, reflection none
[    23.256] reporting 4 6 30 248
[    23.258] reporting 4 6 30 248
[    23.258] reporting 4 6 30 248
[    23.258] reporting 4 6 30 248
[    23.258] reporting 4 6 30 248
[    23.303] reporting 4 6 30 248
[    23.303] reporting 4 6 30 248
[    23.303] reporting 4 6 30 248
[    23.303] reporting 4 6 30 248
[    23.303] reporting 4 6 30 248
[    23.306] reporting 4 6 30 248
[    23.306] reporting 4 6 30 248
[    23.306] reporting 4 6 30 248
[    23.306] reporting 4 6 30 248
[    23.306] reporting 4 6 30 248
[    23.307] reporting 4 6 30 248
[    23.307] reporting 4 6 30 248
[    23.307] reporting 4 6 30 248
[    23.307] reporting 4 6 30 248
[    23.307] reporting 4 6 30 248
[    23.307] reporting 4 6 30 248
[    23.307] reporting 4 6 30 248
[    23.307] reporting 4 6 30 248
[    23.307] reporting 4 6 30 248
[    23.307] reporting 4 6 30 248
[    23.308] reporting 4 6 30 248
[    23.308] reporting 4 6 30 248
[    23.308] reporting 4 6 30 248
[    23.308] reporting 4 6 30 248
[    23.308] reporting 4 6 30 248
[    23.308] reporting 4 6 30 248
[    23.308] reporting 4 6 30 248
[    23.308] reporting 4 6 30 248
[    23.308] reporting 4 6 30 248
[    23.308] reporting 4 6 30 248
[    23.319] reporting 4 6 30 248
[    23.319] reporting 4 6 30 248
[    23.319] reporting 4 6 30 248
[    23.325] reporting 4 6 30 248
[    23.325] reporting 4 6 30 248
[    23.325] reporting 4 6 30 248
[    23.325] reporting 4 6 30 248
[    23.325] reporting 4 6 30 248
[    23.325] reporting 4 6 30 248
[    23.325] reporting 4 6 30 248
[    23.325] reporting 4 6 30 248
[    23.325] reporting 4 6 30 248
[    23.326] reporting 4 6 30 248
[    23.326] reporting 4 6 30 248
[    23.326] reporting 4 6 30 248
[    23.326] reporting 4 6 30 248
[    23.326] reporting 4 6 30 248
[    23.326] reporting 4 6 30 248
[    23.326] reporting 4 6 30 248
[    23.326] reporting 4 6 30 248
[    23.327] reporting 4 6 30 248
[    23.327] reporting 4 6 30 248
[    23.327] reporting 4 6 30 248
[    23.327] reporting 4 6 30 248
[    23.327] reporting 4 6 30 248
[    23.328] reporting 4 6 30 248
[    23.331] reporting 4 6 30 248
[    23.331] reporting 4 6 30 248
[    23.331] reporting 4 6 30 248
[    23.331] reporting 4 6 30 248
[    23.331] reporting 4 6 30 248
[    23.331] reporting 4 6 30 248
[    23.331] reporting 4 6 30 248
[    23.331] reporting 4 6 30 248
[    23.332] reporting 4 6 30 248
[    23.332] reporting 4 6 30 248
[    23.332] reporting 4 6 30 248
[    23.332] reporting 4 6 30 248
[    23.332] reporting 4 6 30 248
[    23.332] reporting 4 6 30 248
[    23.332] reporting 4 6 30 248
[    23.333] reporting 4 6 30 248
[    23.333] reporting 4 6 30 248
[    23.333] reporting 4 6 30 248
[    23.333] reporting 4 6 30 248
[    23.333] reporting 4 6 30 248
[    23.333] reporting 4 6 30 248
[    23.333] reporting 4 6 30 248
[    23.333] reporting 4 6 30 248
[    23.334] reporting 4 6 30 248
[    23.334] reporting 4 6 30 248
[    23.334] reporting 4 6 30 248
[    23.334] reporting 4 6 30 248
[    23.334] reporting 4 6 30 248
[    23.334] reporting 4 6 30 248
[    23.334] reporting 4 6 30 248
[    23.335] reporting 4 6 30 248
[    23.335] reporting 4 6 30 248
[    23.335] reporting 4 6 30 248
[    23.336] reporting 4 6 30 248
[    23.336] reporting 4 6 30 248
[    23.376] reporting 4 6 30 248
[    23.416] reporting 4 6 30 248
[    23.419] reporting 4 6 30 248
[    23.460] reporting 4 6 30 248
[    23.460] reporting 4 6 30 248
[    23.460] reporting 4 6 30 248
[    23.461] reporting 4 6 30 248
[    23.461] reporting 4 6 30 248
[    23.461] reporting 4 6 30 248
[    23.462] reporting 4 6 30 248
[    23.462] reporting 4 6 30 248
[    23.462] reporting 4 6 30 248
[    23.462] reporting 4 6 30 248
[    23.463] reporting 4 6 30 248
[    23.465] reporting 4 6 30 248
[    23.466] have a master to look out for
[    23.494] need to create shared pixmap 1(II) intel(G0): switch to mode 1920x1080@60.0 on DP1 using pipe 1, position (3200, 0), rotation normal, reflection none
[    24.044] have a master to look out for
[    24.071] need to create shared pixmap 1(II) intel(G0): switch to mode 3200x1800@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[    24.796] reporting 4 6 23 195
[    24.797] reporting 4 6 23 195
[    24.797] reporting 4 6 23 195
[    24.797] reporting 4 6 23 195
[    24.797] reporting 4 6 23 195
[    24.798] reporting 4 6 23 195
[    24.798] reporting 4 6 23 195
[    24.798] reporting 4 6 23 195
[    24.798] reporting 4 6 23 195
[    24.798] reporting 4 6 23 195
[    24.798] reporting 4 6 23 195
[    24.798] reporting 4 6 23 195
[    24.798] reporting 4 6 23 195
[    24.798] reporting 4 6 23 195
[    24.799] reporting 4 6 23 195
[    24.799] reporting 4 6 23 195
[    24.799] reporting 4 6 23 195
[    24.799] reporting 4 6 23 195
[    24.799] reporting 4 6 23 195
[    24.799] reporting 4 6 23 195
[    24.800] reporting 4 6 23 195
[    24.800] reporting 4 6 23 195
[    24.800] reporting 4 6 23 195
[    24.800] reporting 4 6 23 195
[    24.800] reporting 4 6 23 195
[    24.800] reporting 4 6 23 195
[    24.800] reporting 4 6 23 195
[    24.800] reporting 4 6 23 195
[    24.800] reporting 4 6 23 195
[    24.801] reporting 4 6 23 195
[    24.801] reporting 4 6 23 195
[    24.801] reporting 4 6 23 195
[    24.801] reporting 4 6 23 195
[    24.801] reporting 4 6 23 195
[    24.802] reporting 4 6 23 195
[    24.803] reporting 4 6 23 195
[    24.803] reporting 4 6 23 195
[    24.803] reporting 4 6 23 195
[    24.803] reporting 4 6 23 195
[    24.803] reporting 4 6 23 195
[    24.803] reporting 4 6 23 195
[    24.803] reporting 4 6 23 195
[    24.804] reporting 4 6 23 195
[    24.804] reporting 4 6 23 195
[    24.804] reporting 4 6 23 195
[    24.804] reporting 4 6 23 195
[    24.804] reporting 4 6 23 195
[    24.805] reporting 4 6 23 195
[    24.805] reporting 4 6 23 195
[    24.805] reporting 4 6 23 195
[    24.806] reporting 4 6 23 195
[    24.806] reporting 4 6 23 195
[    24.806] reporting 4 6 23 195
[    24.806] reporting 4 6 23 195
[    24.806] reporting 4 6 23 195
[    24.806] reporting 4 6 23 195
[    24.807] reporting 4 6 23 195
[    24.807] reporting 4 6 23 195
[    24.807] reporting 4 6 23 195
[    24.807] reporting 4 6 23 195
[    24.807] reporting 4 6 23 195
[    24.807] reporting 4 6 23 195
[    24.807] reporting 4 6 23 195
[    24.808] reporting 4 6 23 195
[    24.808] reporting 4 6 23 195
[    24.809] reporting 4 6 23 195
[    24.809] reporting 4 6 23 195
[    24.809] reporting 4 6 23 195
[    24.810] reporting 4 6 23 195
[    24.810] reporting 4 6 23 195
[    24.810] reporting 4 6 23 195
[    24.810] reporting 4 6 23 195
[    24.811] reporting 4 6 23 195
[    24.811] reporting 4 6 23 195
[    24.811] reporting 4 6 23 195
[    24.811] reporting 4 6 23 195
[    24.811] reporting 4 6 23 195
[    24.811] reporting 4 6 23 195
[    24.812] reporting 4 6 23 195
[    24.812] reporting 4 6 23 195
[    24.812] reporting 4 6 23 195
[    24.813] reporting 4 6 23 195
[    24.813] reporting 4 6 23 195
[    24.813] reporting 4 6 23 195
[    24.813] reporting 4 6 23 195
[    24.813] reporting 4 6 23 195
[    24.814] reporting 4 6 23 195
[    24.814] reporting 4 6 23 195
[    24.814] reporting 4 6 23 195
[    24.814] reporting 4 6 23 195
[    24.814] reporting 4 6 23 195
[    24.814] reporting 4 6 23 195
[    24.814] reporting 4 6 23 195
[    24.815] reporting 4 6 23 195
[    24.815] reporting 4 6 23 195
[    24.815] reporting 4 6 23 195
[    24.815] reporting 4 6 23 195
[    24.815] reporting 4 6 23 195
[    24.815] reporting 4 6 23 195
[    24.815] reporting 4 6 23 195
[    24.815] reporting 4 6 23 195
[    24.816] reporting 4 6 23 195
[    24.816] reporting 4 6 23 195
[    24.817] reporting 4 6 23 195
[    24.818] reporting 4 6 23 195
[    24.832] reporting 4 6 23 195
[    24.848] reporting 4 6 23 195
[    24.864] reporting 4 6 23 195
[    24.865] reporting 4 6 23 195
[    24.865] reporting 4 6 23 195
[    24.871] have a master to look out for
[    24.913] need to create shared pixmap 1have a master to look out for
[    24.936] need to create shared pixmap 1have a master to look out for
[    25.448] adjust shatters 0 3200
[    25.453] need to create shared pixmap 1(II) intel(G0): switch to mode 3200x1800@60.0 on eDP1 using pipe 1, position (0, 0), rotation normal, reflection none
[    26.230] reporting 4 6 22 186
[    26.230] reporting 4 6 22 186
[    26.230] reporting 4 6 22 186
[    26.230] reporting 4 6 22 186
[    26.230] reporting 4 6 22 186
[    26.233] reporting 4 6 22 186
[    26.233] reporting 4 6 22 186
[    26.233] reporting 4 6 22 186
[    26.233] reporting 4 6 22 186
[    26.233] reporting 4 6 22 186
[    26.234] reporting 4 6 22 186
[    26.234] reporting 4 6 22 186
[    26.234] reporting 4 6 22 186
[    26.234] reporting 4 6 22 186
[    26.234] reporting 4 6 22 186
[    26.234] reporting 4 6 22 186
[    26.234] reporting 4 6 22 186
[    26.234] reporting 4 6 22 186
[    26.234] reporting 4 6 22 186
[    26.234] reporting 4 6 22 186
[    26.235] reporting 4 6 22 186
[    26.235] reporting 4 6 22 186
[    26.235] reporting 4 6 22 186
[    26.235] reporting 4 6 22 186
[    26.235] reporting 4 6 22 186
[    26.236] reporting 4 6 22 186
[    26.236] reporting 4 6 22 186
[    26.236] reporting 4 6 22 186
[    26.236] reporting 4 6 22 186
[    26.236] reporting 4 6 22 186
[    26.237] reporting 4 6 22 186
[    26.237] reporting 4 6 22 186
[    26.237] reporting 4 6 22 186
[    26.237] reporting 4 6 22 186
[    26.237] reporting 4 6 22 186
[    26.238] reporting 4 6 22 186
[    26.238] reporting 4 6 22 186
[    26.238] reporting 4 6 22 186
[    26.238] reporting 4 6 22 186
[    26.238] reporting 4 6 22 186
[    26.238] reporting 4 6 22 186
[    26.238] reporting 4 6 22 186
[    26.238] reporting 4 6 22 186
[    26.238] reporting 4 6 22 186
[    26.238] reporting 4 6 22 186
[    26.239] reporting 4 6 22 186
[    26.239] reporting 4 6 22 186
[    26.239] reporting 4 6 22 186
[    26.239] reporting 4 6 22 186
[    26.239] reporting 4 6 22 186
[    26.239] reporting 4 6 22 186
[    26.239] reporting 4 6 22 186
[    26.239] reporting 4 6 22 186
[    26.239] reporting 4 6 22 186
[    26.240] reporting 4 6 22 186
[    26.240] reporting 4 6 22 186
[    26.240] reporting 4 6 22 186
[    26.241] reporting 4 6 22 186
[    26.241] reporting 4 6 22 186
[    26.241] reporting 4 6 22 186
[    26.242] reporting 4 6 22 186
[    26.242] reporting 4 6 22 186
[    26.242] reporting 4 6 22 186
[    26.242] reporting 4 6 22 186
[    26.242] reporting 4 6 22 186
[    26.242] reporting 4 6 22 186
[    26.243] reporting 4 6 22 186
[    26.243] reporting 4 6 22 186
[    26.243] reporting 4 6 22 186
[    26.243] reporting 4 6 22 186
[    26.243] reporting 4 6 22 186
[    26.243] reporting 4 6 22 186
[    26.245] reporting 4 6 22 186
[    26.245] reporting 4 6 22 186
[    26.245] reporting 4 6 22 186
[    26.245] reporting 4 6 22 186
[    26.245] reporting 4 6 22 186
[    26.245] reporting 4 6 22 186
[    26.245] reporting 4 6 22 186
[    26.245] reporting 4 6 22 186
[    26.246] reporting 4 6 22 186
[    26.246] reporting 4 6 22 186
[    26.246] reporting 4 6 22 186
[    26.246] reporting 4 6 22 186
[    26.246] reporting 4 6 22 186
[    26.246] reporting 4 6 22 186
[    26.246] reporting 4 6 22 186
[    26.246] reporting 4 6 22 186
[    26.246] reporting 4 6 22 186
[    26.246] reporting 4 6 22 186
[    26.248] reporting 4 6 22 186
[    26.248] reporting 4 6 22 186
[    26.248] reporting 4 6 22 186
[    26.248] reporting 4 6 22 186
[    26.248] reporting 4 6 22 186
[    26.248] reporting 4 6 22 186
[    26.249] reporting 4 6 22 186
[    26.249] reporting 4 6 22 186
[    26.249] reporting 4 6 22 186
[    26.249] reporting 4 6 22 186
[    26.249] reporting 4 6 22 186
[    26.249] reporting 4 6 22 186
[    26.249] reporting 4 6 22 186
[    26.249] reporting 4 6 22 186
[    26.249] reporting 4 6 22 186
[    26.249] reporting 4 6 22 186
[    26.249] reporting 4 6 22 186
[    26.249] reporting 4 6 22 186
[    26.384] reporting 4 6 22 186
[    26.400] reporting 4 6 22 186
[    26.416] reporting 4 6 22 186
[    26.417] reporting 4 6 22 186
[    26.423] reporting 4 6 22 186
[    26.423] reporting 4 6 22 186
[    26.424] reporting 4 6 22 186
[    26.424] reporting 4 6 22 186
[    26.425] reporting 4 6 22 186
[    26.427] reporting 4 6 22 186
[    26.428] reporting 4 6 22 186
[    26.428] reporting 4 6 22 186
[    26.428] reporting 4 6 22 186
[    26.428] reporting 4 6 22 186
[    26.429] reporting 4 6 22 186
[    26.448] reporting 4 6 22 186
[    26.464] reporting 4 6 22 186
[    26.480] reporting 4 6 22 186
[    26.482] reporting 4 6 22 186
[    26.483] reporting 4 6 22 186
[    26.504] reporting 4 6 22 186
[    26.528] reporting 4 6 22 186
[    26.544] reporting 4 6 22 186
[    26.545] reporting 4 6 22 186
[    26.545] reporting 4 6 22 186
[    26.547] reporting 4 6 22 186
[    26.592] reporting 4 6 22 186
[    26.612] reporting 4 6 22 186
[    26.628] reporting 4 6 22 186
[    26.644] reporting 4 6 22 186
[    26.645] reporting 4 6 22 186
[    26.646] reporting 4 6 22 186
[    26.668] reporting 4 6 22 186
[    26.684] reporting 4 6 22 186
[    26.700] reporting 4 6 22 186
[    26.701] reporting 4 6 22 186
[    26.704] reporting 4 6 22 186
[    26.705] reporting 4 6 22 186
[    26.728] reporting 4 6 22 186
[    26.744] reporting 4 6 22 186
[    26.768] reporting 4 6 22 186
[    26.769] reporting 4 6 22 186
[    26.769] reporting 4 6 22 186
[    26.792] reporting 4 6 22 186
[    26.808] reporting 4 6 22 186
[    26.824] reporting 4 6 22 186
[    26.825] reporting 4 6 22 186
[    26.826] reporting 4 6 22 186
[    26.828] reporting 4 6 22 186
[    26.828] reporting 4 6 22 186
[    26.848] reporting 4 6 22 186
[    26.864] reporting 4 6 22 186
[    26.880] reporting 4 6 22 186
[    26.881] reporting 4 6 22 186
[    26.882] reporting 4 6 22 186
[    26.904] reporting 4 6 22 186
[    26.920] reporting 4 6 22 186
[    26.936] reporting 4 6 22 186
[    26.938] reporting 4 6 22 186
[    26.940] reporting 4 6 22 186
[    26.941] reporting 4 6 22 186
[    26.960] reporting 4 6 22 186
[    26.976] reporting 4 6 22 186
[    26.992] reporting 4 6 22 186
[    26.993] reporting 4 6 22 186
[    26.993] reporting 4 6 22 186
[    27.012] reporting 4 6 22 186
[    27.028] reporting 4 6 22 186
[    27.048] reporting 4 6 22 186
[    27.049] reporting 4 6 22 186
[    27.049] reporting 4 6 22 186
[    27.050] reporting 4 6 22 186
[    27.050] reporting 4 6 22 186
[    27.068] reporting 4 6 22 186
[    27.084] reporting 4 6 22 186
[    27.100] reporting 4 6 22 186
[    27.101] reporting 4 6 22 186
[    27.102] reporting 4 6 22 186
[    27.124] reporting 4 6 22 186
[    27.140] reporting 4 6 22 186
[    27.156] reporting 4 6 22 186
[    27.159] reporting 4 6 22 186
[    27.161] reporting 4 6 22 186
[    27.162] reporting 4 6 22 186
[    27.184] reporting 4 6 22 186
[    27.200] reporting 4 6 22 186
[    27.216] reporting 4 6 22 186
[    27.218] reporting 4 6 22 186
[    27.219] reporting 4 6 22 186
[    27.240] reporting 4 6 22 186
[    27.256] reporting 4 6 22 186
[    27.272] reporting 4 6 22 186
[    27.273] reporting 4 6 22 186
[    27.274] reporting 4 6 22 186
[    27.275] reporting 4 6 22 186
[    27.276] reporting 4 6 22 186
[    27.296] reporting 4 6 22 186
[    27.312] reporting 4 6 22 186
[    27.328] reporting 4 6 22 186
[    27.329] reporting 4 6 22 186
[    27.330] reporting 4 6 22 186
[    27.348] reporting 4 6 22 186
[    27.364] reporting 4 6 22 186
[    27.380] reporting 4 6 22 186
[    27.381] reporting 4 6 22 186
[    27.382] reporting 4 6 22 186
[    27.383] reporting 4 6 22 186
[    27.404] reporting 4 6 22 186
[    27.420] reporting 4 6 22 186
[    27.436] reporting 4 6 22 186
[    27.437] reporting 4 6 22 186
[    27.437] reporting 4 6 22 186
[    27.456] reporting 4 6 22 186
[    27.472] reporting 4 6 22 186
[    27.488] reporting 4 6 22 186
[    27.488] reporting 4 6 22 186
[    27.489] reporting 4 6 22 186
[    27.489] reporting 4 6 22 186
[    27.490] reporting 4 6 22 186
[    27.508] reporting 4 6 22 186
[    27.524] reporting 4 6 22 186
[    27.540] reporting 4 6 22 186
[    27.541] reporting 4 6 22 186
[    27.541] reporting 4 6 22 186
[    27.560] reporting 4 6 22 186
[    27.576] reporting 4 6 22 186
[    27.592] reporting 4 6 22 186
[    27.592] reporting 4 6 22 186
[    27.593] reporting 4 6 22 186
[    27.593] reporting 4 6 22 186
[    27.612] reporting 4 6 22 186
[    27.628] reporting 4 6 22 186
[    27.644] reporting 4 6 22 186
[    27.644] reporting 4 6 22 186
[    27.645] reporting 4 6 22 186
[    27.664] reporting 4 6 22 186
[    27.680] reporting 4 6 22 186
[    27.696] reporting 4 6 22 186
[    27.696] reporting 4 6 22 186
[    27.697] reporting 4 6 22 186
[    27.697] reporting 4 6 22 186
[    27.698] reporting 4 6 22 186
[    27.716] reporting 4 6 22 186
[    27.732] reporting 4 6 22 186
[    27.748] reporting 4 6 22 186
[    27.749] reporting 4 6 22 186
[    27.749] reporting 4 6 22 186
[    27.751] (II) XKB: reuse xkmfile /var/lib/xkb/server-E6002B028953F2A71260CC54F0869820D1DC97F2.xkm
[    27.772] reporting 4 6 22 186
[    27.788] reporting 4 6 22 186
[    27.804] reporting 4 6 22 186
[    27.805] reporting 4 6 22 186
[    27.805] reporting 4 6 22 186
[    27.824] reporting 4 6 22 186
[    27.840] reporting 4 6 22 186
[    27.856] reporting 4 6 22 186
[    27.861] reporting 4 6 22 186
[    27.862] reporting 4 6 22 186
[    27.862] reporting 4 6 22 186
[    27.884] reporting 4 6 22 186
[    27.900] reporting 4 6 22 186
[    27.916] reporting 4 6 22 186
[    27.918] reporting 4 6 22 186
[    27.919] reporting 4 6 22 186
[    27.940] reporting 4 6 22 186
[    27.956] reporting 4 6 22 186
[    27.972] reporting 4 6 22 186
[    27.974] reporting 4 6 22 186
[    27.975] reporting 4 6 22 186
[    27.979] reporting 4 6 22 186
[    28.000] reporting 4 6 22 186
[    28.016] reporting 4 6 22 186
[    28.036] reporting 4 6 22 186
[    28.037] reporting 4 6 22 186
[    28.037] reporting 4 6 22 186
[    28.038] reporting 4 6 22 186
[    28.060] reporting 4 6 22 186
[    28.076] reporting 4 6 22 186
[    28.092] reporting 4 6 22 186
[    28.096] reporting 4 6 22 186
[    28.097] reporting 4 6 22 186
[    28.120] reporting 4 6 22 186
[    28.136] reporting 4 6 22 186
[    28.152] reporting 4 6 22 186
[    28.154] reporting 4 6 22 186
[    28.155] reporting 4 6 22 186
[    28.155] reporting 4 6 22 186
[    28.176] reporting 4 6 22 186
[    28.192] reporting 4 6 22 186
[    28.208] reporting 4 6 22 186
[    28.210] reporting 4 6 22 186
[    28.436] (II) XKB: reuse xkmfile /var/lib/xkb/server-81907AB388B478D711E6423DD8B0048239BE0CB6.xkm
[    28.445] (II) XKB: reuse xkmfile /var/lib/xkb/server-81907AB388B478D711E6423DD8B0048239BE0CB6.xkm
[    29.048] reporting 4 6 22 186
[    29.061] reporting 4 6 22 186
[    29.093] reporting 4 6 22 186
[    29.094] reporting 4 6 22 186
[    29.096] reporting 4 6 22 186
[    29.097] reporting 4 6 22 186
[    29.118] reporting 4 6 22 186
[    29.119] reporting 4 6 22 186
[    29.152] reporting 4 6 22 186
[    29.153] reporting 4 6 22 186
[    29.154] reporting 4 6 22 186
[    29.154] reporting 4 6 22 186
[    29.154] reporting 4 6 22 186
[    29.155] reporting 4 6 22 186
[    29.155] reporting 4 6 22 186
[    29.155] reporting 4 6 22 186
[    29.155] reporting 4 6 22 186
[    29.155] reporting 4 6 22 186
[    29.156] reporting 4 6 22 186
[    29.156] reporting 4 6 22 186
[    29.156] reporting 4 6 22 186
[    29.156] reporting 4 6 22 186
[    29.156] reporting 4 6 22 186
[    29.156] reporting 4 6 22 186
[    33.411] reporting 4 6 22 186
[    33.521] reporting 4 6 22 186
[    33.521] reporting 4 6 22 186
[    33.720] reporting 4 6 22 186
[    33.740] reporting 4 6 22 186
[    46.244] reporting 4 6 22 186
[    71.732] reporting 4 6 22 186
[    78.519] reporting 4 6 22 186
[    95.292] reporting 4 6 22 186
[    96.706] reporting 4 6 22 186
[   435.583] reporting 4 6 22 186