Sign in New API Help About

65.3 KB of Plain text
Created 1 day, 15 hours ago — expires in 29 days
Viewed 14 times
https://dpaste.com/DWVZBX25Q
COPY TO CLIPBOARD SOFT WRAP RAW TEXT DUPLICATE DIFF EDIT PROPERTIES DELETE
  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
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd4b0]
[    0.000000] Linux version 6.2.0-1003-laptop (buildd@bos01-arm64-013) (aarch64-linux-gnu-gcc-12 (Ubuntu 12.2.0-17ubuntu1) 12.2.0, GNU ld (GNU Binutils for Ubuntu) 2.40) #4-Ubuntu SMP PREEMPT_DYNAMIC Thu Mar 16 17:50:57 UTC 2023 (Ubuntu 6.2.0-1003.4-laptop 6.2.2)
[    0.000000] Machine model: Lenovo ThinkPad X13s
[    0.000000] efi: EFI v2.70 by Lenovo
[    0.000000] efi: RTPROP=0x9e373398 MEMATTR=0x99d75018 ESRT=0x9b6af618 SMBIOS=0x9e3bb000 MOKvar=0x9e2d6000 TPMEventLog=0x81977018 RNG=0x9e4d0f18 MEMRESERVE=0x8197d718 
[    0.000000] random: crng init done
[    0.000000] TPM Final Events table not present
[    0.000000] secureboot: Secure boot disabled
[    0.000000] esrt: Reserving ESRT space from 0x000000009b6af618 to 0x000000009b6af6c8.
[    0.000000] Reserved memory: created CMA memory pool at 0x000000026c200000, size 128 MiB
[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
[    0.000000] NUMA: No NUMA configuration found
[    0.000000] NUMA: Faking a node at [mem 0x0000000080600000-0x000000027fffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x27f0b4800-0x27f0b9fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000080600000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000027fffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000080600000-0x00000000806fffff]
[    0.000000]   node   0: [mem 0x0000000080880000-0x00000000808affff]
[    0.000000]   node   0: [mem 0x00000000808c0000-0x00000000808effff]
[    0.000000]   node   0: [mem 0x0000000080c00000-0x0000000081c29fff]
[    0.000000]   node   0: [mem 0x0000000081c2a000-0x00000000822f1fff]
[    0.000000]   node   0: [mem 0x00000000822f2000-0x00000000826fffff]
[    0.000000]   node   0: [mem 0x000000008e400000-0x000000009df5ffff]
[    0.000000]   node   0: [mem 0x000000009df60000-0x000000009e40bfff]
[    0.000000]   node   0: [mem 0x000000009e40c000-0x000000009f5cffff]
[    0.000000]   node   0: [mem 0x000000009f5f7000-0x000000009f5fffff]
[    0.000000]   node   0: [mem 0x000000009f600000-0x00000000ae9fffff]
[    0.000000]   node   0: [mem 0x00000000aea00000-0x00000000bfffffff]
[    0.000000]   node   0: [mem 0x00000000c6200000-0x00000000c85fffff]
[    0.000000]   node   0: [mem 0x00000000c8600000-0x000000027fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000080600000-0x000000027fffffff]
[    0.000000] On node 0, zone DMA: 1536 pages in unavailable ranges
[    0.000000] On node 0, zone DMA: 384 pages in unavailable ranges
[    0.000000] On node 0, zone DMA: 16 pages in unavailable ranges
[    0.000000] On node 0, zone DMA: 784 pages in unavailable ranges
[    0.000000] On node 0, zone DMA: 48384 pages in unavailable ranges
[    0.000000] On node 0, zone DMA: 39 pages in unavailable ranges
[    0.000000] On node 0, zone DMA: 25088 pages in unavailable ranges
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.1
[    0.000000] psci: OSI mode supported.
[    0.000000] psci: [Firmware Bug]: failed to set PC mode: -3
[    0.000000] percpu: Embedded 31 pages/cpu s86440 r8192 d32344 u126976
[    0.000000] pcpu-alloc: s86440 r8192 d32344 u126976 alloc=31*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: detected: Address authentication (architected QARMA5 algorithm)
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Hardware dirty bit management
[    0.000000] CPU features: detected: Spectre-v4
[    0.000000] CPU features: detected: Spectre-BHB
[    0.000000] CPU features: kernel page table isolation forced ON by KASLR
[    0.000000] CPU features: detected: Kernel page table isolation (KPTI)
[    0.000000] alternatives: applying boot alternatives
[    0.000000] Fallback order for Node 0: 0 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1989344
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.2.0-1003-laptop root=UUID=a8938681-d054-4b1d-a9d7-6f7a0b037041 ro iommu.strict=0 pd_ignore_unused clk_ignore_unused
[    0.000000] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-6.2.0-1003-laptop", will be passed to user space.
[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.000000] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    0.000000] software IO TLB: area num 8.
[    0.000000] software IO TLB: mapped [mem 0x00000000fbfff000-0x00000000fffff000] (64MB)
[    0.000000] Memory: 7235736K/8083684K available (21312K kernel code, 5152K rwdata, 27796K rodata, 11264K init, 1295K bss, 716876K reserved, 131072K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] ftrace: allocating 58616 entries in 229 pages
[    0.000000] ftrace: allocated 229 pages with 5 groups
[    0.000000] trace event string verifier disabled
[    0.000000] Dynamic Preempt: voluntary
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
[    0.000000] 	Trampoline variant of Tasks RCU enabled.
[    0.000000] 	Rude variant of Tasks RCU enabled.
[    0.000000] 	Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: 960 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] Root IRQ handler: gic_handle_irq
[    0.000000] GICv3: GICv3 features: 16 PPIs
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000017a60000
[    0.000000] ITS [mem 0x17a40000-0x17a5ffff]
[    0.000000] ITS@0x0000000017a40000: allocated 8192 Devices @100200000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000000017a40000: allocated 32768 Interrupt Collections @100210000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] GICv3: using LPI property table @0x0000000100230000
[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000100240000
[    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns
[    0.000000] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns
[    0.000119] Console: colour dummy device 80x25
[    0.000123] printk: console [tty0] enabled
[    0.000342] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=76800)
[    0.000350] pid_max: default: 32768 minimum: 301
[    0.000389] LSM: initializing lsm=lockdown,capability,landlock,yama,integrity,apparmor
[    0.000410] landlock: Up and running.
[    0.000414] Yama: becoming mindful.
[    0.000452] AppArmor: AppArmor initialized
[    0.000507] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.000520] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.001183] cblist_init_generic: Setting adjustable number of callback queues.
[    0.001195] cblist_init_generic: Setting shift to 3 and lim to 1.
[    0.001221] cblist_init_generic: Setting shift to 3 and lim to 1.
[    0.001245] cblist_init_generic: Setting shift to 3 and lim to 1.
[    0.001306] rcu: Hierarchical SRCU implementation.
[    0.001310] rcu: 	Max phase no-delay instances is 1000.
[    0.001752] Platform MSI: gic-its@17a40000 domain created
[    0.001811] PCI/MSI: /soc@0/interrupt-controller@17a00000/gic-its@17a40000 domain created
[    0.001868] fsl-mc MSI: gic-its@17a40000 domain created
[    0.003044] Remapping and enabling EFI services.
[    0.003579] smp: Bringing up secondary CPUs ...
[    0.004103] Detected PIPT I-cache on CPU1
[    0.004180] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000
[    0.004195] GICv3: CPU1: using allocated LPI pending table @0x0000000100250000
[    0.004222] CPU1: Booted secondary processor 0x0000000100 [0x410fd4b0]
[    0.004838] Detected PIPT I-cache on CPU2
[    0.004889] GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000
[    0.004900] GICv3: CPU2: using allocated LPI pending table @0x0000000100260000
[    0.004924] CPU2: Booted secondary processor 0x0000000200 [0x410fd4b0]
[    0.005506] Detected PIPT I-cache on CPU3
[    0.005550] GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000
[    0.005560] GICv3: CPU3: using allocated LPI pending table @0x0000000100270000
[    0.005581] CPU3: Booted secondary processor 0x0000000300 [0x410fd4b0]
[    0.008168] Detected PIPT I-cache on CPU4
[    0.008210] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000
[    0.008218] GICv3: CPU4: using allocated LPI pending table @0x0000000100280000
[    0.008238] CPU4: Booted secondary processor 0x0000000400 [0x410fd4c0]
[    0.008838] Detected PIPT I-cache on CPU5
[    0.008878] GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000
[    0.008887] GICv3: CPU5: using allocated LPI pending table @0x0000000100290000
[    0.008906] CPU5: Booted secondary processor 0x0000000500 [0x410fd4c0]
[    0.009532] Detected PIPT I-cache on CPU6
[    0.009573] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000
[    0.009581] GICv3: CPU6: using allocated LPI pending table @0x00000001002a0000
[    0.009601] CPU6: Booted secondary processor 0x0000000600 [0x410fd4c0]
[    0.010242] Detected PIPT I-cache on CPU7
[    0.010284] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000
[    0.010292] GICv3: CPU7: using allocated LPI pending table @0x00000001002b0000
[    0.010313] CPU7: Booted secondary processor 0x0000000700 [0x410fd4c0]
[    0.010359] smp: Brought up 1 node, 8 CPUs
[    0.010419] SMP: Total of 8 processors activated.
[    0.010423] CPU features: detected: 32-bit EL0 Support
[    0.010427] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    0.010431] CPU features: detected: Common not Private translations
[    0.010435] CPU features: detected: CRC32 instructions
[    0.010438] CPU features: detected: Data cache clean to Point of Persistence
[    0.010442] CPU features: detected: Generic authentication (architected QARMA5 algorithm)
[    0.010446] CPU features: detected: RCpc load-acquire (LDAPR)
[    0.010449] CPU features: detected: LSE atomic instructions
[    0.010453] CPU features: detected: Privileged Access Never
[    0.010455] CPU features: detected: RAS Extension Support
[    0.010460] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    0.010530] CPU: All CPU(s) started at EL1
[    0.010539] alternatives: applying system-wide alternatives
[    0.013591] devtmpfs: initialized
[    0.018437] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.018457] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.019085] pinctrl core: initialized pinctrl subsystem
[    0.019873] SMBIOS 3.3 present.
[    0.019882] DMI: LENOVO 4810QL0100/4810QL0100, BIOS N3HET76W (1.48 ) 12/23/2022
[    0.020085] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.020611] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    0.020745] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.020874] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.020902] audit: initializing netlink subsys (disabled)
[    0.020973] audit: type=2000 audit(0.016:1): state=initialized audit_enabled=0 res=1
[    0.021492] thermal_sys: Registered thermal governor 'fair_share'
[    0.021495] thermal_sys: Registered thermal governor 'bang_bang'
[    0.021501] thermal_sys: Registered thermal governor 'step_wise'
[    0.021504] thermal_sys: Registered thermal governor 'user_space'
[    0.021507] thermal_sys: Registered thermal governor 'power_allocator'
[    0.021532] cpuidle: using governor ladder
[    0.021542] cpuidle: using governor menu
[    0.021615] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.021696] ASID allocator initialised with 32768 entries
[    0.022200] Serial: AMBA PL011 UART driver
[    0.030520] platform af00000.clock-controller: Fixing up cyclic dependency with aec5a00.phy
[    0.035566] KASLR enabled
[    0.035913] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.035921] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.035925] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
[    0.035928] HugeTLB: 508 KiB vmemmap can be freed for a 32.0 MiB page
[    0.035931] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.035933] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.035936] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
[    0.035938] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
[    0.036570] fbcon: Taking over console
[    0.036583] ACPI: Interpreter disabled.
[    0.042269] iommu: Default domain type: Translated 
[    0.042274] iommu: DMA domain TLB invalidation policy: lazy mode (set via kernel command line)
[    0.042469] SCSI subsystem initialized
[    0.042508] libata version 3.00 loaded.
[    0.042544] usbcore: registered new interface driver usbfs
[    0.042553] usbcore: registered new interface driver hub
[    0.042561] usbcore: registered new device driver usb
[    0.042636] pps_core: LinuxPPS API ver. 1 registered
[    0.042639] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.042644] PTP clock support registered
[    0.042687] EDAC MC: Ver: 3.0.0
[    0.042830] CPUidle PSCI: Initialized CPU PM domain topology using OSI mode
[    0.042893] qcom_scm: convention: smc arm 64
[    0.043386] NetLabel: Initializing
[    0.043389] NetLabel:  domain hash size = 128
[    0.043391] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.043410] NetLabel:  unlabeled traffic allowed by default
[    0.043461] mctp: management component transport protocol core
[    0.043464] NET: Registered PF_MCTP protocol family
[    0.043515] vgaarb: loaded
[    0.043604] clocksource: Switched to clocksource arch_sys_counter
[    0.043747] VFS: Disk quotas dquot_6.6.0
[    0.043760] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.043925] AppArmor: AppArmor Filesystem Enabled
[    0.043939] pnp: PnP ACPI: disabled
[    0.045672] NET: Registered PF_INET protocol family
[    0.045758] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.047500] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.047526] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.047567] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.047746] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.047894] TCP: Hash tables configured (established 65536 bind 65536)
[    0.047969] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
[    0.048001] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.048024] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.048076] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.048087] NET: Registered PF_XDP protocol family
[    0.048092] PCI: CLS 0 bytes, default 64
[    0.048173] Trying to unpack rootfs image as initramfs...
[    0.056123] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    0.056284] kvm [1]: HYP mode not available
[    0.065389] Initialise system trusted keyrings
[    0.065403] Key type blacklist registered
[    0.065451] workingset: timestamp_bits=40 max_order=21 bucket_order=0
[    0.065477] zbud: loaded
[    0.065718] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.065803] fuse: init (API version 7.38)
[    0.065902] integrity: Platform Keyring initialized
[    0.065910] integrity: Machine keyring initialized
[    0.078819] Key type asymmetric registered
[    0.078822] Asymmetric key parser 'x509' registered
[    0.078840] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[    0.078887] io scheduler mq-deadline registered
[    0.081963] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.088723] vreg_s10b: Setting 1800000-1800000uV
[    0.088840] vreg_s11b: Setting 1272000-1272000uV
[    0.088921] vreg_s12b: Setting 984000-984000uV
[    0.089011] vreg_l3b: Setting 1200000-1200000uV
[    0.089079] vreg_l4b: Setting 912000-912000uV
[    0.089146] vreg_l6b: Setting 880000-880000uV
[    0.089237] vreg_l1c: Setting 1800000-1800000uV
[    0.089298] vreg_l12c: Setting 1800000-1800000uV
[    0.089352] vreg_l13c: Setting 3072000-3072000uV
[    0.089414] vreg_bob: Setting 3008000-3960000uV
[    0.089488] vreg_l3d: Setting 1200000-1200000uV
[    0.089567] vreg_l4d: Setting 1200000-1200000uV
[    0.089624] vreg_l6d: Setting 880000-880000uV
[    0.089680] vreg_l7d: Setting 3072000-3072000uV
[    0.089742] vreg_l9d: Setting 912000-912000uV
[    0.090143] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.091986] msm_serial: driver initialized
[    0.092772] arm-smmu 3da0000.iommu: probing hardware configuration...
[    0.092777] arm-smmu 3da0000.iommu: SMMUv2 with:
[    0.092798] arm-smmu 3da0000.iommu: 	stage 1 translation
[    0.092801] arm-smmu 3da0000.iommu: 	non-coherent table walk
[    0.092804] arm-smmu 3da0000.iommu: 	(IDR0.CTTW overridden by FW configuration)
[    0.092807] arm-smmu 3da0000.iommu: 	stream matching with 9 register groups
[    0.092822] arm-smmu 3da0000.iommu: 	7 context banks (0 stage-2 only)
[    0.092839] arm-smmu 3da0000.iommu: 	Supported page sizes: 0x61311000
[    0.092842] arm-smmu 3da0000.iommu: 	Stage-1: 48-bit VA -> 36-bit IPA
[    0.092937] arm-smmu 3da0000.iommu: 	preserved 0 boot mappings
[    0.095007] arm-smmu 15000000.iommu: probing hardware configuration...
[    0.095011] arm-smmu 15000000.iommu: SMMUv2 with:
[    0.095017] arm-smmu 15000000.iommu: 	stage 1 translation
[    0.095019] arm-smmu 15000000.iommu: 	non-coherent table walk
[    0.095022] arm-smmu 15000000.iommu: 	(IDR0.CTTW overridden by FW configuration)
[    0.095025] arm-smmu 15000000.iommu: 	stream matching with 162 register groups
[    0.095031] arm-smmu 15000000.iommu: 	110 context banks (0 stage-2 only)
[    0.095454] arm-smmu 15000000.iommu: 	Supported page sizes: 0x61311000
[    0.095457] arm-smmu 15000000.iommu: 	Stage-1: 36-bit VA -> 36-bit IPA
[    0.095511] arm-smmu 15000000.iommu: 	preserved 0 boot mappings
[    0.098888] loop: module loaded
[    0.099278] spmi spmi-0: PMIC arbiter version v5 (0x50020000)
[    0.101274] tun: Universal TUN/TAP device driver, 1.6
[    0.101530] PPP generic driver version 2.4.2
[    0.101906] mousedev: PS/2 mouse device common for all mice
[    0.102078] i2c_dev: i2c /dev entries driver
[    0.104397] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    0.104412] device-mapper: uevent: version 1.0.3
[    0.104455] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
[    0.104460] ghes_edac: GHES probing device list is empty
[    0.105329] ledtrig-cpu: registered to indicate activity on CPUs
[    0.105526] efifb: probing for efifb
[    0.105543] efifb: No BGRT, not showing boot graphics
[    0.105546] efifb: framebuffer at 0xc6200000, using 9000k, total 9000k
[    0.105549] efifb: mode is 1920x1200x32, linelength=7680, pages=1
[    0.105552] efifb: scrolling: redraw
[    0.105554] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.105597] efivars: Registered efivars operations
[    0.105676] Console: switching to colour frame buffer device 240x75
[    0.107308] fb0: EFI VGA frame buffer device
[    0.108193] drop_monitor: Initializing network drop monitor service
[    0.168908] NET: Registered PF_INET6 protocol family
[    1.138755] Freeing initrd memory: 87772K
[    1.155808] Segment Routing with IPv6
[    1.155836] In-situ OAM (IOAM) with IPv6
[    1.155884] NET: Registered PF_PACKET protocol family
[    1.155962] Key type dns_resolver registered
[    1.157887] registered taskstats version 1
[    1.158632] Loading compiled-in X.509 certificates
[    1.159379] Loaded X.509 cert 'Build time autogenerated kernel key: d2b04bcdb143a978835429cd1790353d6cc8c072'
[    1.159922] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
[    1.160447] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
[    1.160462] blacklist: Loading compiled-in revocation X.509 certificates
[    1.160496] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
[    1.160523] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03'
[    1.160549] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b'
[    1.160577] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8'
[    1.160603] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d'
[    1.160628] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c'
[    1.160656] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af'
[    1.160683] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9'
[    1.161271] zswap: loaded using pool lzo/zbud
[    1.163445] Key type .fscrypt registered
[    1.163456] Key type fscrypt-provisioning registered
[    1.167114] Key type encrypted registered
[    1.167124] AppArmor: AppArmor sha1 policy hashing enabled
[    1.167139] ima: secureboot mode unknown, no efi
[    1.167148] ima: No TPM chip found, activating TPM-bypass!
[    1.167159] Loading compiled-in module X.509 certificates
[    1.167694] Loaded X.509 cert 'Build time autogenerated kernel key: d2b04bcdb143a978835429cd1790353d6cc8c072'
[    1.167708] ima: Allocated hash algorithm: sha1
[    1.167727] ima: No architecture policies found
[    1.167746] evm: Initialising EVM extended attributes:
[    1.167754] evm: security.selinux
[    1.167760] evm: security.SMACK64
[    1.167766] evm: security.SMACK64EXEC
[    1.167773] evm: security.SMACK64TRANSMUTE
[    1.167779] evm: security.SMACK64MMAP
[    1.167785] evm: security.apparmor
[    1.167791] evm: security.ima
[    1.167797] evm: security.capability
[    1.167803] evm: HMAC attrs: 0x1
[    1.178483] geni_se_qup 8c0000.geniqup: Adding to iommu group 0
[    1.179256] geni_se_qup 9c0000.geniqup: Adding to iommu group 1
[    1.179950] geni_se_qup ac0000.geniqup: Adding to iommu group 2
[    1.186559] PM: genpd: Not disabling unused power domains
[    1.187053] clk: Not disabling unused clocks
[    1.189703] Freeing unused kernel memory: 11264K
[    1.264902] Checked W+X mappings: passed, no W+X pages found
[    1.265799] Run /init as init process
[    1.266654]   with arguments:
[    1.266657]     /init
[    1.266660]   with environment:
[    1.266662]     HOME=/
[    1.266665]     TERM=linux
[    1.266667]     BOOT_IMAGE=/boot/vmlinuz-6.2.0-1003-laptop
[    1.399861] input: gpio-keys as /devices/platform/gpio-keys/input/input0
[    1.408465] NET: Registered PF_QIPCRTR protocol family
[    1.467266] qcom-pcie 1c20000.pcie: supply vdda not found, using dummy regulator
[    1.478636] qcom-pcie 1c20000.pcie: host bridge /soc@0/pcie@1c20000 ranges:
[    1.479237] qcom-pcie 1c20000.pcie:       IO 0x003c200000..0x003c2fffff -> 0x003c200000
[    1.479834] qcom-pcie 1c20000.pcie:      MEM 0x003c300000..0x003dffffff -> 0x003c300000
[    1.497064] remoteproc remoteproc0: 3000000.remoteproc is available
[    1.501329] remoteproc remoteproc0: powering up 3000000.remoteproc
[    1.501917] remoteproc remoteproc0: Booting fw image qcom/sc8280xp/LENOVO/21BX/qcadsp8280.mbn, size 14367860
[    1.521916] remoteproc remoteproc1: 1b300000.remoteproc is available
[    1.523086] remoteproc remoteproc1: powering up 1b300000.remoteproc
[    1.523501] remoteproc remoteproc1: Booting fw image qcom/sc8280xp/LENOVO/21BX/qccdsp8280.mbn, size 3575808
[    1.557760] hid: raw HID events driver (C) Jiri Kosina
[    1.573247] adreno 3d00000.gpu: Adding to iommu group 3
[    1.586644] remoteproc remoteproc0: remote processor 3000000.remoteproc is now up
[    1.596265] remoteproc remoteproc1: remote processor 1b300000.remoteproc is now up
[    1.597228] qcom-pcie 1c20000.pcie: iATU: unroll T, 8 ob, 8 ib, align 4K, limit 1024G
[    1.629365] usbcore: registered new interface driver usb-storage
[    1.633892] usbcore: registered new interface driver uas
[    1.698085] qcom-pcie 1c20000.pcie: PCIe Gen.3 x4 link up
[    1.699256] qcom-pcie 1c20000.pcie: PCI host bridge to bus 0002:00
[    1.699903] pci_bus 0002:00: root bus resource [bus 00-ff]
[    1.700841] pci_bus 0002:00: root bus resource [io  0x0000-0xfffff] (bus address [0x3c200000-0x3c2fffff])
[    1.701756] pci_bus 0002:00: root bus resource [mem 0x3c300000-0x3dffffff]
[    1.702684] pci 0002:00:00.0: [17cb:010e] type 01 class 0x060400
[    1.703609] pci 0002:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[    1.704582] pci 0002:00:00.0: PME# supported from D0 D3hot D3cold
[    1.707346] pci 0002:01:00.0: [1cc4:6302] type 00 class 0x010802
[    1.708348] pci 0002:01:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit]
[    1.710391] pci 0002:01:00.0: 31.504 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x4 link at 0002:00:00.0 (capable of 63.012 Gb/s with 16.0 GT/s PCIe x4 link)
[    1.724779] pci 0002:00:00.0: BAR 14: assigned [mem 0x3c300000-0x3c4fffff]
[    1.725735] pci 0002:00:00.0: BAR 15: assigned [mem 0x3c500000-0x3c6fffff 64bit pref]
[    1.726649] pci 0002:00:00.0: BAR 0: assigned [mem 0x3c700000-0x3c700fff]
[    1.727555] pci 0002:00:00.0: BAR 13: assigned [io  0x1000-0x1fff]
[    1.728473] pci 0002:01:00.0: BAR 0: assigned [mem 0x3c300000-0x3c303fff 64bit]
[    1.729190] pci 0002:00:00.0: PCI bridge to [bus 01-ff]
[    1.730092] pci 0002:00:00.0:   bridge window [io  0x1000-0x1fff]
[    1.730994] pci 0002:00:00.0:   bridge window [mem 0x3c300000-0x3c4fffff]
[    1.731908] pci 0002:00:00.0:   bridge window [mem 0x3c500000-0x3c6fffff 64bit pref]
[    1.733777] pcieport 0002:00:00.0: PME: Signaling with IRQ 200
[    1.735262] pcieport 0002:00:00.0: AER: enabled with IRQ 200
[    1.736195] pcieport 0002:00:00.0: pciehp: Slot #0 AttnBtn+ PwrCtrl+ MRL+ AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.738302] nvme nvme0: pci function 0002:01:00.0
[    1.739239] nvme 0002:01:00.0: enabling device (0000 -> 0002)
[    1.750228] nvme nvme0: 8/0/0 default/read/poll queues
[    1.755013]  nvme0n1: p1 p2 p3 p4 p5 p6 p7
[    1.764397] dwc3 a600000.usb: Adding to iommu group 4
[    1.790809] EXT4-fs (nvme0n1p7): mounted filesystem a8938681-d054-4b1d-a9d7-6f7a0b037041 with ordered data mode. Quota mode: none.
[    1.795913] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[    1.796394] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
[    1.799324] xhci-hcd xhci-hcd.0.auto: hcc params 0x0110ffc5 hci version 0x110 quirks 0x0000000000010010
[    1.799867] xhci-hcd xhci-hcd.0.auto: irq 210, io mem 0x0a600000
[    1.800413] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[    1.800909] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2
[    1.801402] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.1 Enhanced SuperSpeed
[    1.801935] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.02
[    1.802435] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.802938] usb usb1: Product: xHCI Host Controller
[    1.803437] usb usb1: Manufacturer: Linux 6.2.0-1003-laptop xhci-hcd
[    1.803438] usb usb1: SerialNumber: xhci-hcd.0.auto
[    1.803569] hub 1-0:1.0: USB hub found
[    1.804987] hub 1-0:1.0: 1 port detected
[    1.805068] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.805087] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.02
[    1.805089] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.805090] usb usb2: Product: xHCI Host Controller
[    1.805091] usb usb2: Manufacturer: Linux 6.2.0-1003-laptop xhci-hcd
[    1.805093] usb usb2: SerialNumber: xhci-hcd.0.auto
[    1.805172] hub 2-0:1.0: USB hub found
[    1.805178] hub 2-0:1.0: 1 port detected
[    1.805497] dwc3 a800000.usb: Adding to iommu group 5
[    1.839757] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[    1.840264] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 3
[    1.843200] xhci-hcd xhci-hcd.1.auto: hcc params 0x0110ffc5 hci version 0x110 quirks 0x0000000000010010
[    1.843718] xhci-hcd xhci-hcd.1.auto: irq 211, io mem 0x0a800000
[    1.844263] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[    1.844752] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 4
[    1.845244] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.1 Enhanced SuperSpeed
[    1.845763] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.02
[    1.846247] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.846727] usb usb3: Product: xHCI Host Controller
[    1.847201] usb usb3: Manufacturer: Linux 6.2.0-1003-laptop xhci-hcd
[    1.847688] usb usb3: SerialNumber: xhci-hcd.1.auto
[    1.848302] hub 3-0:1.0: USB hub found
[    1.848784] hub 3-0:1.0: 1 port detected
[    1.849327] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.849823] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.02
[    1.850301] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.850780] usb usb4: Product: xHCI Host Controller
[    1.851256] usb usb4: Manufacturer: Linux 6.2.0-1003-laptop xhci-hcd
[    1.851737] usb usb4: SerialNumber: xhci-hcd.1.auto
[    1.852804] hub 4-0:1.0: USB hub found
[    1.853325] hub 4-0:1.0: 1 port detected
[    1.855500] qcom-pcie 1c00000.pcie: supply vdda not found, using dummy regulator
[    1.856180] qcom-pcie 1c00000.pcie: host bridge /soc@0/pcie@1c00000 ranges:
[    1.856674] qcom-pcie 1c00000.pcie:       IO 0x0030200000..0x00302fffff -> 0x0030200000
[    1.857157] qcom-pcie 1c00000.pcie:      MEM 0x0030300000..0x0031ffffff -> 0x0030300000
[    1.898655] systemd[1]: System time before build time, advancing clock.
[    1.926155] systemd[1]: Inserted module 'autofs4'
[    1.974013] qcom-pcie 1c00000.pcie: iATU: unroll T, 8 ob, 8 ib, align 4K, limit 1024G
[    2.036473] systemd[1]: systemd 252.5-2ubuntu3 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    2.038691] systemd[1]: Detected architecture arm64.
[    2.045313] systemd[1]: Hostname set to <x13s>.
[    2.068110] qcom-pcie 1c00000.pcie: PCIe Gen.3 x1 link up
[    2.069331] qcom-pcie 1c00000.pcie: PCI host bridge to bus 0006:00
[    2.070390] pci_bus 0006:00: root bus resource [bus 00-ff]
[    2.071162] pci_bus 0006:00: root bus resource [io  0x100000-0x1fffff] (bus address [0x30200000-0x302fffff])
[    2.072248] pci_bus 0006:00: root bus resource [mem 0x30300000-0x31ffffff]
[    2.073332] pci 0006:00:00.0: [17cb:010e] type 01 class 0x060400
[    2.074393] pci 0006:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[    2.075165] pci 0006:00:00.0: PME# supported from D0 D3hot D3cold
[    2.076973] pci 0006:01:00.0: [17cb:1103] type 00 class 0x028000
[    2.077617] pci 0006:01:00.0: reg 0x10: [mem 0x00000000-0x001fffff 64bit]
[    2.079792] pci 0006:01:00.0: PME# supported from D0 D3hot D3cold
[    2.113020] systemd[303]: /usr/lib/systemd/system-generators/netplan failed with exit status 1.
[    2.163766] pci 0006:00:00.0: BAR 14: assigned [mem 0x30400000-0x305fffff]
[    2.164256] pci 0006:00:00.0: BAR 15: assigned [mem 0x30600000-0x307fffff 64bit pref]
[    2.164734] pci 0006:00:00.0: BAR 0: assigned [mem 0x30300000-0x30300fff]
[    2.165207] pci 0006:00:00.0: BAR 13: assigned [io  0x100000-0x100fff]
[    2.165676] pci 0006:01:00.0: BAR 0: assigned [mem 0x30400000-0x305fffff 64bit]
[    2.166202] pci 0006:00:00.0: PCI bridge to [bus 01-ff]
[    2.166674] pci 0006:00:00.0:   bridge window [io  0x100000-0x100fff]
[    2.167140] pci 0006:00:00.0:   bridge window [mem 0x30400000-0x305fffff]
[    2.167610] pci 0006:00:00.0:   bridge window [mem 0x30600000-0x307fffff 64bit pref]
[    2.168557] pcieport 0006:00:00.0: PME: Signaling with IRQ 217
[    2.169123] pcieport 0006:00:00.0: AER: enabled with IRQ 217
[    2.169601] pcieport 0006:00:00.0: pciehp: Slot #0 AttnBtn+ PwrCtrl+ MRL+ AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    2.170737] qcom-pcie 1c10000.pcie: supply vdda not found, using dummy regulator
[    2.171356] qcom-pcie 1c10000.pcie: host bridge /soc@0/pcie@1c10000 ranges:
[    2.171840] qcom-pcie 1c10000.pcie:       IO 0x0034200000..0x00342fffff -> 0x0034200000
[    2.172317] qcom-pcie 1c10000.pcie:      MEM 0x0034300000..0x0035ffffff -> 0x0034300000
[    2.238682] systemd[1]: Queued start job for default target graphical.target.
[    2.256751] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[    2.258330] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[    2.259687] systemd[1]: Created slice user.slice - User and Session Slice.
[    2.260855] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[    2.262198] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[    2.263394] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[    2.264636] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[    2.265778] systemd[1]: Reached target slices.target - Slice Units.
[    2.266930] systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
[    2.268111] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[    2.269496] systemd[1]: Listening on syslog.socket - Syslog Socket.
[    2.270811] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[    2.272151] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[    2.273580] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[    2.274915] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[    2.276841] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[    2.279835] systemd[1]: Listening on systemd-oomd.socket - Userspace Out-Of-Memory (OOM) Killer Socket.
[    2.283287] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[    2.285770] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[    2.289666] qcom-pcie 1c10000.pcie: iATU: unroll T, 8 ob, 8 ib, align 4K, limit 1024G
[    2.290448] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    2.295268] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[    2.299761] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[    2.303620] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[    2.317191] systemd[1]: Starting systemd-journald.service - Journal Service...
[    2.320635] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[    2.323695] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[    2.326863] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[    2.329257] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[    2.331692] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[    2.333950] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[    2.334770] pstore: Using crash dump compression: deflate
[    2.336139] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[    2.338055] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[    2.340347] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[    2.341829] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[    2.343527] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[    2.346461] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    2.346539] EXT4-fs (nvme0n1p7): re-mounted a8938681-d054-4b1d-a9d7-6f7a0b037041. Quota mode: none.
[    2.349905] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[    2.351428] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[    2.352946] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[    2.354587] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[    2.355005] pstore: Registered efi_pstore as persistent store backend
[    2.357071] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[    2.357900] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[    2.359542] systemd[1]: modprobe@drm.service: Deactivated successfully.
[    2.360403] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[    2.362025] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[    2.362830] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[    2.364461] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[    2.365256] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[    2.366844] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[    2.368493] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[    2.369975] systemd[1]: Started systemd-journald.service - Journal Service.
[    2.414046] Adding 4194300k swap on /swap.img.  Priority:-2 extents:13 across:23797220k SSFS
[    2.416496] systemd-journald[333]: Received client request to flush runtime journal.
[    2.417415] systemd-journald[333]: File /var/log/journal/f5193924ffd246b988a5657e751f8117/system.journal corrupted or uncleanly shut down, renaming and replacing.
[    2.451410] loop0: detected capacity change from 0 to 8
[    2.452828] loop1: detected capacity change from 0 to 121016
[    2.454560] loop2: detected capacity change from 0 to 121072
[    2.456400] loop3: detected capacity change from 0 to 138336
[    2.458398] loop4: detected capacity change from 0 to 138480
[    2.460364] loop5: detected capacity change from 0 to 444896
[    2.461148] loop6: detected capacity change from 0 to 444904
[    2.463834] loop7: detected capacity change from 0 to 677120
[    2.465805] loop8: detected capacity change from 0 to 898504
[    2.467486] loop9: detected capacity change from 0 to 917008
[    2.468381] loop10: detected capacity change from 0 to 187776
[    2.471074] loop11: detected capacity change from 0 to 23744
[    2.472981] loop12: detected capacity change from 0 to 24032
[    2.474630] loop13: detected capacity change from 0 to 88456
[    2.475540] loop14: detected capacity change from 0 to 88432
[    2.478519] loop15: detected capacity change from 0 to 824
[    2.824898] qcom,fastrpc 1b300000.remoteproc:glink-edge.fastrpcglink-apps-dsp.-1.-1: no reserved DMA memory for FASTRPC
[    2.827043] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    2.828236] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    2.839109] qcom,fastrpc-cb 1b300000.remoteproc:glink-edge:fastrpc:compute-cb@1: Adding to iommu group 6
[    2.848819] qcom,fastrpc-cb 1b300000.remoteproc:glink-edge:fastrpc:compute-cb@2: Adding to iommu group 7
[    2.879229] qcom,fastrpc-cb 1b300000.remoteproc:glink-edge:fastrpc:compute-cb@3: Adding to iommu group 8
[    2.886653] qcom,fastrpc-cb 1b300000.remoteproc:glink-edge:fastrpc:compute-cb@4: Adding to iommu group 9
[    2.898381] ath11k_pci 0006:01:00.0: BAR 0: assigned [mem 0x30400000-0x305fffff 64bit]
[    2.898588] ath11k_pci 0006:01:00.0: enabling device (0000 -> 0002)
[    2.902370] qcom,fastrpc-cb 1b300000.remoteproc:glink-edge:fastrpc:compute-cb@5: Adding to iommu group 10
[    2.915310] qcom,fastrpc-cb 1b300000.remoteproc:glink-edge:fastrpc:compute-cb@6: Adding to iommu group 11
[    2.922110] qcom,fastrpc-cb 1b300000.remoteproc:glink-edge:fastrpc:compute-cb@7: Adding to iommu group 12
[    2.933741] qcom,fastrpc-cb 1b300000.remoteproc:glink-edge:fastrpc:compute-cb@8: Adding to iommu group 13
[    2.939644] ath11k_pci 0006:01:00.0: MSI vectors: 32
[    2.939675] ath11k_pci 0006:01:00.0: wcn6855 hw2.1
[    2.940354] qcom,fastrpc-cb 1b300000.remoteproc:glink-edge:fastrpc:compute-cb@9: Adding to iommu group 14
[    2.948023] qcom,fastrpc-cb 1b300000.remoteproc:glink-edge:fastrpc:compute-cb@10: Adding to iommu group 14
[    2.959351] qcom,fastrpc-cb 1b300000.remoteproc:glink-edge:fastrpc:compute-cb@11: Adding to iommu group 15
[    2.970275] qcom,fastrpc-cb 1b300000.remoteproc:glink-edge:fastrpc:compute-cb@12: Adding to iommu group 16
[    2.979048] qcom,fastrpc-cb 1b300000.remoteproc:glink-edge:fastrpc:compute-cb@13: Adding to iommu group 17
[    2.979463] qcom,fastrpc-cb 1b300000.remoteproc:glink-edge:fastrpc:compute-cb@14: Adding to iommu group 18
[    3.103282] mhi mhi0: Requested to power ON
[    3.103302] mhi mhi0: Power on setup success
[    3.124279] pm8941-pwrkey c440000.spmi:pmic@0:pon@1300:pwrkey: PON_PBS address missing, can't read HW debounce time
[    3.125057] input: pmic_pwrkey as /devices/platform/soc@0/c440000.spmi/spmi-0/0-00/c440000.spmi:pmic@0:pon@1300/c440000.spmi:pmic@0:pon@1300:pwrkey/input/input1
[    3.125238] pm8941-pwrkey c440000.spmi:pmic@0:pon@1300:resin: PON_PBS address missing, can't read HW debounce time
[    3.125942] input: pmic_resin as /devices/platform/soc@0/c440000.spmi/spmi-0/0-00/c440000.spmi:pmic@0:pon@1300/c440000.spmi:pmic@0:pon@1300:resin/input/input2
[    3.272896] mhi mhi0: Wait for device to enter SBL or Mission mode
[    3.288750] qcom-pcie 1c10000.pcie: Phy link never came up
[    3.288908] qcom-pcie 1c10000.pcie: PCI host bridge to bus 0004:00
[    3.288915] pci_bus 0004:00: root bus resource [bus 00-ff]
[    3.288923] pci_bus 0004:00: root bus resource [io  0x200000-0x2fffff] (bus address [0x34200000-0x342fffff])
[    3.288927] pci_bus 0004:00: root bus resource [mem 0x34300000-0x35ffffff]
[    3.288952] pci 0004:00:00.0: [17cb:010e] type 01 class 0x060400
[    3.288964] pci 0004:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[    3.289025] pci 0004:00:00.0: PME# supported from D0 D3hot D3cold
[    3.290865] pci 0004:00:00.0: BAR 14: assigned [mem 0x34300000-0x344fffff]
[    3.290872] pci 0004:00:00.0: BAR 15: assigned [mem 0x34500000-0x346fffff 64bit pref]
[    3.290877] pci 0004:00:00.0: BAR 0: assigned [mem 0x34700000-0x34700fff]
[    3.290882] pci 0004:00:00.0: BAR 13: assigned [io  0x200000-0x200fff]
[    3.290888] pci 0004:00:00.0: PCI bridge to [bus 01-ff]
[    3.290892] pci 0004:00:00.0:   bridge window [io  0x200000-0x200fff]
[    3.290897] pci 0004:00:00.0:   bridge window [mem 0x34300000-0x344fffff]
[    3.290901] pci 0004:00:00.0:   bridge window [mem 0x34500000-0x346fffff 64bit pref]
[    3.292709] pcieport 0004:00:00.0: PME: Signaling with IRQ 263
[    3.293335] pcieport 0004:00:00.0: AER: enabled with IRQ 263
[    3.293375] pcieport 0004:00:00.0: pciehp: Slot #0 AttnBtn+ PwrCtrl+ MRL+ AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    3.409662] audit: type=1400 audit(1679321845.507:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=577 comm="apparmor_parser"
[    3.410439] audit: type=1400 audit(1679321845.507:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=578 comm="apparmor_parser"
[    3.410448] audit: type=1400 audit(1679321845.507:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=578 comm="apparmor_parser"
[    3.410513] audit: type=1400 audit(1679321845.507:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=581 comm="apparmor_parser"
[    3.410520] audit: type=1400 audit(1679321845.507:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=581 comm="apparmor_parser"
[    3.410524] audit: type=1400 audit(1679321845.507:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=581 comm="apparmor_parser"
[    3.412263] audit: type=1400 audit(1679321845.511:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=583 comm="apparmor_parser"
[    3.412270] audit: type=1400 audit(1679321845.511:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=583 comm="apparmor_parser"
[    3.412274] audit: type=1400 audit(1679321845.511:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=584 comm="apparmor_parser"
[    3.971121] ath11k_pci 0006:01:00.0: WARNING: overriding board_id (8c) -- only intended for basic internal testing
[    3.971134] ath11k_pci 0006:01:00.0: chip_id 0x2 chip_family 0xb board_id 0xff soc_id 0x400c0210
[    3.971138] ath11k_pci 0006:01:00.0: fw_version 0x110b196e fw_build_timestamp 2022-12-22 12:54 fw_build_id WLAN.HSP.1.1-03125-QCAHSPSWPL_V1_V2_SILICONZ_LITE-3.6510.23
[    4.474555] ath11k_pci 0006:01:00.0 wlP6p1s0: renamed from wlan0
[    4.692031] qcom,apr 3000000.remoteproc:glink-edge.adsp_apps.-1.-1: Adding APR/GPR dev: gprsvc:service:2:1
[    4.692102] qcom,apr 3000000.remoteproc:glink-edge.adsp_apps.-1.-1: Adding APR/GPR dev: gprsvc:service:2:2
[    4.841442] loop16: detected capacity change from 0 to 8
[    5.041584] kauditd_printk_skb: 36 callbacks suppressed
[    5.041590] audit: type=1400 audit(1680267033.266:47): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/snapd/18600/usr/lib/snapd/snap-confine" pid=877 comm="apparmor_parser"
[    5.041599] audit: type=1400 audit(1680267033.266:48): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/snapd/18600/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=877 comm="apparmor_parser"
[    5.392200] pcieport 0004:00:00.0: pciehp: Timeout on hotplug command 0x07c0 (issued 2100 msec ago)
[    5.411973] pcieport 0004:00:00.0: pciehp: Timeout on hotplug command 0x07c0 (issued 2120 msec ago)
[    5.416458] rtc-pm8xxx c440000.spmi:pmic@0:rtc@6100: registered as rtc0
[    5.416510] rtc-pm8xxx c440000.spmi:pmic@0:rtc@6100: setting system clock to 2023-03-31T12:51:04 UTC (1680267064)
[    5.418199] msm-mdss ae00000.display-subsystem: Adding to iommu group 19
[    5.418395] i2c_hid_of 0-002c: supply vddl not found, using dummy regulator
[    5.418652] i2c_hid_of 0-0068: supply vddl not found, using dummy regulator
[    5.418697] i2c_hid_of 1-0010: supply vddl not found, using dummy regulator
[    5.430004] i2c_hid_of 0-0015: supply vddl not found, using dummy regulator
[    5.448601] platform ae90000.displayport-controller: Fixing up cyclic dependency with ae01000.display-controller
[    5.453918] platform ae98000.displayport-controller: Fixing up cyclic dependency with ae01000.display-controller
[    5.457876] platform aea0000.displayport-controller: Fixing up cyclic dependency with ae01000.display-controller
[    5.477920] msm_dpu ae01000.display-controller: bound ae90000.displayport-controller (ops dp_display_comp_ops [msm])
[    5.479177] msm_dpu ae01000.display-controller: bound ae98000.displayport-controller (ops dp_display_comp_ops [msm])
[    5.486731] msm_dpu ae01000.display-controller: bound aea0000.displayport-controller (ops dp_display_comp_ops [msm])
[    5.487144] adreno 3d00000.gpu: supply vdd not found, using dummy regulator
[    5.487256] adreno 3d00000.gpu: supply vddcx not found, using dummy regulator
[    5.488654] platform 3d6a000.gmu: Adding to iommu group 20
[    5.493891] msm_dpu ae01000.display-controller: bound 3d00000.gpu (ops a3xx_ops [msm])
[    5.494418] [drm:dpu_kms_hw_init:1062] dpu hardware revision:0x80000000
[    5.516969] ------------[ cut here ]------------
[    5.516978] WARNING: CPU: 0 PID: 218 at drivers/gpu/drm/drm_probe_helper.c:664 drm_kms_helper_hotplug_event+0x68/0xa0 [drm_kms_helper]
[    5.517031] Modules linked in: snd_soc_hdmi_codec snd_q6apm(+) qrtr_mhi binfmt_misc nls_iso8859_1 pm8941_pwrkey qcom_spmi_adc_tm5 qcom_spmi_adc5 qcom_vadc_common qcom_pon nvmem_qcom_spmi_sdam reboot_mode qcom_spmi_temp_alarm aes_ce_blk aes_ce_cipher crct10dif_ce industrialio polyval_ce polyval_generic ghash_ce snd_soc_wcd938x snd_soc_wcd938x_sdw snd_soc_sc8280xp sm4 snd_soc_wcd_mbhc snd_soc_qcom_sdw sha2_ce snd_soc_lpass_rx_macro snd_soc_qcom_common soundwire_qcom regmap_sdw snd_soc_lpass_va_macro snd_soc_lpass_tx_macro sha256_arm64 snd_soc_lpass_wsa_macro soundwire_bus slimbus snd_soc_lpass_macro_common sha1_ce apr qcom_stats snd_soc_core ath11k_pci snd_seq_midi ath11k snd_compress snd_seq_midi_event mac80211 ac97_bus snd_rawmidi snd_pcm_dmaengine rpmsg_ctrl icc_bwmon fastrpc rpmsg_char qrtr_smd cfg80211 snd_seq snd_pcm libarc4 snd_seq_device mhi snd_timer snd icc_osm_l3 qcom_battmgr socinfo soundcore uio_pdrv_genirq uio efi_pstore dmi_sysfs ip_tables x_tables autofs4 uas usb_storage
[    5.517160]  nvme nvme_core nvme_common panel_edp leds_qcom_lpg led_class_multicolor rtc_pm8xxx i2c_hid_of i2c_hid msm hid pmic_glink_altmode gpu_sched drm_display_helper cec rc_core drm_dp_aux_bus qcom_spmi_pmic drm_kms_helper syscopyarea sysfillrect i2c_qcom_geni sysimgblt phy_qcom_edp drm qcom_q6v5_pas phy_qcom_qmp_combo qcom_pil_info phy_qcom_snps_femto_v2 pinctrl_sc8280xp_lpass_lpi qcom_q6v5 qcom_sysmon pcie_qcom lpass_csr_sc8280xp pinctrl_lpass_lpi gpio_sbu_mux qcom_common phy_qcom_qmp_pcie qcom_glink_smem mdt_loader typec qrtr pmic_glink pdr_interface qmi_helpers gpio_keys pwm_bl
[    5.517243] CPU: 0 PID: 218 Comm: kworker/0:3 Not tainted 6.2.0-1003-laptop #4-Ubuntu
[    5.517250] Hardware name: LENOVO 4810QL0100/4810QL0100, BIOS N3HET76W (1.48 ) 12/23/2022
[    5.517253] Workqueue: events pmic_glink_altmode_worker [pmic_glink_altmode]
[    5.517269] pstate: 60400005 (nZCv daif +PAN -UAO -TCO -DIT -SSBS BTYPE=--)
[    5.517274] pc : drm_kms_helper_hotplug_event+0x68/0xa0 [drm_kms_helper]
[    5.517314] lr : drm_kms_helper_hotplug_event+0x24/0xa0 [drm_kms_helper]
[    5.517350] sp : ffff8000094cbce0
[    5.517353] x29: ffff8000094cbce0 x28: 0000000000000000 x27: 0000000000000000
[    5.517361] x26: ffff58ee00514874 x25: ffff58ef7efbe805 x24: ffff58ee000134b0
[    5.517369] x23: 0000000000000003 x22: ffff58ee0a2b2800 x21: 0000000000000002
[    5.517376] x20: ffff58ee0c804000 x19: ffff58ee0a2b2800 x18: ffff800008df5038
[    5.517383] x17: 0000000000000000 x16: 0000000000000000 x15: 4c50544f48006d72
[    5.517390] x14: 643d4d4554535953 x13: 00373935353d4d55 x12: 4e51455300726f6e
[    5.517398] x11: 696d5f6d72643d45 x10: 5059545645440030 x9 : ffffa20783bc8294
[    5.517405] x8 : ffff8000094cbbc8 x7 : 0000000000000000 x6 : 0000000000000000
[    5.517412] x5 : 0000000000000000 x4 : 0000000000000000 x3 : 0000000000000000
[    5.517419] x2 : 0000000000000000 x1 : 0000000000000000 x0 : 0000000000000000
[    5.517426] Call trace:
[    5.517429]  drm_kms_helper_hotplug_event+0x68/0xa0 [drm_kms_helper]
[    5.517466]  drm_bridge_connector_hpd_cb+0xa8/0xe0 [drm_kms_helper]
[    5.517503]  drm_bridge_hpd_notify+0x48/0x80 [drm]
[    5.517591]  pmic_glink_altmode_worker+0xf0/0x170 [pmic_glink_altmode]
[    5.517603]  process_one_work+0x244/0x4f0
[    5.517614]  worker_thread+0x78/0x450
[    5.517622]  kthread+0xf0/0x100
[    5.517628]  ret_from_fork+0x10/0x20
[    5.517635] ---[ end trace 0000000000000000 ]---
[    5.524854] input: hid-over-i2c 04F3:3193 Mouse as /devices/platform/soc@0/8c0000.geniqup/894000.i2c/i2c-0/0-0015/0018:04F3:3193.0001/input/input3
[    5.524978] input: hid-over-i2c 04F3:3193 Touchpad as /devices/platform/soc@0/8c0000.geniqup/894000.i2c/i2c-0/0-0015/0018:04F3:3193.0001/input/input5
[    5.525289] hid-generic 0018:04F3:3193.0001: input,hidraw0: I2C HID v1.00 Mouse [hid-over-i2c 04F3:3193] on 0-0015
[    5.565130] input: hid-over-i2c 06CB:0005 Keyboard as /devices/platform/soc@0/8c0000.geniqup/894000.i2c/i2c-0/0-0068/0018:06CB:0005.0002/input/input6
[    5.565215] input: hid-over-i2c 06CB:0005 Mouse as /devices/platform/soc@0/8c0000.geniqup/894000.i2c/i2c-0/0-0068/0018:06CB:0005.0002/input/input7
[    5.565316] hid-generic 0018:06CB:0005.0002: input,hidraw1: I2C HID v1.00 Keyboard [hid-over-i2c 06CB:0005] on 0-0068
[    5.571635] mc: Linux media interface: v0.10
[    5.583651] videodev: Linux video capture interface: v2.00
[    5.624873] panel-simple-dp-aux aux-aea0000.displayport-controller: Detected LGD LP133WU1-SPB2 (0x0727)
[    5.628555] [drm] Initialized msm 1.9.0 20130625 for ae01000.display-controller on minor 0
[    5.629050] msm_dpu ae01000.display-controller: [drm:adreno_request_fw [msm]] loaded qcom/a660_sqe.fw from new location
[    5.629457] msm_dpu ae01000.display-controller: [drm:adreno_request_fw [msm]] loaded qcom/a690_gmu.bin from new location
[    5.639347] Console: switching to colour dummy device 80x25
[    5.793018] audit: type=1400 audit(1680267064.871:49): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.firefox" pid=881 comm="apparmor_parser"
[    5.800420] input: hid-over-i2c 06CB:0005 as /devices/platform/soc@0/8c0000.geniqup/894000.i2c/i2c-0/0-0068/0018:06CB:0005.0002/input/input8
[    5.844224] Console: switching to colour frame buffer device 240x75
[    5.848995] hid-rmi 0018:06CB:0005.0002: input,hidraw0: I2C HID v1.00 Keyboard [hid-over-i2c 06CB:0005] on 0-0068
[    5.857516] input: hid-over-i2c 04F3:3193 Mouse as /devices/platform/soc@0/8c0000.geniqup/894000.i2c/i2c-0/0-0015/0018:04F3:3193.0001/input/input9
[    5.857642] input: hid-over-i2c 04F3:3193 Touchpad as /devices/platform/soc@0/8c0000.geniqup/894000.i2c/i2c-0/0-0015/0018:04F3:3193.0001/input/input11
[    5.857707] hid-multitouch 0018:04F3:3193.0001: input,hidraw1: I2C HID v1.00 Mouse [hid-over-i2c 04F3:3193] on 0-0015
[    5.861950] msm_dpu ae01000.display-controller: [drm] fb0: msmdrmfb frame buffer device
[    5.865784] audit: type=1400 audit(1680267064.943:50): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.snap-store" pid=879 comm="apparmor_parser"
[    5.942074] audit: type=1400 audit(1680267065.019:51): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.snapd-desktop-integration" pid=880 comm="apparmor_parser"
[    5.949489] audit: type=1400 audit(1680267065.027:52): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.snap-store.hook.configure" pid=957 comm="apparmor_parser"
[    5.949501] audit: type=1400 audit(1680267065.027:53): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.snap-store.ubuntu-software" pid=959 comm="apparmor_parser"
[    5.949594] audit: type=1400 audit(1680267065.027:54): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.snapd-desktop-integration.snapd-desktop-integration" pid=962 comm="apparmor_parser"
[    5.952129] audit: type=1400 audit(1680267065.031:55): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.snap-store.snap-store" pid=958 comm="apparmor_parser"
[    5.952256] audit: type=1400 audit(1680267065.031:56): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.firefox.hook.configure" pid=965 comm="apparmor_parser"
[    7.182829] rfkill: input handler disabled
[    9.951662] qcom-apm gprsvc:service:2:1: CMD timeout for [1001021] opcode
[    9.974887] q6apm-dai 3000000.remoteproc:glink-edge:gpr:service@1:dais: Adding to iommu group 21
[   10.004931] qcom-prm gprsvc:service:2:2: DSP returned error[100100f] 1
[   10.004943] rx_macro: probe of 3200000.rxmacro failed with error -22
[   10.014351] qcom-soundwire 3250000.soundwire-controller: Qualcomm Soundwire controller v1.6.0 Registered
[   10.015805] wsa883x-codec sdw:0:0217:0202:00:1: WSA883X Version 1_1, Variant: WSA8835_V2
[   10.016436] qcom-soundwire 3330000.soundwire-controller: Qualcomm Soundwire controller v1.6.0 Registered
[   10.018243] wsa883x-codec sdw:0:0217:0202:00:1: WSA883X Version 1_1, Variant: WSA8835_V2
[   10.021048] wsa883x-codec sdw:0:0217:0202:00:2: WSA883X Version 1_1, Variant: WSA8835_V2
[   11.489008] wlP6p1s0: authenticate with e0:28:6d:9e:b9:24
[   11.489034] wlP6p1s0: 80 MHz not supported, disabling VHT
[   11.636850] wlP6p1s0: send auth to e0:28:6d:9e:b9:24 (try 1/3)
[   11.644671] wlP6p1s0: authenticated
[   11.652086] wlP6p1s0: associate with e0:28:6d:9e:b9:24 (try 1/3)
[   11.659797] wlP6p1s0: RX AssocResp from e0:28:6d:9e:b9:24 (capab=0x1431 status=0 aid=3)
[   11.674326] wlP6p1s0: associated
[   11.748304] IPv6: ADDRCONF(NETDEV_CHANGE): wlP6p1s0: link becomes ready
[   11.750346] wlP6p1s0: Limiting TX power to 20 (20 - 0) dBm as advertised by e0:28:6d:9e:b9:24
[   20.192679] platform sound: deferred probe pending
[   20.192693] platform 3210000.soundwire-controller: deferred probe pending
[   20.831541] kauditd_printk_skb: 7 callbacks suppressed
[   20.831547] audit: type=1400 audit(1680267079.907:64): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/home/juergh/.config/user-dirs.dirs" pid=1715 comm="desktop-launch" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[   20.912485] audit: type=1400 audit(1680267079.991:65): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/home/juergh/.config/user-dirs.dirs" pid=1760 comm="sed" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[   20.913332] audit: type=1400 audit(1680267079.991:66): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/home/juergh/.config/user-dirs.dirs" pid=1769 comm="desktop-launch" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[   20.924114] audit: type=1400 audit(1680267080.003:67): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/home/juergh/.config/user-dirs.locale" pid=1770 comm="cp" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[   20.924745] audit: type=1400 audit(1680267080.003:68): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/home/juergh/.config/user-dirs.locale" pid=1777 comm="desktop-launch" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[   21.009489] audit: type=1400 audit(1680267080.087:69): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/usr/share/icons/" pid=1555 comm="desktop-launch" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[   21.012707] audit: type=1400 audit(1680267080.091:70): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/var/lib/snapd/desktop/icons/" pid=1555 comm="desktop-launch" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[   21.057330] audit: type=1400 audit(1680267080.135:71): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/usr/share/glib-2.0/schemas/" pid=1842 comm="desktop-launch" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[   21.062664] audit: type=1400 audit(1680267080.139:72): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/usr/share/glib-2.0/schemas/" pid=1844 comm="desktop-launch" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[   21.279041] audit: type=1326 audit(1680267080.355:73): auid=1000 uid=1000 gid=1000 ses=3 subj=? pid=1858 comm="snapd-desktop-i" exe="/snap/snapd-desktop-integration/58/usr/bin/snapd-desktop-integration" sig=0 arch=c00000b7 syscall=274 compat=0 ip=0xffffb57e1a68 code=0x50000
[   26.150339] kauditd_printk_skb: 13 callbacks suppressed
[   26.150346] audit: type=1400 audit(1680267085.227:87): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/home/juergh/.config/user-dirs.dirs" pid=2012 comm="desktop-launch" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[   26.179247] audit: type=1400 audit(1680267085.255:88): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/home/juergh/.config/user-dirs.dirs" pid=2025 comm="sed" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[   26.180360] audit: type=1400 audit(1680267085.259:89): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/home/juergh/.config/user-dirs.dirs" pid=2026 comm="desktop-launch" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[   26.184676] audit: type=1400 audit(1680267085.263:90): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/home/juergh/.config/user-dirs.locale" pid=2027 comm="cp" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[   26.185638] audit: type=1400 audit(1680267085.263:91): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/home/juergh/.config/user-dirs.locale" pid=2028 comm="desktop-launch" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
[   26.278430] audit: type=1400 audit(1680267085.355:92): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/usr/share/icons/" pid=1989 comm="desktop-launch" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[   26.278456] audit: type=1400 audit(1680267085.355:93): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/var/lib/snapd/desktop/icons/" pid=1989 comm="desktop-launch" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[   26.313954] audit: type=1400 audit(1680267085.391:94): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/usr/share/glib-2.0/schemas/" pid=2095 comm="desktop-launch" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[   26.317347] audit: type=1400 audit(1680267085.395:95): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/usr/share/glib-2.0/schemas/" pid=2097 comm="desktop-launch" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[   26.365721] audit: type=1326 audit(1680267085.443:96): auid=1000 uid=1000 gid=1000 ses=3 subj=? pid=2105 comm="snapd-desktop-i" exe="/snap/snapd-desktop-integration/58/usr/bin/snapd-desktop-integration" sig=0 arch=c00000b7 syscall=274 compat=0 ip=0xffffb7db1a68 code=0x50000
[   31.174089] kauditd_printk_skb: 19 callbacks suppressed
[   31.174095] audit: type=1400 audit(1680267090.251:116): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/usr/share/glib-2.0/schemas/" pid=2337 comm="desktop-launch" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[   31.177983] audit: type=1400 audit(1680267090.255:117): apparmor="DENIED" operation="open" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/usr/share/glib-2.0/schemas/" pid=2339 comm="desktop-launch" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[   31.226346] audit: type=1326 audit(1680267090.303:118): auid=1000 uid=1000 gid=1000 ses=3 subj=? pid=2347 comm="snapd-desktop-i" exe="/snap/snapd-desktop-integration/58/usr/bin/snapd-desktop-integration" sig=0 arch=c00000b7 syscall=274 compat=0 ip=0xffff83ba1a68 code=0x50000
[   31.226856] audit: type=1400 audit(1680267090.303:119): apparmor="DENIED" operation="connect" class="file" profile="snap.snapd-desktop-integration.snapd-desktop-integration" name="/run/dbus/system_bus_socket" pid=2347 comm="snapd-desktop-i" requested_mask="wr" denied_mask="wr" fsuid=1000 ouid=0

Share: