This repository was archived by the owner on Jan 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlala
More file actions
3400 lines (3400 loc) · 216 KB
/
lala
File metadata and controls
3400 lines (3400 loc) · 216 KB
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
[844698.747702] cache: parent cpu1 should not be sleeping
[844698.748040] CPU1 is up
[844698.767978] smpboot: Booting Node 0 Processor 2 APIC 0x2
[844698.768841] Disabled fast string operations
[844698.799708] cache: parent cpu2 should not be sleeping
[844698.800043] CPU2 is up
[844698.820121] smpboot: Booting Node 0 Processor 3 APIC 0x3
[844698.821085] Disabled fast string operations
[844698.855694] cache: parent cpu3 should not be sleeping
[844698.856014] CPU3 is up
[844698.864371] ACPI: Waking up from system sleep state S3
[844699.237110] sdhci-pci 0000:0d:00.0: MMC controller base frequency changed to 50Mhz.
[844699.237144] pcieport 0000:00:1c.6: System wakeup disabled by ACPI
[844699.237582] ehci-pci 0000:00:1d.0: System wakeup disabled by ACPI
[844699.238742] ehci-pci 0000:00:1a.0: System wakeup disabled by ACPI
[844699.238973] PM: noirq resume of devices complete after 19.350 msecs
[844699.239867] PM: early resume of devices complete after 0.844 msecs
[844699.239993] e1000e 0000:00:19.0: System wakeup disabled by ACPI
[844699.240658] usb usb3: root hub lost power or was reset
[844699.240663] usb usb4: root hub lost power or was reset
[844699.243907] rtc_cmos 00:02: System wakeup disabled by ACPI
[844699.251773] sd 0:0:0:0: [sda] Starting disk
[844699.279668] tpm_tis 00:05: TPM is disabled/deactivated (0x6)
[844699.471673] usb 1-1.6: reset high-speed USB device number 4 using ehci-pci
[844699.479736] usb 2-1.4: reset high-speed USB device number 73 using ehci-pci
[844699.567690] ata2: SATA link down (SStatus 0 SControl 300)
[844699.572029] usb 2-1.4: device firmware changed
[844699.575659] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[844699.576010] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[844699.576029] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[844699.576032] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[844699.576242] ata1.00: supports DRM functions and may not be fully accessible
[844699.576997] ata1.00: disabling queued TRIM support
[844699.577693] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[844699.577697] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[844699.577700] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[844699.577899] ata1.00: supports DRM functions and may not be fully accessible
[844699.578124] ata1.00: disabling queued TRIM support
[844699.578452] ata1.00: configured for UDMA/133
[844699.583690] ata5: SATA link down (SStatus 0 SControl 300)
[844699.639695] usb 1-1.4: reset full-speed USB device number 3 using ehci-pci
[844700.069667] psmouse serio1: synaptics: queried max coordinates: x [..5472], y [..4448]
[844700.073829] PM: resume of devices complete after 833.826 msecs
[844700.074946] PM: Finishing wakeup.
[844700.074949] Restarting tasks ...
[844700.075377] usb 2-1.4: USB disconnect, device number 73
[844700.091501] cdc_ncm 2-1.4:1.6 wwp0s29u1u4i6: unregister 'cdc_ncm' usb-0000:00:1d.0-1.4, Mobile Broadband Network Device
[844700.108256] done.
[844700.195757] usb 2-1.4: new high-speed USB device number 74 using ehci-pci
[844700.295616] usb 2-1.4: New USB device found, idVendor=0bdb, idProduct=1912
[844700.295622] usb 2-1.4: New USB device strings: Mfr=0, Product=2, SerialNumber=5
[844700.295625] usb 2-1.4: Product: 㕆㈵朱w
[844700.295627] usb 2-1.4: SerialNumber: EC6EB642ACB4D4A0
[844700.302703] e1000e: enp0s25 NIC Link is Down
[844700.302901] device enp0s25 entered promiscuous mode
[844700.304306] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[844700.306341] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
[844700.344113] usbhid 2-1.4:1.0: can't add hid device: -71
[844700.344129] usbhid: probe of 2-1.4:1.0 failed with error -71
[844700.530062] usb 2-1.4: USB disconnect, device number 74
[844700.540126] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
[844701.347911] usb 2-1.4: new high-speed USB device number 75 using ehci-pci
[844701.448152] usb 2-1.4: New USB device found, idVendor=0bdb, idProduct=1911
[844701.448162] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[844701.448167] usb 2-1.4: Product: F5521gw
[844701.448171] usb 2-1.4: Manufacturer: Lenovo
[844701.448174] usb 2-1.4: SerialNumber: EC6EB642ACB4D4A0
[844701.481789] cdc_acm 2-1.4:1.1: ttyACM0: USB ACM device
[844701.483311] cdc_acm 2-1.4:1.3: ttyACM1: USB ACM device
[844701.484813] cdc_wdm 2-1.4:1.5: cdc-wdm0: USB WDM device
[844701.514913] cdc_ncm 2-1.4:1.6: MAC-Address: 02:80:37:ec:02:00
[844701.515602] cdc_ncm 2-1.4:1.6 wwan0: register 'cdc_ncm' at usb-0000:00:1d.0-1.4, Mobile Broadband Network Device, 02:80:37:ec:02:00
[844701.516698] cdc_wdm 2-1.4:1.8: cdc-wdm1: USB WDM device
[844701.517309] cdc_acm 2-1.4:1.9: ttyACM2: USB ACM device
[844701.580202] cdc_ncm 2-1.4:1.6 wwp0s29u1u4i6: renamed from wwan0
[844701.590176] cdc_wdm 2-1.4:1.8: wdm_int_callback - 0 bytes
[844701.657296] cdc_wdm 2-1.4:1.5: wdm_int_callback - 0 bytes
[844721.141047] e1000e: enp0s25 NIC Link is Up 100 Mbps Full Duplex, Flow Control: Rx/Tx
[844721.141062] e1000e 0000:00:19.0 enp0s25: 10/100 speed: disabling TSO
[844721.141114] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s25: link becomes ready
[844727.907545] device enp0s25 left promiscuous mode
[844728.198839] PM: Syncing filesystems ... done.
[844728.233356] PM: Preparing system for sleep (mem)
[844728.233640] Freezing user space processes ... (elapsed 0.002 seconds) done.
[844728.236019] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[844728.237511] PM: Suspending system (mem)
[844728.237525] Suspending console(s) (use no_console_suspend to debug)
[844728.404506] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[844728.405995] sd 0:0:0:0: [sda] Stopping disk
[844728.684628] e1000e: EEE TX LPI TIMER: 00000011
[844728.762582] PM: suspend of devices complete after 524.831 msecs
[844728.776380] PM: late suspend of devices complete after 13.782 msecs
[844728.777692] pcieport 0000:00:1c.6: System wakeup enabled by ACPI
[844728.778729] ehci-pci 0000:00:1d.0: System wakeup enabled by ACPI
[844728.779076] ehci-pci 0000:00:1a.0: System wakeup enabled by ACPI
[844728.779090] e1000e 0000:00:19.0: System wakeup enabled by ACPI
[844728.792467] PM: noirq suspend of devices complete after 16.080 msecs
[844728.792892] ACPI: Preparing to enter system sleep state S3
[844728.964172] ACPI : EC: EC stopped
[844728.964174] PM: Saving platform NVS memory
[844728.964185] Disabling non-boot CPUs ...
[844728.964777] Broke affinity for irq 16
[844728.964782] Broke affinity for irq 23
[844728.964786] Broke affinity for irq 26
[844728.964792] Broke affinity for irq 28
[844728.964798] Broke affinity for irq 30
[844728.964805] Broke affinity for irq 33
[844728.965842] smpboot: CPU 1 is now offline
[844728.977239] Broke affinity for irq 16
[844728.977255] Broke affinity for irq 23
[844728.977258] Broke affinity for irq 26
[844728.977263] Broke affinity for irq 28
[844728.977267] Broke affinity for irq 30
[844728.977272] Broke affinity for irq 33
[844728.977276] Broke affinity for irq 36
[844728.978305] smpboot: CPU 2 is now offline
[844728.993533] Broke affinity for irq 1
[844728.993538] Broke affinity for irq 8
[844728.993542] Broke affinity for irq 9
[844728.993547] Broke affinity for irq 12
[844728.993552] Broke affinity for irq 16
[844728.993557] Broke affinity for irq 23
[844728.993563] Broke affinity for irq 26
[844728.993567] Broke affinity for irq 27
[844728.993572] Broke affinity for irq 28
[844728.993576] Broke affinity for irq 29
[844728.993579] Broke affinity for irq 30
[844728.993584] Broke affinity for irq 32
[844728.993588] Broke affinity for irq 33
[844728.993593] Broke affinity for irq 36
[844728.994648] smpboot: CPU 3 is now offline
[844729.010656] ACPI: Low-level resume complete
[844729.010696] ACPI : EC: EC started
[844729.010696] PM: Restoring platform NVS memory
[844729.011034] Enabling non-boot CPUs ...
[844729.030514] x86: Booting SMP configuration:
[844729.030516] smpboot: Booting Node 0 Processor 1 APIC 0x1
[844729.031405] Disabled fast string operations
[844729.078321] cache: parent cpu1 should not be sleeping
[844729.078544] CPU1 is up
[844729.098609] smpboot: Booting Node 0 Processor 2 APIC 0x2
[844729.099441] Disabled fast string operations
[844729.146331] cache: parent cpu2 should not be sleeping
[844729.146557] CPU2 is up
[844729.166757] smpboot: Booting Node 0 Processor 3 APIC 0x3
[844729.167681] Disabled fast string operations
[844729.218328] cache: parent cpu3 should not be sleeping
[844729.218539] CPU3 is up
[844729.227010] ACPI: Waking up from system sleep state S3
[844729.422524] thinkpad_acpi: EC reports that Thermal Table has changed
[844729.626491] ehci-pci 0000:00:1a.0: System wakeup disabled by ACPI
[844729.626707] pcieport 0000:00:1c.6: System wakeup disabled by ACPI
[844729.627045] ehci-pci 0000:00:1d.0: System wakeup disabled by ACPI
[844729.627240] sdhci-pci 0000:0d:00.0: MMC controller base frequency changed to 50Mhz.
[844729.628527] PM: noirq resume of devices complete after 18.259 msecs
[844729.629241] PM: early resume of devices complete after 0.658 msecs
[844729.629390] e1000e 0000:00:19.0: System wakeup disabled by ACPI
[844729.630346] rtc_cmos 00:02: System wakeup disabled by ACPI
[844729.630682] usb usb3: root hub lost power or was reset
[844729.630686] usb usb4: root hub lost power or was reset
[844729.635096] sd 0:0:0:0: [sda] Starting disk
[844729.666302] tpm_tis 00:05: TPM is disabled/deactivated (0x6)
[844729.866318] usb 1-1.6: reset high-speed USB device number 4 using ehci-pci
[844729.866359] usb 2-1.4: reset high-speed USB device number 75 using ehci-pci
[844729.958483] usb 2-1.4: device firmware changed
[844729.962336] ata5: SATA link down (SStatus 0 SControl 300)
[844729.962363] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[844729.962817] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[844729.962822] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[844729.962826] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[844729.963103] ata1.00: supports DRM functions and may not be fully accessible
[844729.963908] ata1.00: disabling queued TRIM support
[844729.964715] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[844729.964720] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[844729.964724] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[844729.964931] ata1.00: supports DRM functions and may not be fully accessible
[844729.965186] ata1.00: disabling queued TRIM support
[844729.965598] ata1.00: configured for UDMA/133
[844729.978322] ata2: SATA link down (SStatus 0 SControl 300)
[844730.034352] usb 1-1.4: reset full-speed USB device number 3 using ehci-pci
[844730.463854] psmouse serio1: synaptics: queried max coordinates: x [..5472], y [..4448]
[844730.464284] PM: resume of devices complete after 834.906 msecs
[844730.465461] PM: Finishing wakeup.
[844730.465465] Restarting tasks ...
[844730.474239] usb 2-1.4: USB disconnect, device number 75
[844730.474552] cdc_acm 2-1.4:1.1: failed to set dtr/rts
[844730.476326] cdc_ncm 2-1.4:1.6 wwp0s29u1u4i6: unregister 'cdc_ncm' usb-0000:00:1d.0-1.4, Mobile Broadband Network Device
[844730.511997] done.
[844730.574359] usb 2-1.4: new high-speed USB device number 76 using ehci-pci
[844730.586473] usb 3-2: new high-speed USB device number 9 using xhci_hcd
[844730.653561] device enp0s25 entered promiscuous mode
[844730.672504] usb 2-1.4: New USB device found, idVendor=0bdb, idProduct=1912
[844730.672509] usb 2-1.4: New USB device strings: Mfr=0, Product=2, SerialNumber=5
[844730.672511] usb 2-1.4: Product: 㕆㈵朱w
[844730.672513] usb 2-1.4: SerialNumber: EC6EB642ACB4D4A0
[844730.699111] device enp0s25 left promiscuous mode
[844730.715466] usb 3-2: New USB device found, idVendor=17ef, idProduct=100a
[844730.715470] usb 3-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[844730.716141] hub 3-2:1.0: USB hub found
[844730.716451] hub 3-2:1.0: 6 ports detected
[844730.719253] usbhid 2-1.4:1.0: can't add hid device: -71
[844730.719268] usbhid: probe of 2-1.4:1.0 failed with error -71
[844730.836387] e1000e: enp0s25 NIC Link is Down
[844730.865902] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[844730.872413] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
[844730.924741] usb 2-1.4: USB disconnect, device number 76
[844730.990416] usb 3-2.2: new full-speed USB device number 10 using xhci_hcd
[844731.104322] usb 3-2.2: New USB device found, idVendor=06f8, idProduct=d001
[844731.104326] usb 3-2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[844731.104329] usb 3-2.2: Product: Hercules DJ Control MP3
[844731.104331] usb 3-2.2: Manufacturer: Hercules
[844731.104333] usb 3-2.2: SerialNumber: WT1
[844731.109022] input: Hercules Hercules DJ Control MP3 as /devices/pci0000:00/0000:00:1c.6/0000:0e:00.0/usb3/3-2/3-2.2/3-2.2:1.0/0003:06F8:D001.007B/input/input139
[844731.126693] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
[844731.126712] device enp0s25 entered promiscuous mode
[844731.164167] hid-generic 0003:06F8:D001.007B: input,hidraw0: USB HID v1.10 Joystick [Hercules Hercules DJ Control MP3] on usb-0000:0e:00.0-2.2/input0
[844731.168596] input: Hercules Hercules DJ Control MP3 as /devices/pci0000:00/0000:00:1c.6/0000:0e:00.0/usb3/3-2/3-2.2/3-2.2:1.1/0003:06F8:D001.007C/input/input140
[844731.169206] hid-generic 0003:06F8:D001.007C: input,hidraw1: USB HID v1.10 Mouse [Hercules Hercules DJ Control MP3] on usb-0000:0e:00.0-2.2/input1
[844731.703107] MIDI state successfully created, driver version:1280000
[844731.703111] DJ Control MP3, vid:6f8, pid:d001
[844731.718532] usb 2-1.4: new high-speed USB device number 77 using ehci-pci
[844731.790531] usb 3-2.4: new low-speed USB device number 11 using xhci_hcd
[844731.817326] usb 2-1.4: New USB device found, idVendor=0bdb, idProduct=1911
[844731.817331] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[844731.817333] usb 2-1.4: Product: F5521gw
[844731.817335] usb 2-1.4: Manufacturer: Lenovo
[844731.817337] usb 2-1.4: SerialNumber: EC6EB642ACB4D4A0
[844731.852398] cdc_acm 2-1.4:1.1: ttyACM0: USB ACM device
[844731.853157] cdc_acm 2-1.4:1.3: ttyACM1: USB ACM device
[844731.855491] cdc_wdm 2-1.4:1.5: cdc-wdm1: USB WDM device
[844731.887571] cdc_ncm 2-1.4:1.6: MAC-Address: 02:80:37:ec:02:00
[844731.887970] cdc_ncm 2-1.4:1.6 wwan0: register 'cdc_ncm' at usb-0000:00:1d.0-1.4, Mobile Broadband Network Device, 02:80:37:ec:02:00
[844731.889124] cdc_wdm 2-1.4:1.8: cdc-wdm2: USB WDM device
[844731.889526] cdc_acm 2-1.4:1.9: ttyACM2: USB ACM device
[844731.903923] usb 3-2.4: New USB device found, idVendor=04b3, idProduct=3025
[844731.903928] usb 3-2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[844731.903930] usb 3-2.4: Product: USB NetVista Full Width Keyboard.
[844731.903932] usb 3-2.4: Manufacturer: LITE-ON Technology
[844731.904105] usb 3-2.4: ep 0x81 - rounding interval to 128 microframes, ep desc says 192 microframes
[844731.911758] input: LITE-ON Technology USB NetVista Full Width Keyboard. as /devices/pci0000:00/0000:00:1c.6/0000:0e:00.0/usb3/3-2/3-2.4/3-2.4:1.0/0003:04B3:3025.007D/input/input141
[844731.967115] hid-generic 0003:04B3:3025.007D: input,hidraw2: USB HID v1.10 Keyboard [LITE-ON Technology USB NetVista Full Width Keyboard.] on usb-0000:0e:00.0-2.4/input0
[844732.054577] usb 3-2.6: new low-speed USB device number 12 using xhci_hcd
[844732.176445] usb 3-2.6: New USB device found, idVendor=04b3, idProduct=310d
[844732.176451] usb 3-2.6: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[844732.176770] usb 3-2.6: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
[844732.180970] input: HID 04b3:310d as /devices/pci0000:00/0000:00:1c.6/0000:0e:00.0/usb3/3-2/3-2.6/3-2.6:1.0/0003:04B3:310D.007E/input/input142
[844732.234817] hid-generic 0003:04B3:310D.007E: input,hidraw3: USB HID v1.11 Mouse [HID 04b3:310d] on usb-0000:0e:00.0-2.6/input0
[844732.407152] cdc_ncm 2-1.4:1.6 wwp0s29u1u4i6: renamed from wwan0
[844732.409930] cdc_wdm 2-1.4:1.8: wdm_int_callback - 0 bytes
[844732.443919] cdc_wdm 2-1.4:1.5: wdm_int_callback - 0 bytes
[844751.667676] e1000e: enp0s25 NIC Link is Up 100 Mbps Full Duplex, Flow Control: Rx/Tx
[844751.667687] e1000e 0000:00:19.0 enp0s25: 10/100 speed: disabling TSO
[844751.667733] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s25: link becomes ready
[855555.488302] device enp0s25 left promiscuous mode
[855556.386466] PM: Syncing filesystems ... done.
[855556.418524] PM: Preparing system for sleep (mem)
[855556.418776] Freezing user space processes ... (elapsed 0.002 seconds) done.
[855556.420995] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[855556.422396] PM: Suspending system (mem)
[855556.422411] Suspending console(s) (use no_console_suspend to debug)
[855556.422639] hdj_suspend()
[855556.422641] snd_hdjmidi_suspend()
[855556.424154] hdj_suspend() EXIT
[855556.598110] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[855556.599567] sd 0:0:0:0: [sda] Stopping disk
[855556.875359] e1000e: EEE TX LPI TIMER: 00000011
[855556.953456] PM: suspend of devices complete after 530.924 msecs
[855556.967202] PM: late suspend of devices complete after 13.732 msecs
[855556.968488] pcieport 0000:00:1c.6: System wakeup enabled by ACPI
[855556.969513] ehci-pci 0000:00:1d.0: System wakeup enabled by ACPI
[855556.969777] ehci-pci 0000:00:1a.0: System wakeup enabled by ACPI
[855556.969786] e1000e 0000:00:19.0: System wakeup enabled by ACPI
[855556.983381] PM: noirq suspend of devices complete after 16.175 msecs
[855556.983895] ACPI: Preparing to enter system sleep state S3
[855557.154966] ACPI : EC: EC stopped
[855557.154968] PM: Saving platform NVS memory
[855557.154979] Disabling non-boot CPUs ...
[855557.155590] Broke affinity for irq 16
[855557.155611] Broke affinity for irq 28
[855557.155621] Broke affinity for irq 30
[855557.156700] smpboot: CPU 1 is now offline
[855557.180527] Broke affinity for irq 16
[855557.180550] Broke affinity for irq 28
[855557.180560] Broke affinity for irq 30
[855557.180572] Broke affinity for irq 33
[855557.180578] Broke affinity for irq 36
[855557.181634] smpboot: CPU 2 is now offline
[855557.192178] Broke affinity for irq 1
[855557.192183] Broke affinity for irq 8
[855557.192187] Broke affinity for irq 9
[855557.192192] Broke affinity for irq 12
[855557.192197] Broke affinity for irq 16
[855557.192202] Broke affinity for irq 23
[855557.192208] Broke affinity for irq 26
[855557.192212] Broke affinity for irq 27
[855557.192216] Broke affinity for irq 28
[855557.192221] Broke affinity for irq 29
[855557.192224] Broke affinity for irq 30
[855557.192229] Broke affinity for irq 32
[855557.192234] Broke affinity for irq 33
[855557.192238] Broke affinity for irq 36
[855557.193279] smpboot: CPU 3 is now offline
[855557.205268] ACPI: Low-level resume complete
[855557.205308] ACPI : EC: EC started
[855557.205308] PM: Restoring platform NVS memory
[855557.205677] Enabling non-boot CPUs ...
[855557.225209] x86: Booting SMP configuration:
[855557.225211] smpboot: Booting Node 0 Processor 1 APIC 0x1
[855557.226101] Disabled fast string operations
[855557.272987] cache: parent cpu1 should not be sleeping
[855557.273215] CPU1 is up
[855557.293328] smpboot: Booting Node 0 Processor 2 APIC 0x2
[855557.294258] Disabled fast string operations
[855557.340996] cache: parent cpu2 should not be sleeping
[855557.341226] CPU2 is up
[855557.361355] smpboot: Booting Node 0 Processor 3 APIC 0x3
[855557.362181] Disabled fast string operations
[855557.408970] cache: parent cpu3 should not be sleeping
[855557.409185] CPU3 is up
[855557.418334] ACPI: Waking up from system sleep state S3
[855557.769095] ehci-pci 0000:00:1d.0: System wakeup disabled by ACPI
[855557.769185] pcieport 0000:00:1c.6: System wakeup disabled by ACPI
[855557.769500] ehci-pci 0000:00:1a.0: System wakeup disabled by ACPI
[855557.771187] sdhci-pci 0000:0d:00.0: MMC controller base frequency changed to 50Mhz.
[855557.772668] PM: noirq resume of devices complete after 19.836 msecs
[855557.773359] PM: early resume of devices complete after 0.640 msecs
[855557.773648] e1000e 0000:00:19.0: System wakeup disabled by ACPI
[855557.774250] usb usb3: root hub lost power or was reset
[855557.774253] usb usb4: root hub lost power or was reset
[855557.774363] rtc_cmos 00:02: System wakeup disabled by ACPI
[855557.788958] sd 0:0:0:0: [sda] Starting disk
[855557.795512] mei_me 0000:00:16.0: hbm: properties response: wrong status = 1 CLIENT_NOT_FOUND
[855557.795515] mei_me 0000:00:16.0: mei_irq_read_handler ret = -71.
[855557.795533] mei_me 0000:00:16.0: unexpected reset: dev_state = INIT_CLIENTS fw status = 1E000245 60000006
[855557.808855] tpm_tis 00:05: TPM is disabled/deactivated (0x6)
[855558.004835] usb 1-1.4: reset full-speed USB device number 3 using ehci-pci
[855558.004868] usb 2-1.4: reset high-speed USB device number 77 using ehci-pci
[855558.096984] usb 2-1.4: device firmware changed
[855558.097074] usb 3-2: reset high-speed USB device number 9 using xhci_hcd
[855558.120833] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[855558.121248] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[855558.121253] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[855558.121257] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[855558.121482] ata1.00: supports DRM functions and may not be fully accessible
[855558.121899] ata1.00: disabling queued TRIM support
[855558.122687] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[855558.122692] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[855558.122696] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[855558.122896] ata1.00: supports DRM functions and may not be fully accessible
[855558.123094] ata1.00: disabling queued TRIM support
[855558.123424] ata1.00: configured for UDMA/133
[855558.124824] ata2: SATA link down (SStatus 0 SControl 300)
[855558.132821] ata5: SATA link down (SStatus 0 SControl 300)
[855558.168834] usb 1-1.6: reset high-speed USB device number 4 using ehci-pci
[855558.508983] usb 3-2.2: reset full-speed USB device number 10 using xhci_hcd
[855558.617750] psmouse serio1: synaptics: queried max coordinates: x [..5472], y [..4448]
[855558.620949] hdj_reset_resume() WARNING- device has been reset
[855558.620951] hdj_resume()
[855558.620954] snd_hdjmidi_resume()
[855558.620958] hdj_resume() EXIT
[855558.872989] usb 3-2.4: reset low-speed USB device number 11 using xhci_hcd
[855559.152109] usb 3-2.4: ep 0x81 - rounding interval to 128 microframes, ep desc says 192 microframes
[855559.408925] usb 3-2.6: reset low-speed USB device number 12 using xhci_hcd
[855559.687840] usb 3-2.6: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
[855559.692725] PM: resume of devices complete after 1919.446 msecs
[855559.693859] PM: Finishing wakeup.
[855559.693862] Restarting tasks ...
[855559.704491] usb 2-1.4: USB disconnect, device number 77
[855559.711360] cdc_ncm 2-1.4:1.6 wwp0s29u1u4i6: unregister 'cdc_ncm' usb-0000:00:1d.0-1.4, Mobile Broadband Network Device
[855559.720796] done.
[855559.847871] device enp0s25 entered promiscuous mode
[855559.909230] device enp0s25 left promiscuous mode
[855560.027073] e1000e: enp0s25 NIC Link is Down
[855560.045982] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[855560.047000] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
[855560.176661] usb 2-1.4: new high-speed USB device number 78 using ehci-pci
[855560.275549] usb 2-1.4: New USB device found, idVendor=0bdb, idProduct=1911
[855560.275554] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[855560.275556] usb 2-1.4: Product: F5521gw
[855560.275558] usb 2-1.4: Manufacturer: Lenovo
[855560.275559] usb 2-1.4: SerialNumber: EC6EB642ACB4D4A0
[855560.288887] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
[855560.288892] device enp0s25 entered promiscuous mode
[855560.307366] cdc_acm 2-1.4:1.1: ttyACM0: USB ACM device
[855560.309168] cdc_acm 2-1.4:1.3: ttyACM1: USB ACM device
[855560.312259] cdc_wdm 2-1.4:1.5: cdc-wdm1: USB WDM device
[855560.342543] cdc_ncm 2-1.4:1.6: MAC-Address: 02:80:37:ec:02:00
[855560.342877] cdc_ncm 2-1.4:1.6 wwan0: register 'cdc_ncm' at usb-0000:00:1d.0-1.4, Mobile Broadband Network Device, 02:80:37:ec:02:00
[855560.343542] cdc_wdm 2-1.4:1.8: cdc-wdm2: USB WDM device
[855560.343857] cdc_acm 2-1.4:1.9: ttyACM2: USB ACM device
[855560.394042] cdc_ncm 2-1.4:1.6 wwp0s29u1u4i6: renamed from wwan0
[855560.406537] cdc_wdm 2-1.4:1.8: wdm_int_callback - 0 bytes
[855560.407538] cdc_wdm 2-1.4:1.5: wdm_int_callback - 0 bytes
[855580.905837] e1000e: enp0s25 NIC Link is Up 100 Mbps Full Duplex, Flow Control: Rx/Tx
[855580.905851] e1000e 0000:00:19.0 enp0s25: 10/100 speed: disabling TSO
[855580.905903] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s25: link becomes ready
[855960.166745] device enp0s25 left promiscuous mode
[855961.161453] PM: Syncing filesystems ... done.
[855961.181795] PM: Preparing system for sleep (mem)
[855961.182151] Freezing user space processes ... (elapsed 0.002 seconds) done.
[855961.184296] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[855961.185715] PM: Suspending system (mem)
[855961.185731] Suspending console(s) (use no_console_suspend to debug)
[855961.185940] hdj_suspend()
[855961.185941] snd_hdjmidi_suspend()
[855961.187408] hdj_suspend() EXIT
[855961.362325] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[855961.363879] sd 0:0:0:0: [sda] Stopping disk
[855961.642152] e1000e: EEE TX LPI TIMER: 00000011
[855961.719344] PM: suspend of devices complete after 533.586 msecs
[855961.733898] PM: late suspend of devices complete after 14.543 msecs
[855961.735062] pcieport 0000:00:1c.6: System wakeup enabled by ACPI
[855961.735953] ehci-pci 0000:00:1d.0: System wakeup enabled by ACPI
[855961.736234] ehci-pci 0000:00:1a.0: System wakeup enabled by ACPI
[855961.736330] e1000e 0000:00:19.0: System wakeup enabled by ACPI
[855961.750090] PM: noirq suspend of devices complete after 16.191 msecs
[855961.750577] ACPI: Preparing to enter system sleep state S3
[855961.921624] ACPI : EC: EC stopped
[855961.921626] PM: Saving platform NVS memory
[855961.921636] Disabling non-boot CPUs ...
[855961.922235] Broke affinity for irq 16
[855961.922239] Broke affinity for irq 23
[855961.922244] Broke affinity for irq 26
[855961.922249] Broke affinity for irq 28
[855961.922254] Broke affinity for irq 30
[855961.922261] Broke affinity for irq 33
[855961.923291] smpboot: CPU 1 is now offline
[855961.935210] Broke affinity for irq 16
[855961.935218] Broke affinity for irq 23
[855961.935226] Broke affinity for irq 26
[855961.935236] Broke affinity for irq 28
[855961.935245] Broke affinity for irq 30
[855961.935262] Broke affinity for irq 33
[855961.935265] Broke affinity for irq 36
[855961.936288] smpboot: CPU 2 is now offline
[855961.946458] Broke affinity for irq 1
[855961.946464] Broke affinity for irq 8
[855961.946468] Broke affinity for irq 9
[855961.946473] Broke affinity for irq 12
[855961.946479] Broke affinity for irq 16
[855961.946484] Broke affinity for irq 23
[855961.946490] Broke affinity for irq 26
[855961.946495] Broke affinity for irq 27
[855961.946499] Broke affinity for irq 28
[855961.946503] Broke affinity for irq 29
[855961.946507] Broke affinity for irq 30
[855961.946512] Broke affinity for irq 32
[855961.946518] Broke affinity for irq 33
[855961.946522] Broke affinity for irq 36
[855961.947559] smpboot: CPU 3 is now offline
[855961.963192] ACPI: Low-level resume complete
[855961.963231] ACPI : EC: EC started
[855961.963231] PM: Restoring platform NVS memory
[855961.963595] Enabling non-boot CPUs ...
[855961.983439] x86: Booting SMP configuration:
[855961.983441] smpboot: Booting Node 0 Processor 1 APIC 0x1
[855961.984330] Disabled fast string operations
[855962.031223] cache: parent cpu1 should not be sleeping
[855962.031441] CPU1 is up
[855962.051501] smpboot: Booting Node 0 Processor 2 APIC 0x2
[855962.052333] Disabled fast string operations
[855962.099201] cache: parent cpu2 should not be sleeping
[855962.099427] CPU2 is up
[855962.119622] smpboot: Booting Node 0 Processor 3 APIC 0x3
[855962.120546] Disabled fast string operations
[855962.171172] cache: parent cpu3 should not be sleeping
[855962.171391] CPU3 is up
[855962.178696] ACPI: Waking up from system sleep state S3
[855962.527680] pcieport 0000:00:1c.6: System wakeup disabled by ACPI
[855962.533583] sdhci-pci 0000:0d:00.0: MMC controller base frequency changed to 50Mhz.
[855962.534265] ehci-pci 0000:00:1d.0: System wakeup disabled by ACPI
[855962.534344] ehci-pci 0000:00:1a.0: System wakeup disabled by ACPI
[855962.534749] PM: noirq resume of devices complete after 23.780 msecs
[855962.535350] PM: early resume of devices complete after 0.544 msecs
[855962.535553] e1000e 0000:00:19.0: System wakeup disabled by ACPI
[855962.536075] rtc_cmos 00:02: System wakeup disabled by ACPI
[855962.536217] usb usb3: root hub lost power or was reset
[855962.536221] usb usb4: root hub lost power or was reset
[855962.551088] sd 0:0:0:0: [sda] Starting disk
[855962.570957] tpm_tis 00:05: TPM is disabled/deactivated (0x6)
[855962.770977] usb 2-1.4: reset high-speed USB device number 78 using ehci-pci
[855962.770981] usb 1-1.4: reset full-speed USB device number 3 using ehci-pci
[855962.859138] usb 3-2: reset high-speed USB device number 9 using xhci_hcd
[855962.863176] usb 2-1.4: device firmware changed
[855962.870885] ata2: SATA link down (SStatus 0 SControl 300)
[855962.878889] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[855962.879296] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[855962.879301] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[855962.879305] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[855962.879536] ata1.00: supports DRM functions and may not be fully accessible
[855962.880027] ata1.00: disabling queued TRIM support
[855962.880701] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[855962.880706] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[855962.880709] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[855962.880908] ata1.00: supports DRM functions and may not be fully accessible
[855962.881105] ata1.00: disabling queued TRIM support
[855962.881432] ata1.00: configured for UDMA/133
[855962.886882] ata5: SATA link down (SStatus 0 SControl 300)
[855962.934900] usb 1-1.6: reset high-speed USB device number 4 using ehci-pci
[855963.270940] usb 3-2.2: reset full-speed USB device number 10 using xhci_hcd
[855963.354914] psmouse serio1: synaptics: queried max coordinates: x [..5472], y [..4448]
[855963.383271] hdj_reset_resume() WARNING- device has been reset
[855963.383273] hdj_resume()
[855963.383275] snd_hdjmidi_resume()
[855963.383280] hdj_resume() EXIT
[855963.635028] usb 3-2.4: reset low-speed USB device number 11 using xhci_hcd
[855963.914129] usb 3-2.4: ep 0x81 - rounding interval to 128 microframes, ep desc says 192 microframes
[855964.170911] usb 3-2.6: reset low-speed USB device number 12 using xhci_hcd
[855964.450153] usb 3-2.6: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
[855964.456267] PM: resume of devices complete after 1921.308 msecs
[855964.457463] PM: Finishing wakeup.
[855964.457466] Restarting tasks ...
[855964.458057] usb 2-1.4: USB disconnect, device number 78
[855964.472777] cdc_ncm 2-1.4:1.6 wwp0s29u1u4i6: unregister 'cdc_ncm' usb-0000:00:1d.0-1.4, Mobile Broadband Network Device
[855964.474556] done.
[855964.567790] device enp0s25 entered promiscuous mode
[855964.608175] device enp0s25 left promiscuous mode
[855964.730277] e1000e: enp0s25 NIC Link is Down
[855964.740522] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[855964.741568] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
[855964.946456] usb 2-1.4: new high-speed USB device number 79 using ehci-pci
[855964.982733] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
[855964.982739] device enp0s25 entered promiscuous mode
[855965.046210] usb 2-1.4: New USB device found, idVendor=0bdb, idProduct=1911
[855965.046221] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[855965.046226] usb 2-1.4: Product: F5521gw
[855965.046239] usb 2-1.4: Manufacturer: Lenovo
[855965.046241] usb 2-1.4: SerialNumber: EC6EB642ACB4D4A0
[855965.081926] cdc_acm 2-1.4:1.1: ttyACM0: USB ACM device
[855965.083227] cdc_acm 2-1.4:1.3: ttyACM1: USB ACM device
[855965.084682] cdc_wdm 2-1.4:1.5: cdc-wdm1: USB WDM device
[855965.115929] cdc_ncm 2-1.4:1.6: MAC-Address: 02:80:37:ec:02:00
[855965.116527] cdc_ncm 2-1.4:1.6 wwan0: register 'cdc_ncm' at usb-0000:00:1d.0-1.4, Mobile Broadband Network Device, 02:80:37:ec:02:00
[855965.117426] cdc_wdm 2-1.4:1.8: cdc-wdm2: USB WDM device
[855965.117953] cdc_acm 2-1.4:1.9: ttyACM2: USB ACM device
[855965.167097] cdc_ncm 2-1.4:1.6 wwp0s29u1u4i6: renamed from wwan0
[855965.192836] cdc_wdm 2-1.4:1.5: wdm_int_callback - 0 bytes
[855965.207833] cdc_wdm 2-1.4:1.8: wdm_int_callback - 0 bytes
[855985.508074] e1000e: enp0s25 NIC Link is Up 100 Mbps Full Duplex, Flow Control: Rx/Tx
[855985.508090] e1000e 0000:00:19.0 enp0s25: 10/100 speed: disabling TSO
[855985.508145] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s25: link becomes ready
[857235.064688] device enp0s25 left promiscuous mode
[857235.994669] PM: Syncing filesystems ... done.
[857236.014924] PM: Preparing system for sleep (mem)
[857236.015368] Freezing user space processes ... (elapsed 0.002 seconds) done.
[857236.017566] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[857236.018948] PM: Suspending system (mem)
[857236.018963] Suspending console(s) (use no_console_suspend to debug)
[857236.019174] hdj_suspend()
[857236.019176] snd_hdjmidi_suspend()
[857236.020456] hdj_suspend() EXIT
[857236.190489] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[857236.191920] sd 0:0:0:0: [sda] Stopping disk
[857236.468307] e1000e: EEE TX LPI TIMER: 00000011
[857236.546239] PM: suspend of devices complete after 527.144 msecs
[857236.560064] PM: late suspend of devices complete after 13.814 msecs
[857236.563373] pcieport 0000:00:1c.6: System wakeup enabled by ACPI
[857236.563603] ehci-pci 0000:00:1d.0: System wakeup enabled by ACPI
[857236.563800] ehci-pci 0000:00:1a.0: System wakeup enabled by ACPI
[857236.563810] e1000e 0000:00:19.0: System wakeup enabled by ACPI
[857236.579818] PM: noirq suspend of devices complete after 19.746 msecs
[857236.580705] ACPI: Preparing to enter system sleep state S3
[857236.751823] ACPI : EC: EC stopped
[857236.751824] PM: Saving platform NVS memory
[857236.751834] Disabling non-boot CPUs ...
[857236.752408] Broke affinity for irq 16
[857236.752425] Broke affinity for irq 23
[857236.752433] Broke affinity for irq 28
[857236.752438] Broke affinity for irq 30
[857236.752444] Broke affinity for irq 33
[857236.753468] smpboot: CPU 1 is now offline
[857236.764482] Broke affinity for irq 16
[857236.764485] Broke affinity for irq 23
[857236.764491] Broke affinity for irq 28
[857236.764495] Broke affinity for irq 30
[857236.764499] Broke affinity for irq 33
[857236.764502] Broke affinity for irq 36
[857236.765517] smpboot: CPU 2 is now offline
[857236.777121] Broke affinity for irq 1
[857236.777128] Broke affinity for irq 8
[857236.777132] Broke affinity for irq 9
[857236.777137] Broke affinity for irq 12
[857236.777143] Broke affinity for irq 16
[857236.777148] Broke affinity for irq 23
[857236.777154] Broke affinity for irq 26
[857236.777159] Broke affinity for irq 27
[857236.777163] Broke affinity for irq 28
[857236.777167] Broke affinity for irq 29
[857236.777171] Broke affinity for irq 30
[857236.777176] Broke affinity for irq 32
[857236.777181] Broke affinity for irq 33
[857236.777186] Broke affinity for irq 36
[857236.778210] smpboot: CPU 3 is now offline
[857236.789332] ACPI: Low-level resume complete
[857236.789370] ACPI : EC: EC started
[857236.789371] PM: Restoring platform NVS memory
[857236.789741] Enabling non-boot CPUs ...
[857236.809642] x86: Booting SMP configuration:
[857236.809645] smpboot: Booting Node 0 Processor 1 APIC 0x1
[857236.810637] Disabled fast string operations
[857236.857393] cache: parent cpu1 should not be sleeping
[857236.857615] CPU1 is up
[857236.877735] smpboot: Booting Node 0 Processor 2 APIC 0x2
[857236.878665] Disabled fast string operations
[857236.925440] cache: parent cpu2 should not be sleeping
[857236.925663] CPU2 is up
[857236.945823] smpboot: Booting Node 0 Processor 3 APIC 0x3
[857236.946748] Disabled fast string operations
[857236.997377] cache: parent cpu3 should not be sleeping
[857236.997593] CPU3 is up
[857237.006722] ACPI: Waking up from system sleep state S3
[857237.358126] ehci-pci 0000:00:1a.0: System wakeup disabled by ACPI
[857237.360027] ehci-pci 0000:00:1d.0: System wakeup disabled by ACPI
[857237.360323] sdhci-pci 0000:0d:00.0: MMC controller base frequency changed to 50Mhz.
[857237.360445] pcieport 0000:00:1c.6: System wakeup disabled by ACPI
[857237.360655] PM: noirq resume of devices complete after 19.412 msecs
[857237.361277] PM: early resume of devices complete after 0.574 msecs
[857237.361813] e1000e 0000:00:19.0: System wakeup disabled by ACPI
[857237.365419] rtc_cmos 00:02: System wakeup disabled by ACPI
[857237.365512] usb usb3: root hub lost power or was reset
[857237.365516] usb usb4: root hub lost power or was reset
[857237.366125] sd 0:0:0:0: [sda] Starting disk
[857237.401282] tpm_tis 00:05: TPM is disabled/deactivated (0x6)
[857237.597248] usb 2-1.4: reset high-speed USB device number 79 using ehci-pci
[857237.597264] usb 1-1.4: reset full-speed USB device number 3 using ehci-pci
[857237.689458] usb 2-1.4: device firmware changed
[857237.689500] usb 3-2: reset high-speed USB device number 9 using xhci_hcd
[857237.693214] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[857237.693244] ata2: SATA link down (SStatus 0 SControl 300)
[857237.693742] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[857237.693747] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[857237.693751] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[857237.694030] ata1.00: supports DRM functions and may not be fully accessible
[857237.694692] ata1.00: disabling queued TRIM support
[857237.695491] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[857237.695497] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[857237.695514] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[857237.695733] ata1.00: supports DRM functions and may not be fully accessible
[857237.695959] ata1.00: disabling queued TRIM support
[857237.696293] ata1.00: configured for UDMA/133
[857237.701237] ata5: SATA link down (SStatus 0 SControl 300)
[857237.761215] usb 1-1.6: reset high-speed USB device number 4 using ehci-pci
[857238.189229] psmouse serio1: synaptics: queried max coordinates: x [..5472], y [..4448]
[857238.290722] PM: resume of devices complete after 929.470 msecs
[857238.291980] PM: Finishing wakeup.
[857238.291983] Restarting tasks ...
[857238.294163] usb 2-1.4: USB disconnect, device number 79
[857238.306560] done.
[857238.307146] usb 3-2.2: USB disconnect, device number 10
[857238.313361] cdc_ncm 2-1.4:1.6 wwp0s29u1u4i6: unregister 'cdc_ncm' usb-0000:00:1d.0-1.4, Mobile Broadband Network Device
[857238.409145] device enp0s25 entered promiscuous mode
[857238.425145] usb 2-1.4: new high-speed USB device number 80 using ehci-pci
[857238.467918] usb 3-2.4: USB disconnect, device number 11
[857238.476016] device enp0s25 left promiscuous mode
[857238.520123] usb 2-1.4: New USB device found, idVendor=0bdb, idProduct=1912
[857238.520128] usb 2-1.4: New USB device strings: Mfr=0, Product=2, SerialNumber=5
[857238.520130] usb 2-1.4: Product: 㕆㈵朱w
[857238.520132] usb 2-1.4: SerialNumber: EC6EB642ACB4D4A0
[857238.568135] usbhid 2-1.4:1.0: can't add hid device: -71
[857238.568152] usbhid: probe of 2-1.4:1.0 failed with error -71
[857238.569907] usb 3-2.6: USB disconnect, device number 12
[857238.601459] e1000e: enp0s25 NIC Link is Down
[857238.610914] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[857238.611885] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
[857238.647741] usb 2-1.4: USB disconnect, device number 80
[857238.721140] usb 3-2.6: new high-speed USB device number 13 using xhci_hcd
[857238.812309] usb 3-2.6: New USB device found, idVendor=05e3, idProduct=0608
[857238.812315] usb 3-2.6: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[857238.812317] usb 3-2.6: Product: USB2.0 Hub
[857238.813500] hub 3-2.6:1.0: USB hub found
[857238.814145] hub 3-2.6:1.0: 3 ports detected
[857238.845766] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
[857238.845780] device enp0s25 entered promiscuous mode
[857239.089176] usb 3-2.6.1: new low-speed USB device number 14 using xhci_hcd
[857239.194548] usb 3-2.6.1: New USB device found, idVendor=03f0, idProduct=0024
[857239.194556] usb 3-2.6.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[857239.194568] usb 3-2.6.1: Product: HP Basic USB Keyboard
[857239.194571] usb 3-2.6.1: Manufacturer: CHICONY
[857239.194834] usb 3-2.6.1: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
[857239.205295] input: CHICONY HP Basic USB Keyboard as /devices/pci0000:00/0000:00:1c.6/0000:0e:00.0/usb3/3-2/3-2.6/3-2.6.1/3-2.6.1:1.0/0003:03F0:0024.007F/input/input143
[857239.261996] hid-generic 0003:03F0:0024.007F: input,hidraw0: USB HID v1.11 Keyboard [CHICONY HP Basic USB Keyboard] on usb-0000:0e:00.0-2.6.1/input0
[857239.333215] usb 3-2.6.2: new low-speed USB device number 15 using xhci_hcd
[857239.428465] usb 3-2.6.2: New USB device found, idVendor=0461, idProduct=4d81
[857239.428475] usb 3-2.6.2: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[857239.428480] usb 3-2.6.2: Product: USB Optical Mouse
[857239.428928] usb 3-2.6.2: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
[857239.434146] input: USB Optical Mouse as /devices/pci0000:00/0000:00:1c.6/0000:0e:00.0/usb3/3-2/3-2.6/3-2.6.2/3-2.6.2:1.0/0003:0461:4D81.0080/input/input144
[857239.489618] hid-generic 0003:0461:4D81.0080: input,hidraw1: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:0e:00.0-2.6.2/input0
[857239.561241] usb 3-2.6.3: new low-speed USB device number 16 using xhci_hcd
[857239.561282] usb 2-1.4: new high-speed USB device number 81 using ehci-pci
[857239.658244] usb 3-2.6.3: New USB device found, idVendor=10d5, idProduct=000d
[857239.658250] usb 3-2.6.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[857239.658254] usb 3-2.6.3: Product: HA2-A3
[857239.658257] usb 3-2.6.3: Manufacturer: No brand
[857239.658260] usb 3-2.6.3: SerialNumber: 0\xffffffc2\xffffff92
[857239.658491] usb 3-2.6.3: ep 0x2 - rounding interval to 64 microframes, ep desc says 80 microframes
[857239.659467] usb 2-1.4: New USB device found, idVendor=0bdb, idProduct=1911
[857239.659471] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[857239.659474] usb 2-1.4: Product: F5521gw
[857239.659477] usb 2-1.4: Manufacturer: Lenovo
[857239.659480] usb 2-1.4: SerialNumber: EC6EB642ACB4D4A0
[857239.668333] input: No brand HA2-A3 as /devices/pci0000:00/0000:00:1c.6/0000:0e:00.0/usb3/3-2/3-2.6/3-2.6.3/3-2.6.3:1.0/0003:10D5:000D.0081/input/input145
[857239.694445] cdc_acm 2-1.4:1.1: ttyACM0: USB ACM device
[857239.695633] cdc_acm 2-1.4:1.3: ttyACM1: USB ACM device
[857239.697291] cdc_wdm 2-1.4:1.5: cdc-wdm0: USB WDM device
[857239.721813] hid-generic 0003:10D5:000D.0081: input,hidraw2: USB HID v1.10 Keyboard [No brand HA2-A3] on usb-0000:0e:00.0-2.6.3/input0
[857239.723083] usbhid 3-2.6.3:1.1: couldn't find an input interrupt endpoint
[857239.728826] cdc_ncm 2-1.4:1.6: MAC-Address: 02:80:37:ec:02:00
[857239.729408] cdc_ncm 2-1.4:1.6 wwan0: register 'cdc_ncm' at usb-0000:00:1d.0-1.4, Mobile Broadband Network Device, 02:80:37:ec:02:00
[857239.730740] cdc_wdm 2-1.4:1.8: cdc-wdm1: USB WDM device
[857239.731157] cdc_acm 2-1.4:1.9: ttyACM2: USB ACM device
[857239.816643] cdc_ncm 2-1.4:1.6 wwp0s29u1u4i6: renamed from wwan0
[857239.875686] cdc_wdm 2-1.4:1.5: wdm_int_callback - 0 bytes
[857239.940681] cdc_wdm 2-1.4:1.8: wdm_int_callback - 0 bytes
[857386.214156] iwlwifi 0000:03:00.0: L1 Enabled - LTR Disabled
[857386.214405] iwlwifi 0000:03:00.0: L1 Enabled - LTR Disabled
[857386.214507] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[857386.485408] iwlwifi 0000:03:00.0: L1 Enabled - LTR Disabled
[857386.485704] iwlwifi 0000:03:00.0: L1 Enabled - LTR Disabled
[857386.485808] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[857386.567593] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[857386.611888] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[857389.650315] wlp3s0: authenticate with a4:2b:b0:cd:c6:f2
[857389.654954] wlp3s0: send auth to a4:2b:b0:cd:c6:f2 (try 1/3)
[857389.656335] wlp3s0: authenticated
[857389.660041] wlp3s0: associate with a4:2b:b0:cd:c6:f2 (try 1/3)
[857389.661440] wlp3s0: RX AssocResp from a4:2b:b0:cd:c6:f2 (capab=0x11 status=0 aid=5)
[857389.680783] wlp3s0: associated
[857389.680836] IPv6: ADDRCONF(NETDEV_CHANGE): wlp3s0: link becomes ready
[857389.684613] cfg80211: Regulatory domain changed to country: US
[857389.684616] cfg80211: DFS Master region: FCC
[857389.684617] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[857389.684618] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 3000 mBm), (N/A)
[857389.684620] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 1700 mBm), (N/A)
[857389.684621] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2300 mBm), (0 s)
[857389.684622] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2300 mBm), (0 s)
[857389.684623] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 3000 mBm), (N/A)
[857389.684624] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
[884430.830117] device enp0s25 left promiscuous mode
[884430.840053] wlp3s0: deauthenticating from a4:2b:b0:cd:c6:f2 by local choice (Reason: 3=DEAUTH_LEAVING)
[884430.894323] cfg80211: World regulatory domain updated:
[884430.894328] cfg80211: DFS Master region: unset
[884430.894330] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[884430.894333] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[884430.894335] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[884430.894337] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[884430.894339] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
[884430.894341] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
[884430.894343] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[884430.894345] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[884430.894347] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[884431.726774] PM: Syncing filesystems ... done.
[884431.767363] PM: Preparing system for sleep (mem)
[884431.771817] Freezing user space processes ... (elapsed 0.002 seconds) done.
[884431.774712] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[884431.776406] PM: Suspending system (mem)
[884431.776432] Suspending console(s) (use no_console_suspend to debug)
[884431.956381] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[884431.957878] sd 0:0:0:0: [sda] Stopping disk
[884432.234508] e1000e: EEE TX LPI TIMER: 00000011
[884432.304182] PM: suspend of devices complete after 527.513 msecs
[884432.318179] PM: late suspend of devices complete after 13.986 msecs
[884432.321739] pcieport 0000:00:1c.6: System wakeup enabled by ACPI
[884432.321901] ehci-pci 0000:00:1d.0: System wakeup enabled by ACPI
[884432.322216] ehci-pci 0000:00:1a.0: System wakeup enabled by ACPI
[884432.322230] e1000e 0000:00:19.0: System wakeup enabled by ACPI
[884432.338021] PM: noirq suspend of devices complete after 19.829 msecs
[884432.338446] ACPI: Preparing to enter system sleep state S3
[884432.510021] ACPI : EC: EC stopped
[884432.510022] PM: Saving platform NVS memory
[884432.510032] Disabling non-boot CPUs ...
[884432.510622] Broke affinity for irq 16
[884432.510627] Broke affinity for irq 23
[884432.510636] Broke affinity for irq 28
[884432.510642] Broke affinity for irq 30
[884432.510649] Broke affinity for irq 33
[884432.511683] smpboot: CPU 1 is now offline
[884432.523084] Broke affinity for irq 16
[884432.523091] Broke affinity for irq 23
[884432.523110] Broke affinity for irq 28
[884432.523114] Broke affinity for irq 30
[884432.523120] Broke affinity for irq 33
[884432.523123] Broke affinity for irq 36
[884432.524151] smpboot: CPU 2 is now offline
[884432.539105] Broke affinity for irq 1
[884432.539111] Broke affinity for irq 8
[884432.539115] Broke affinity for irq 9
[884432.539119] Broke affinity for irq 12
[884432.539124] Broke affinity for irq 16
[884432.539129] Broke affinity for irq 23
[884432.539135] Broke affinity for irq 26
[884432.539139] Broke affinity for irq 27
[884432.539143] Broke affinity for irq 28
[884432.539147] Broke affinity for irq 29
[884432.539151] Broke affinity for irq 30
[884432.539155] Broke affinity for irq 32
[884432.539160] Broke affinity for irq 33
[884432.539164] Broke affinity for irq 36
[884432.540219] smpboot: CPU 3 is now offline
[884432.558065] ACPI: Low-level resume complete
[884432.558143] ACPI : EC: EC started
[884432.558144] PM: Restoring platform NVS memory
[884432.558704] Enabling non-boot CPUs ...
[884432.577999] x86: Booting SMP configuration:
[884432.578001] smpboot: Booting Node 0 Processor 1 APIC 0x1
[884432.579105] Disabled fast string operations
[884432.613818] cache: parent cpu1 should not be sleeping
[884432.614155] CPU1 is up
[884432.634077] smpboot: Booting Node 0 Processor 2 APIC 0x2
[884432.634940] Disabled fast string operations
[884432.665797] cache: parent cpu2 should not be sleeping
[884432.666138] CPU2 is up
[884432.686210] smpboot: Booting Node 0 Processor 3 APIC 0x3
[884432.687174] Disabled fast string operations
[884432.721777] cache: parent cpu3 should not be sleeping
[884432.722103] CPU3 is up
[884432.730467] ACPI: Waking up from system sleep state S3
[884432.925928] thinkpad_acpi: EC reports that Thermal Table has changed
[884433.111442] sdhci-pci 0000:0d:00.0: MMC controller base frequency changed to 50Mhz.
[884433.111564] ehci-pci 0000:00:1d.0: System wakeup disabled by ACPI
[884433.112288] pcieport 0000:00:1c.6: System wakeup disabled by ACPI
[884433.112526] ehci-pci 0000:00:1a.0: System wakeup disabled by ACPI
[884433.113316] PM: noirq resume of devices complete after 19.716 msecs
[884433.114081] PM: early resume of devices complete after 0.713 msecs
[884433.114203] e1000e 0000:00:19.0: System wakeup disabled by ACPI
[884433.114621] usb usb3: root hub lost power or was reset
[884433.114625] usb usb4: root hub lost power or was reset
[884433.115255] rtc_cmos 00:02: System wakeup disabled by ACPI
[884433.129716] sd 0:0:0:0: [sda] Starting disk
[884433.149638] tpm_tis 00:05: TPM is disabled/deactivated (0x6)
[884433.345635] usb 2-1.4: reset high-speed USB device number 81 using ehci-pci
[884433.345666] usb 1-1.4: reset full-speed USB device number 3 using ehci-pci
[884433.437861] usb 2-1.4: device firmware changed
[884433.449621] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[884433.450064] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[884433.450082] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[884433.450085] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[884433.450309] ata1.00: supports DRM functions and may not be fully accessible
[884433.450875] ata1.00: disabling queued TRIM support
[884433.451608] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[884433.451613] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[884433.451617] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[884433.451829] ata1.00: supports DRM functions and may not be fully accessible
[884433.452038] ata1.00: disabling queued TRIM support
[884433.452366] ata1.00: configured for UDMA/133
[884433.457604] ata2: SATA link down (SStatus 0 SControl 300)
[884433.465599] ata5: SATA link down (SStatus 0 SControl 300)
[884433.509621] usb 1-1.6: reset high-speed USB device number 4 using ehci-pci
[884433.921938] psmouse serio1: synaptics: queried max coordinates: x [..5472], y [..4448]
[884433.951807] PM: resume of devices complete after 837.757 msecs
[884433.952811] PM: Finishing wakeup.
[884433.952815] Restarting tasks ...
[884433.952981] usb 3-2: USB disconnect, device number 9
[884433.952992] usb 3-2.6: USB disconnect, device number 13
[884433.952998] usb 3-2.6.1: USB disconnect, device number 14
[884433.961864] usb 2-1.4: USB disconnect, device number 81
[884433.965209] usb 3-2.6.2: USB disconnect, device number 15
[884433.966423] done.
[884433.970912] cdc_ncm 2-1.4:1.6 wwp0s29u1u4i6: unregister 'cdc_ncm' usb-0000:00:1d.0-1.4, Mobile Broadband Network Device
[884434.009878] usb 3-2.6.3: USB disconnect, device number 16
[884434.073684] usb 2-1.4: new high-speed USB device number 82 using ehci-pci
[884434.166450] usb 2-1.4: New USB device found, idVendor=0bdb, idProduct=1912
[884434.166454] usb 2-1.4: New USB device strings: Mfr=0, Product=2, SerialNumber=5
[884434.166456] usb 2-1.4: Product: 㕆㈵朱w
[884434.166458] usb 2-1.4: SerialNumber: EC6EB642ACB4D4A0
[884434.183527] e1000e: enp0s25 NIC Link is Down
[884434.183639] device enp0s25 entered promiscuous mode
[884434.184419] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[884434.184644] iwlwifi 0000:03:00.0: L1 Enabled - LTR Disabled
[884434.184888] iwlwifi 0000:03:00.0: L1 Enabled - LTR Disabled
[884434.184983] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[884434.213201] usbhid 2-1.4:1.0: can't add hid device: -71
[884434.213216] usbhid: probe of 2-1.4:1.0 failed with error -71
[884434.397941] usb 2-1.4: USB disconnect, device number 82
[884434.454344] iwlwifi 0000:03:00.0: L1 Enabled - LTR Disabled
[884434.454588] iwlwifi 0000:03:00.0: L1 Enabled - LTR Disabled
[884434.454686] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[884434.534385] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[884434.536413] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
[884434.781736] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
[884434.889547] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[884435.217467] usb 2-1.4: new high-speed USB device number 83 using ehci-pci
[884435.316401] usb 2-1.4: New USB device found, idVendor=0bdb, idProduct=1911
[884435.316405] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[884435.316407] usb 2-1.4: Product: F5521gw
[884435.316409] usb 2-1.4: Manufacturer: Lenovo
[884435.316410] usb 2-1.4: SerialNumber: EC6EB642ACB4D4A0
[884435.348365] cdc_acm 2-1.4:1.1: ttyACM0: USB ACM device
[884435.354859] cdc_acm 2-1.4:1.3: ttyACM1: USB ACM device
[884435.356059] cdc_wdm 2-1.4:1.5: cdc-wdm0: USB WDM device
[884435.387275] cdc_ncm 2-1.4:1.6: MAC-Address: 02:80:37:ec:02:00
[884435.387772] cdc_ncm 2-1.4:1.6 wwan0: register 'cdc_ncm' at usb-0000:00:1d.0-1.4, Mobile Broadband Network Device, 02:80:37:ec:02:00
[884435.388483] cdc_wdm 2-1.4:1.8: cdc-wdm1: USB WDM device
[884435.388838] cdc_acm 2-1.4:1.9: ttyACM2: USB ACM device
[884435.451391] cdc_wdm 2-1.4:1.8: wdm_int_callback - 0 bytes
[884435.475723] cdc_ncm 2-1.4:1.6 wwp0s29u1u4i6: renamed from wwan0
[884435.533399] cdc_wdm 2-1.4:1.5: wdm_int_callback - 0 bytes
[884483.355573] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[884496.346133] IPv6: ADDRCONF(NETDEV_UP): wwp0s29u1u4i6: link is not ready
[884496.348719] cdc_ncm 2-1.4:1.6 wwp0s29u1u4i6: network connection: disconnected
[884496.356722] cdc_ncm 2-1.4:1.6 wwp0s29u1u4i6: network connection: disconnected
[884496.364717] cdc_ncm 2-1.4:1.6 wwp0s29u1u4i6: 21 mbit/s downlink 5 mbit/s uplink
[884496.372722] cdc_ncm 2-1.4:1.6 wwp0s29u1u4i6: network connection: connected
[888365.405434] device enp0s25 left promiscuous mode
[888366.810869] PM: Syncing filesystems ... done.
[888366.836600] PM: Preparing system for sleep (mem)
[888366.837169] Freezing user space processes ... (elapsed 0.003 seconds) done.
[888366.840226] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[888366.841988] PM: Suspending system (mem)
[888366.842011] Suspending console(s) (use no_console_suspend to debug)
[888367.011896] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[888367.013379] sd 0:0:0:0: [sda] Stopping disk
[888367.293034] e1000e: EEE TX LPI TIMER: 00000011
[888367.366363] PM: suspend of devices complete after 524.382 msecs
[888367.380594] PM: late suspend of devices complete after 14.219 msecs
[888367.384677] pcieport 0000:00:1c.6: System wakeup enabled by ACPI
[888367.384786] ehci-pci 0000:00:1d.0: System wakeup enabled by ACPI
[888367.385006] ehci-pci 0000:00:1a.0: System wakeup enabled by ACPI
[888367.385154] e1000e 0000:00:19.0: System wakeup enabled by ACPI
[888367.400639] PM: noirq suspend of devices complete after 20.050 msecs
[888367.401118] ACPI: Preparing to enter system sleep state S3
[888367.572199] ACPI : EC: EC stopped
[888367.572201] PM: Saving platform NVS memory
[888367.572212] Disabling non-boot CPUs ...
[888367.572846] Broke affinity for irq 16
[888367.572854] Broke affinity for irq 26
[888367.572860] Broke affinity for irq 28
[888367.572865] Broke affinity for irq 30
[888367.572873] Broke affinity for irq 33
[888367.573902] smpboot: CPU 1 is now offline
[888367.585322] Broke affinity for irq 16
[888367.585329] Broke affinity for irq 26
[888367.585334] Broke affinity for irq 28
[888367.585339] Broke affinity for irq 30
[888367.585344] Broke affinity for irq 33
[888367.585348] Broke affinity for irq 36
[888367.586381] smpboot: CPU 2 is now offline
[888367.597029] Broke affinity for irq 1
[888367.597035] Broke affinity for irq 8
[888367.597040] Broke affinity for irq 9
[888367.597045] Broke affinity for irq 12
[888367.597050] Broke affinity for irq 16
[888367.597065] Broke affinity for irq 23
[888367.597068] Broke affinity for irq 26
[888367.597071] Broke affinity for irq 27
[888367.597073] Broke affinity for irq 28
[888367.597075] Broke affinity for irq 29
[888367.597078] Broke affinity for irq 30
[888367.597080] Broke affinity for irq 32
[888367.597083] Broke affinity for irq 33
[888367.597085] Broke affinity for irq 36
[888367.598115] smpboot: CPU 3 is now offline
[888367.613964] ACPI: Low-level resume complete
[888367.614003] ACPI : EC: EC started
[888367.614004] PM: Restoring platform NVS memory
[888367.614394] Enabling non-boot CPUs ...
[888367.634119] x86: Booting SMP configuration:
[888367.634122] smpboot: Booting Node 0 Processor 1 APIC 0x1
[888367.635011] Disabled fast string operations
[888367.681889] cache: parent cpu1 should not be sleeping
[888367.682114] CPU1 is up
[888367.702155] smpboot: Booting Node 0 Processor 2 APIC 0x2
[888367.702986] Disabled fast string operations
[888367.749851] cache: parent cpu2 should not be sleeping
[888367.750071] CPU2 is up
[888367.770250] smpboot: Booting Node 0 Processor 3 APIC 0x3
[888367.771174] Disabled fast string operations
[888367.821785] cache: parent cpu3 should not be sleeping
[888367.821998] CPU3 is up
[888367.829217] ACPI: Waking up from system sleep state S3
[888368.021856] thinkpad_acpi: EC reports that Thermal Table has changed
[888368.229863] ehci-pci 0000:00:1d.0: System wakeup disabled by ACPI
[888368.230672] ehci-pci 0000:00:1a.0: System wakeup disabled by ACPI
[888368.234415] sdhci-pci 0000:0d:00.0: MMC controller base frequency changed to 50Mhz.
[888368.234714] pcieport 0000:00:1c.6: System wakeup disabled by ACPI
[888368.234939] PM: noirq resume of devices complete after 25.491 msecs
[888368.235476] PM: early resume of devices complete after 0.480 msecs
[888368.237465] e1000e 0000:00:19.0: System wakeup disabled by ACPI
[888368.237790] rtc_cmos 00:02: System wakeup disabled by ACPI
[888368.237872] usb usb3: root hub lost power or was reset
[888368.237874] usb usb4: root hub lost power or was reset
[888368.242138] sd 0:0:0:0: [sda] Starting disk
[888368.273449] tpm_tis 00:05: TPM is disabled/deactivated (0x6)
[888368.469362] usb 1-1.4: reset full-speed USB device number 3 using ehci-pci
[888368.473335] usb 2-1.4: reset high-speed USB device number 83 using ehci-pci
[888368.565489] usb 2-1.4: device firmware changed
[888368.569257] ata5: SATA link down (SStatus 0 SControl 300)
[888368.569284] ata2: SATA link down (SStatus 0 SControl 300)
[888368.577270] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[888368.577663] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[888368.577682] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[888368.577685] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[888368.577896] ata1.00: supports DRM functions and may not be fully accessible
[888368.578378] ata1.00: disabling queued TRIM support
[888368.579209] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[888368.579215] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[888368.579232] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[888368.579450] ata1.00: supports DRM functions and may not be fully accessible
[888368.579764] ata1.00: disabling queued TRIM support
[888368.580129] ata1.00: configured for UDMA/133