NoteAfterNote-10

Testing: Termux, vmtest, and QEMU

Published: June 19, 2024

Link: https://gist.github.com/NoteAfterNote/7614b0137ac6959e3bba35df66eaa75a

Observation: vmtest-QEMU-8.0.2 is faster than vmtest-QEMU-8.2.5 on Smartphone-1-Is-Android-10

Remove * -drive if=none,id=vm,format=raw,file=$VM -device virtio-blk-pci,id=vmvirt1,drive=vm * -drive if=none,id=iso1,readonly=on,format=raw,file=$ISO1 -device virtio-blk-pci,id=virt1,drive=iso1,bootindex=1 * -drive if=none,id=iso2,readonly=on,format=raw,file=$ISO2 -device virtio-blk-pci,id=virt2,drive=iso2 * -smp 4

Use * -drive if=ide,id=vm,format=raw,file=$VM * -drive if=none,id=iso1,format=raw,file=$ISO1 -device ide-hd,id=virt1,drive=iso1,bootindex=1 * -drive if=ide,id=iso2,media=cdrom,file=$ISO2 * -nodefaults * -accel tcg,tb-size=256

Use The Solution With:

NoteAfterNote-7, "Reading and writing a USB drive connected to a Linux server using Termux, termux-usb, usbredirect, and QEMU on a smartphone that is not rooted": https://gist.github.com/NoteAfterNote/7a197233de3d60ff1e23ca90ed2f595a , https://archive.ph/VayK4 , https://web.archive.org/web/20240530095640/gist.github.com/NoteAfterNote/7a197233de3d60ff1e23ca90ed2f595a

NoteAfterNote-8, 'Smartphone-1 to Smartphone-2: "adb tcpip 5555" using a Linux server, android-tools, Termux, termux-usb, usbredirect, and QEMU': https://gist.github.com/NoteAfterNote/ee883d5fd86c3b8ef0b0b84cac47b4d6 , https://web.archive.org/web/20240613213811/gist.github.com/NoteAfterNote/ee883d5fd86c3b8ef0b0b84cac47b4d6

NoteAfterNote-9, "The Root Password": https://gist.github.com/NoteAfterNote/1a5dc912d01b05350e178c30fbb18510 , https://web.archive.org/web/20240619003436/gist.github.com/NoteAfterNote/1a5dc912d01b05350e178c30fbb18510

Links

"QEMU User Documentation": https://www.qemu.org/docs/master/system/qemu-manpage.html

QEMU, "A generic and open source machine emulator and virtualizer": https://www.qemu.org

Smartphone-1-Is-Android-10: Configuration

Operating system (OS) is Android 10

The Android 10 smartphone is not rooted and it has never been rooted

Eight cores/CPUs

Two gigabytes of RAM

One USB-C (USB Type-C) 2.0 port

Adoptable storage is not available

External storage, a card is plugged inside the smartphone: /storage/NUMBER-REMOVED/Android/data/com.termux/files/qemu

Internal storage: /data/data/com.termux/files

~ $ neofetch --stdout | grep OS OS: Android 10 armv8l ~ $ hwinfo --cpu | grep 'Platform' Platform: "Qualcomm Technologies, Inc SDM439" Platform: "Qualcomm Technologies, Inc SDM439" Platform: "Qualcomm Technologies, Inc SDM439" Platform: "Qualcomm Technologies, Inc SDM439" Platform: "Qualcomm Technologies, Inc SDM439" Platform: "Qualcomm Technologies, Inc SDM439" Platform: "Qualcomm Technologies, Inc SDM439" Platform: "Qualcomm Technologies, Inc SDM439" ~ $ inxi --machine Machine: Type: ARM System: Qualcomm SDM439 ~ $ lscpu Architecture: armv8l Byte Order: Little Endian CPU(s): 8 On-line CPU(s) list: 0-7 Vendor ID: ARM Model name: Cortex-A53 Model: 4 Thread(s) per core: 1 Core(s) per socket: 4 Socket(s): 2 Stepping: r0p4 CPU(s) scaling MHz: 70% CPU max MHz: 2016.0000 CPU min MHz: 768.0000 BogoMIPS: 38.40 Flags: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32 Caches (sum of all): L1d: 256 KiB (8 instances) L1i: 256 KiB (8 instances) L2: 1.5 MiB (2 instances)

Smartphone-1-Is-Android-10: vmtest-QEMU-8.0.2, toggle the timestmps with ctrl-a t ("man qemu-system-x86_64"), https://www.qemu.org/docs/master/system/qemu-manpage.html ("Ctrl-a t" "Toggle console timestamps")

~ $ ~ $ qemu-system-x86_64 --version | grep version QEMU emulator version 8.0.2 ~ $

~ $ QEMU_SOCKET_FILENAME=$HOME/termux-qemu-usb/qemu.socket ; touch $QEMU_SOCKET_FILENAME ; export VMDIR=/storage/NUMBER-REMOVED/Android/data/com.termux/files/qemu ; export VM=$VMDIR/vmtest ; qemu-system-x86_64 -m 1000M -machine q35 -smp 4 -device virtio-rng-pci -device pci-bridge,id=bridge0,chassis_nr=1 -nographic -monitor unix:$QEMU_SOCKET_FILENAME,server,wait=off -serial mon:stdio -device ich9-usb-ehci1,id=ehci,addr=1d.7,multifunction=on -device ich9-usb-uhci1,id=uhci-1,addr=1d.0,multifunction=on,masterbus=ehci.0,firstport=0 -device ich9-usb-uhci2,id=uhci-2,addr=1d.1,multifunction=on,masterbus=ehci.0,firstport=2 -device ich9-usb-uhci3,id=uhci-3,addr=1d.2,multifunction=on,masterbus=ehci.0,firstport=4 -drive if=none,id=vm,format=raw,file=$VM -device virtio-blk-pci,id=vmvirt1,drive=vm,bootindex=1 -virtfs local,security_model=none,id=host-all,mount_tag=host-all,path=/storage/emulated/0 -virtfs local,security_model=none,id=termux,mount_tag=termux,path=/data/data/com.termux/files -virtfs local,security_model=none,id=host,mount_tag=host,path=/storage/emulated/0/Download/usb1 -device virtio-serial -device e1000,netdev=net0,mac=52:54:12:34:56:78 -netdev user,id=net0,ipv6=off,hostfwd=tcp:127.0.0.1:9080-:80,hostfwd=tcp:127.0.0.1:9022-:22,hostfwd=tcp:127.0.0.1:9445-:445,hostfwd=:127.0.0.1:50021-:21,hostfwd=:127.0.0.1:50001-:50001,hostfwd=:127.0.0.1:50002-:50002,hostfwd=:127.0.0.1:50003-:50003,hostfwd=:127.0.0.1:50004-:50004,hostfwd=:127.0.0.1:50005-:50005,hostfwd=:127.0.0.1:50006-:50006,hostfwd=:127.0.0.1:50007-:50007,hostfwd=:127.0.0.1:50008-:50008,hostfwd=:127.0.0.1:50009-:50009,hostfwd=:127.0.0.1:50010-:50010,hostfwd=:127.0.0.1:50011-:50011,hostfwd=:127.0.0.1:50012-:50012,hostfwd=:127.0.0.1:50013-:50013,hostfwd=:127.0.0.1:50014-:50014,hostfwd=:127.0.0.1:50015-:50015,hostfwd=:127.0.0.1:50016-:50016,hostfwd=:127.0.0.1:50017-:50017,hostfwd=:127.0.0.1:50018-:50018,hostfwd=:127.0.0.1:50019-:50019,hostfwd=:127.0.0.1:50020-:50020

[ 0.000000] Linux version 6.6.33-0-virt (buildozer@build-3-20-x86_64) (gcc (Alpine 13.2.1_git20240309) 13.2.1 20240309, GNU ld (GNU Binutils) 2.42) #1-Alpine SMP PREEMPT_DYNAMIC Thu, 13 Jun 2024 07:49:22 +0000 [00:00:09.204] [ 0.000000] Command line: BOOT_IMAGE=vmlinuz-virt root=UUID=ae7bb8b0-5180-432a-80a5-e4a3065e4684 modules=sd-mod,usb-storage,ext4 console=ttyS0,115200,8n1 rootfstype=ext4 initrd=initramfs-virt [00:00:09.208] [ 0.000000] BIOS-provided physical RAM map: [00:00:09.209] [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable [00:00:09.211] [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved [00:00:09.213] [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved [00:00:09.215] [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003e7d7fff] usable [00:00:09.217] [ 0.000000] BIOS-e820: [mem 0x000000003e7d8000-0x000000003e7fffff] reserved [00:00:09.219] [ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved [00:00:09.220] [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved [00:00:09.222] [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved [00:00:09.224] [ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved [00:00:09.226] [ 0.000000] NX (Execute Disable) protection: active [00:00:09.227] [ 0.000000] APIC: Static calls initialized [00:00:09.228] [ 0.000000] SMBIOS 2.8 present. [00:00:09.229] [ 0.000000] DMI: QEMU Standard PC (Q35 + ICH9, 2009), BIOS rel-1.16.2-0-gea1b7a073390-prebuilt.qemu.org 04/01/2014 [00:00:09.232] [ 0.000000] tsc: Fast TSC calibration failed [00:00:09.233] [ 0.000000] last_pfn = 0x3e7d8 max_arch_pfn = 0x400000000 [00:00:09.234] [ 0.000000] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs [00:00:09.236] [ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [00:00:09.238] [ 0.000000] RAMDISK: [mem 0x3dff0000-0x3e7d7fff] [00:00:09.239] [ 0.000000] ACPI: Early table checksum verification disabled [00:00:09.241] [ 0.000000] ACPI: RSDP 0x00000000000F5970 000014 (v00 BOCHS ) [00:00:09.242] [ 0.000000] ACPI: RSDT 0x000000003E7E3149 000038 (v01 BOCHS BXPC 00000001 BXPC 00000001) [00:00:09.245] [ 0.000000] ACPI: FACP 0x000000003E7E2F29 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001) [00:00:09.247] [ 0.000000] ACPI: DSDT 0x000000003E7E0040 002EE9 (v01 BOCHS BXPC 00000001 BXPC 00000001) [00:00:09.248] [ 0.000000] ACPI: FACS 0x000000003E7E0000 000040 [00:00:09.250] [ 0.000000] ACPI: APIC 0x000000003E7E301D 000090 (v01 BOCHS BXPC 00000001 BXPC 00000001) [00:00:09.252] [ 0.000000] ACPI: HPET 0x000000003E7E30AD 000038 (v01 BOCHS BXPC 00000001 BXPC 00000001) [00:00:09.254] [ 0.000000] ACPI: MCFG 0x000000003E7E30E5 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001) [00:00:09.256] [ 0.000000] ACPI: WAET 0x000000003E7E3121 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001) [00:00:09.258] [ 0.000000] ACPI: Reserving FACP table memory at [mem 0x3e7e2f29-0x3e7e301c] [00:00:09.260] [ 0.000000] ACPI: Reserving DSDT table memory at [mem 0x3e7e0040-0x3e7e2f28] [00:00:09.262] [ 0.000000] ACPI: Reserving FACS table memory at [mem 0x3e7e0000-0x3e7e003f] [00:00:09.263] [ 0.000000] ACPI: Reserving APIC table memory at [mem 0x3e7e301d-0x3e7e30ac] [00:00:09.265] [ 0.000000] ACPI: Reserving HPET table memory at [mem 0x3e7e30ad-0x3e7e30e4] [00:00:09.267] [ 0.000000] ACPI: Reserving MCFG table memory at [mem 0x3e7e30e5-0x3e7e3120] [00:00:09.268] [ 0.000000] ACPI: Reserving WAET table memory at [mem 0x3e7e3121-0x3e7e3148] [00:00:09.270] [ 0.000000] Zone ranges: [00:00:09.271] [ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff] [00:00:09.272] [ 0.000000] DMA32 [mem 0x0000000001000000-0x000000003e7d7fff] [00:00:09.274] [ 0.000000] Normal empty [00:00:09.274] [ 0.000000] Movable zone start for each node [00:00:09.275] [ 0.000000] Early memory node ranges [00:00:09.276] [ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff] [00:00:09.278] [ 0.000000] node 0: [mem 0x0000000000100000-0x000000003e7d7fff] [00:00:09.279] [ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000003e7d7fff] [00:00:09.281] [ 0.000000] On node 0, zone DMA: 1 pages in unavailable ranges [00:00:09.282] [ 0.000000] On node 0, zone DMA: 97 pages in unavailable ranges [00:00:09.284] [ 0.000000] On node 0, zone DMA32: 6184 pages in unavailable ranges [00:00:09.285] [ 0.000000] ACPI: PM-Timer IO Port: 0x608 [00:00:09.286] [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) [00:00:09.287] [ 0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 [00:00:09.289] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [00:00:09.290] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) [00:00:09.292] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [00:00:09.294] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) [00:00:09.295] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) [00:00:09.297] [ 0.000000] ACPI: Using ACPI (MADT) for SMP configuration information [00:00:09.298] [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 [00:00:09.300] [ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs [00:00:09.301] [ 0.000000] [mem 0x3e800000-0xafffffff] available for PCI devices [00:00:09.302] [ 0.000000] Booting paravirtualized kernel on bare hardware [00:00:09.303] [ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [00:00:09.306] [ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1 [00:00:09.307] [ 0.000000] percpu: Embedded 57 pages/cpu s195560 r8192 d29720 u524288 [00:00:09.309] [ 0.000000] Kernel command line: BOOT_IMAGE=vmlinuz-virt root=UUID=ae7bb8b0-5180-432a-80a5-e4a3065e4684 modules=sd-mod,usb-storage,ext4 console=ttyS0,115200,8n1 rootfstype=ext4 initrd=initramfs-virt [00:00:09.314] [ 0.000000] Unknown kernel command line parameters "BOOT_IMAGE=vmlinuz-virt modules=sd-mod,usb-storage,ext4", will be passed to user space. [00:00:09.317] [ 0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [00:00:09.319] [ 0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear) [00:00:09.321] [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 251704 [00:00:09.322] [ 0.000000] mem auto-init: stack:all(zero), heap alloc:on, heap free:off [00:00:09.324] [ 0.000000] Memory: 958348K/1023448K available (14336K kernel code, 1799K rwdata, 8232K rodata, 2696K init, 2032K bss, 64840K reserved, 0K cma-reserved) [00:00:09.327] [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [00:00:09.329] [ 0.000000] Dynamic Preempt: none [00:00:09.330] [ 0.000000] rcu: Preemptible hierarchical RCU implementation. [00:00:09.331] [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4. [00:00:09.333] [ 0.000000] Trampoline variant of Tasks RCU enabled. [00:00:09.334] [ 0.000000] Tracing variant of Tasks RCU enabled. [00:00:09.335] [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [00:00:09.337] [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 [00:00:09.339] [ 0.000000] NR_IRQS: 16640, nr_irqs: 456, preallocated irqs: 16 [00:00:09.340] [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. [00:00:09.342] [ 0.000000] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____) [00:00:09.344] [ 0.000000] Console: colour VGA+ 80x25 [00:00:09.345] [ 0.000000] printk: console [ttyS0] enabled [00:00:09.354] [ 0.000000] ACPI: Core revision 20230628 [00:00:09.434] [ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns [00:00:09.502] [ 0.040000] APIC: Switch to symmetric I/O mode setup [00:00:09.568] [ 0.100000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [00:00:09.694] [ 0.180000] tsc: Unable to calibrate against PIT [00:00:09.696] [ 0.180000] tsc: using HPET reference calibration [00:00:09.698] [ 0.190000] tsc: Detected 999.937 MHz processor [00:00:09.707] [ 0.005378] tsc: Marking TSC unstable due to TSCs unsynchronized [00:00:09.715] [ 0.012771] Calibrating delay loop (skipped), value calculated using timer frequency.. 1999.87 BogoMIPS (lpj=9999370) [00:00:09.733] [ 0.034772] process: using AMD E400 aware idle routine [00:00:09.736] [ 0.038228] Last level iTLB entries: 4KB 512, 2MB 255, 4MB 127 [00:00:09.739] [ 0.039909] Last level dTLB entries: 4KB 512, 2MB 255, 4MB 127, 1GB 0 [00:00:09.745] [ 0.046305] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [00:00:09.750] [ 0.051843] Spectre V2 : Mitigation: Retpolines [00:00:09.751] [ 0.052983] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch [00:00:09.754] [ 0.055274] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT [00:00:09.843] [ 0.069619] x86/fpu: x87 FPU will use FXSAVE [00:00:11.626] [ 1.890423] Freeing SMP alternatives memory: 32K [00:00:11.634] [ 1.904522] pid_max: default: 32768 minimum: 301 [00:00:11.786] [ 2.030926] LSM: initializing lsm=lockdown,capability,landlock,integrity [00:00:11.858] [ 2.109786] landlock: Up and running. [00:00:11.923] [ 2.172299] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) [00:00:11.925] [ 2.175653] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) [00:00:12.479] [ 2.709619] smpboot: CPU0: AMD QEMU Virtual CPU version 2.5+ (family: 0xf, model: 0x6b, stepping: 0x1) [00:00:12.615] [ 2.840620] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1. [00:00:12.620] [ 2.845595] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1. [00:00:12.636] [ 2.855524] Performance Events: PMU not available due to virtualization, using software events only. [00:00:12.647] [ 2.871647] signal: max sigframe size: 1440 [00:00:12.666] [ 2.890696] rcu: Hierarchical SRCU implementation. [00:00:12.667] [ 2.892096] rcu: Max phase no-delay instances is 1000. [00:00:12.764] [ 2.989067] NMI watchdog: Perf NMI watchdog permanently disabled [00:00:12.811] [ 3.036140] smp: Bringing up secondary CPUs ... [00:00:12.878] [ 3.104174] smpboot: x86: Booting SMP configuration: [00:00:13.632] [ 3.105805] .... node #0, CPUs: #1 #2 #3 [00:00:13.633] [ 3.836677] smp: Brought up 1 node, 4 CPUs [00:00:13.635] [ 3.840373] smpboot: Max logical packages: 1 [00:00:13.637] [ 3.842288] ---------------- [00:00:13.638] [ 3.843207] | NMI testsuite: [00:00:13.639] [ 3.843903] -------------------- [00:00:13.652] [ 3.846135] remote IPI: ok | [00:00:13.653] [ 3.852587] local IPI: ok | [00:00:13.655] [ 3.860538] -------------------- [00:00:13.656] [ 3.861260] Good, all 2 testcases passed! | [00:00:13.657] [ 3.862650] --------------------------------- [00:00:13.659] [ 3.864527] smpboot: Total of 4 processors activated (8195.87 BogoMIPS) [00:00:13.942] [ 4.135136] devtmpfs: initialized [00:00:14.006] [ 4.201837] x86/mm: Memory block size: 128MB [00:00:14.100] [ 4.293943] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [00:00:14.111] [ 4.307212] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [00:00:14.347] [ 4.543102] NET: Registered PF_NETLINK/PF_ROUTE protocol family [00:00:14.401] [ 4.596695] audit: initializing netlink subsys (disabled) [00:00:14.436] [ 4.630089] audit: type=2000 audit(1718809973.800:1): state=initialized audit_enabled=0 res=1 [00:00:14.487] [ 4.676712] thermal_sys: Registered thermal governor 'step_wise' [00:00:14.489] [ 4.683006] cpuidle: using governor ladder [00:00:14.492] [ 4.687858] cpuidle: using governor menu [00:00:14.521] [ 4.717046] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [00:00:14.605] [ 4.794772] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xb0000000-0xbfffffff] (base 0xb0000000) [00:00:14.614] [ 4.809967] PCI: MMCONFIG at [mem 0xb0000000-0xbfffffff] reserved as E820 entry [00:00:14.640] [ 4.835254] PCI: Using configuration type 1 for base access [00:00:14.672] [ 4.867925] mtrr: your CPUs had inconsistent fixed MTRR settings [00:00:14.674] [ 4.869840] mtrr: your CPUs had inconsistent variable MTRR settings [00:00:14.678] [ 4.873480] mtrr: your CPUs had inconsistent MTRRdefType settings [00:00:14.680] [ 4.875682] mtrr: probably your BIOS does not setup all CPUs. [00:00:14.681] [ 4.877190] mtrr: corrected configuration. [00:00:14.722] [ 4.918421] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. [00:00:14.884] [ 5.056791] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages [00:00:14.891] [ 5.059975] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page [00:00:15.170] [ 5.340071] ACPI: Added _OSI(Module Device) [00:00:15.171] [ 5.341466] ACPI: Added _OSI(Processor Device) [00:00:15.172] [ 5.342531] ACPI: Added _OSI(3.0 _SCP Extensions) [00:00:15.175] [ 5.349779] ACPI: Added _OSI(Processor Aggregator Device) [00:00:15.712] [ 5.884794] ACPI: 1 ACPI AML tables successfully acquired and loaded [00:00:15.961] [ 6.135635] ACPI: _OSC evaluation for CPUs failed, trying _PDC [00:00:15.994] [ 6.169007] ACPI: Interpreter enabled [00:00:16.010] [ 6.185487] ACPI: PM: (supports S0 S3 S5) [00:00:16.012] [ 6.187054] ACPI: Using IOAPIC for interrupt routing [00:00:16.031] [ 6.205586] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [00:00:16.034] [ 6.208906] PCI: Using E820 reservations for host bridge windows [00:00:16.062] [ 6.236319] ACPI: Enabled 2 GPEs in block 00 to 3F [00:00:16.633] [ 6.807296] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) [00:00:16.642] [ 6.816015] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3] [00:00:16.660] [ 6.835281] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug LTR] [00:00:16.673] [ 6.847858] acpi PNP0A08:00: _OSC: OS now controls [PME PCIeCapability] [00:00:16.752] [ 6.926622] PCI host bridge to bus 0000:00 [00:00:16.757] [ 6.931223] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] [00:00:16.760] [ 6.935014] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [00:00:16.762] [ 6.937009] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] [00:00:16.766] [ 6.939792] pci_bus 0000:00: root bus resource [mem 0x3e800000-0xafffffff window] [00:00:16.767] [ 6.941538] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] [00:00:16.769] [ 6.943767] pci_bus 0000:00: root bus resource [mem 0x100000000-0x8ffffffff window] [00:00:16.774] [ 6.948020] pci_bus 0000:00: root bus resource [bus 00-ff] [00:00:16.797] [ 6.971645] pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000 [00:00:16.863] [ 7.037978] pci 0000:00:01.0: [1234:1111] type 00 class 0x030000 [00:00:16.885] [ 7.060337] pci 0000:00:01.0: reg 0x10: [mem 0xfd000000-0xfdffffff pref] [00:00:16.950] [ 7.090161] pci 0000:00:01.0: reg 0x18: [mem 0xfea70000-0xfea70fff] [00:00:17.092] [ 7.180591] pci 0000:00:01.0: reg 0x30: [mem 0xfea60000-0xfea6ffff pref] [00:00:17.104] [ 7.205750] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] [00:00:17.127] [ 7.231006] pci 0000:00:02.0: [1af4:1005] type 00 class 0x00ff00 [00:00:17.170] [ 7.259916] pci 0000:00:02.0: reg 0x10: [io 0xd180-0xd19f] [00:00:17.212] [ 7.269619] pci 0000:00:02.0: reg 0x14: [mem 0xfea71000-0xfea71fff] [00:00:17.358] [ 7.340024] pci 0000:00:02.0: reg 0x20: [mem 0xfe200000-0xfe203fff 64bit pref] [00:00:17.432] [ 7.406018] pci 0000:00:03.0: [1b36:0001] type 01 class 0x060400 [00:00:17.477] [ 7.429619] pci 0000:00:03.0: reg 0x10: [mem 0xfea72000-0xfea720ff 64bit] [00:00:17.560] [ 7.501396] pci 0000:00:04.0: [1af4:1001] type 00 class 0x010000 [00:00:17.583] [ 7.509619] pci 0000:00:04.0: reg 0x10: [io 0xd000-0xd07f] [00:00:17.635] [ 7.529696] pci 0000:00:04.0: reg 0x14: [mem 0xfea73000-0xfea73fff] [00:00:17.768] [ 7.570639] pci 0000:00:04.0: reg 0x20: [mem 0xfe204000-0xfe207fff 64bit pref] [00:00:17.868] [ 7.631023] pci 0000:00:05.0: [1af4:1009] type 00 class 0x000200 [00:00:17.905] [ 7.649619] pci 0000:00:05.0: reg 0x10: [io 0xd080-0xd0bf] [00:00:17.961] [ 7.649619] pci 0000:00:05.0: reg 0x14: [mem 0xfea74000-0xfea74fff] [00:00:18.106] [ 7.729998] pci 0000:00:05.0: reg 0x20: [mem 0xfe208000-0xfe20bfff 64bit pref] [00:00:18.182] [ 7.785786] pci 0000:00:06.0: [1af4:1009] type 00 class 0x000200 [00:00:18.231] [ 7.809619] pci 0000:00:06.0: reg 0x10: [io 0xd1a0-0xd1bf] [00:00:18.282] [ 7.840170] pci 0000:00:06.0: reg 0x14: [mem 0xfea75000-0xfea75fff] [00:00:18.418] [ 7.929619] pci 0000:00:06.0: reg 0x20: [mem 0xfe20c000-0xfe20ffff 64bit pref] [00:00:18.480] [ 7.974104] pci 0000:00:07.0: [1af4:1009] type 00 class 0x000200 [00:00:18.545] [ 7.989619] pci 0000:00:07.0: reg 0x10: [io 0xd1c0-0xd1df] [00:00:18.589] [ 8.009619] pci 0000:00:07.0: reg 0x14: [mem 0xfea76000-0xfea76fff] [00:00:18.727] [ 8.051389] pci 0000:00:07.0: reg 0x20: [mem 0xfe210000-0xfe213fff 64bit pref] [00:00:18.795] [ 8.107772] pci 0000:00:08.0: [1af4:1003] type 00 class 0x078000 [00:00:18.851] [ 8.129619] pci 0000:00:08.0: reg 0x10: [io 0xd0c0-0xd0ff] [00:00:18.899] [ 8.161269] pci 0000:00:08.0: reg 0x14: [mem 0xfea77000-0xfea77fff] [00:00:19.042] [ 8.220135] pci 0000:00:08.0: reg 0x20: [mem 0xfe214000-0xfe217fff 64bit pref] [00:00:19.112] [ 8.306044] pci 0000:00:09.0: [8086:100e] type 00 class 0x020000 [00:00:19.151] [ 8.331645] pci 0000:00:09.0: reg 0x10: [mem 0xfea40000-0xfea5ffff] [00:00:19.196] [ 8.357401] pci 0000:00:09.0: reg 0x14: [io 0xd100-0xd13f] [00:00:19.371] [ 8.470257] pci 0000:00:09.0: reg 0x30: [mem 0xfea00000-0xfea3ffff pref] [00:00:19.411] [ 8.515300] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300 [00:00:19.495] [ 8.539619] pci 0000:00:1d.0: reg 0x20: [io 0xd1e0-0xd1ff] [00:00:19.562] [ 8.595442] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300 [00:00:19.666] [ 8.659619] pci 0000:00:1d.1: reg 0x20: [io 0xd200-0xd21f] [00:00:19.731] [ 8.725065] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300 [00:00:19.806] [ 8.749619] pci 0000:00:1d.2: reg 0x20: [io 0xd220-0xd23f] [00:00:19.850] [ 8.815392] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320 [00:00:19.877] [ 8.819619] pci 0000:00:1d.7: reg 0x10: [mem 0xfea78000-0xfea78fff] [00:00:19.997] [ 8.890783] pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100 [00:00:20.017] [ 8.905104] pci 0000:00:1f.0: quirk: [io 0x0600-0x067f] claimed by ICH6 ACPI/GPIO/TCO [00:00:20.043] [ 8.925012] pci 0000:00:1f.0: quirk_ich7_lpc+0x0/0x60 took 29296 usecs [00:00:20.066] [ 8.960383] pci 0000:00:1f.2: [8086:2922] type 00 class 0x010601 [00:00:20.211] [ 8.989619] pci 0000:00:1f.2: reg 0x20: [io 0xd240-0xd25f] [00:00:20.272] [ 9.030582] pci 0000:00:1f.2: reg 0x24: [mem 0xfea79000-0xfea79fff] [00:00:20.341] [ 9.105651] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500 [00:00:20.432] [ 9.149619] pci 0000:00:1f.3: reg 0x20: [io 0x0700-0x073f] [00:00:20.530] [ 9.245215] pci_bus 0000:01: extended config space not accessible [00:00:20.579] [ 9.293749] acpiphp: Slot [0] registered [00:00:20.581] [ 9.296652] acpiphp: Slot [1] registered [00:00:20.585] [ 9.299888] acpiphp: Slot [2] registered [00:00:20.586] [ 9.301570] acpiphp: Slot [3] registered [00:00:20.588] [ 9.303470] acpiphp: Slot [4] registered [00:00:20.591] [ 9.306468] acpiphp: Slot [5] registered [00:00:20.595] [ 9.309889] acpiphp: Slot [6] registered [00:00:20.596] [ 9.311423] acpiphp: Slot [7] registered [00:00:20.598] [ 9.313189] acpiphp: Slot [8] registered [00:00:20.602] [ 9.317547] acpiphp: Slot [9] registered [00:00:20.606] [ 9.321000] acpiphp: Slot [10] registered [00:00:20.608] [ 9.323029] acpiphp: Slot [11] registered [00:00:20.611] [ 9.325720] acpiphp: Slot [12] registered [00:00:20.612] [ 9.327179] acpiphp: Slot [13] registered [00:00:20.616] [ 9.331110] acpiphp: Slot [14] registered [00:00:20.618] [ 9.332953] acpiphp: Slot [15] registered [00:00:20.621] [ 9.335703] acpiphp: Slot [16] registered [00:00:20.622] [ 9.337409] acpiphp: Slot [17] registered [00:00:20.626] [ 9.340823] acpiphp: Slot [18] registered [00:00:20.628] [ 9.343280] acpiphp: Slot [19] registered [00:00:20.631] [ 9.345745] acpiphp: Slot [20] registered [00:00:20.632] [ 9.347261] acpiphp: Slot [21] registered [00:00:20.636] [ 9.350729] acpiphp: Slot [22] registered [00:00:20.637] [ 9.352499] acpiphp: Slot [23] registered [00:00:20.640] [ 9.354930] acpiphp: Slot [24] registered [00:00:20.642] [ 9.356927] acpiphp: Slot [25] registered [00:00:20.646] [ 9.360703] acpiphp: Slot [26] registered [00:00:20.647] [ 9.362534] acpiphp: Slot [27] registered [00:00:20.650] [ 9.365099] acpiphp: Slot [28] registered [00:00:20.652] [ 9.367296] acpiphp: Slot [29] registered [00:00:20.656] [ 9.370843] acpiphp: Slot [30] registered [00:00:20.658] [ 9.372828] acpiphp: Slot [31] registered [00:00:20.662] [ 9.376750] pci 0000:00:03.0: PCI bridge to [bus 01] [00:00:20.666] [ 9.380726] pci 0000:00:03.0: bridge window [io 0xc000-0xcfff] [00:00:20.668] [ 9.383137] pci 0000:00:03.0: bridge window [mem 0xfe800000-0xfe9fffff] [00:00:20.672] [ 9.386658] pci 0000:00:03.0: bridge window [mem 0xfe000000-0xfe1fffff 64bit pref] [00:00:20.750] [ 9.465475] ACPI: PCI: Interrupt link LNKA configured for IRQ 10 [00:00:20.760] [ 9.476080] ACPI: PCI: Interrupt link LNKB configured for IRQ 10 [00:00:20.767] [ 9.482508] ACPI: PCI: Interrupt link LNKC configured for IRQ 11 [00:00:20.775] [ 9.490444] ACPI: PCI: Interrupt link LNKD configured for IRQ 11 [00:00:20.781] [ 9.496597] ACPI: PCI: Interrupt link LNKE configured for IRQ 10 [00:00:20.792] [ 9.505671] ACPI: PCI: Interrupt link LNKF configured for IRQ 10 [00:00:20.802] [ 9.514609] ACPI: PCI: Interrupt link LNKG configured for IRQ 11 [00:00:20.810] [ 9.519883] ACPI: PCI: Interrupt link LNKH configured for IRQ 11 [00:00:20.814] [ 9.529872] ACPI: PCI: Interrupt link GSIA configured for IRQ 16 [00:00:20.817] [ 9.530719] ACPI: PCI: Interrupt link GSIB configured for IRQ 17 [00:00:20.820] [ 9.533368] ACPI: PCI: Interrupt link GSIC configured for IRQ 18 [00:00:20.822] [ 9.535779] ACPI: PCI: Interrupt link GSID configured for IRQ 19 [00:00:20.827] [ 9.540896] ACPI: PCI: Interrupt link GSIE configured for IRQ 20 [00:00:20.829] [ 9.542895] ACPI: PCI: Interrupt link GSIF configured for IRQ 21 [00:00:20.832] [ 9.545763] ACPI: PCI: Interrupt link GSIG configured for IRQ 22 [00:00:20.835] [ 9.550476] ACPI: PCI: Interrupt link GSIH configured for IRQ 23 [00:00:20.906] [ 9.621177] iommu: Default domain type: Translated [00:00:20.908] [ 9.623411] iommu: DMA domain TLB invalidation policy: lazy mode [00:00:20.949] [ 9.664181] SCSI subsystem initialized [00:00:20.981] [ 9.696345] pps_core: LinuxPPS API ver. 1 registered [00:00:20.983] [ 9.697969] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [00:00:20.987] [ 9.701027] PTP clock support registered [00:00:21.164] [ 9.878257] PCI: Using ACPI for IRQ routing [00:00:21.278] [ 9.992955] hpet: 3 channels of 0 reserved for per-cpu timers [00:00:21.315] [ 10.025115] clocksource: Switched to clocksource hpet [00:00:21.494] [ 10.203622] VFS: Disk quotas dquot_6.6.0 [00:00:21.499] [ 10.209216] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [00:00:21.562] [ 10.270942] pnp: PnP ACPI init [00:00:21.634] [ 10.343897] system 00:05: [mem 0xb0000000-0xbfffffff window] has been reserved [00:00:21.665] [ 10.374639] pnp: PnP ACPI: found 6 devices [00:00:22.677] [ 11.358333] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [00:00:22.752] [ 11.462317] NET: Registered PF_INET protocol family [00:00:22.792] [ 11.501572] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear) [00:00:22.941] [ 11.650061] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear) [00:00:22.945] [ 11.655646] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [00:00:22.948] [ 11.658264] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear) [00:00:22.957] [ 11.666669] TCP bind hash table entries: 8192 (order: 6, 262144 bytes, linear) [00:00:22.963] [ 11.673253] TCP: Hash tables configured (established 8192 bind 8192) [00:00:23.032] [ 11.742493] MPTCP token hash table entries: 1024 (order: 2, 24576 bytes, linear) [00:00:23.039] [ 11.749546] UDP hash table entries: 512 (order: 2, 16384 bytes, linear) [00:00:23.048] [ 11.758339] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear) [00:00:23.080] [ 11.789596] NET: Registered PF_UNIX/PF_LOCAL protocol family [00:00:23.088] [ 11.798404] NET: Registered PF_XDP protocol family [00:00:23.119] [ 11.823805] pci 0000:00:03.0: PCI bridge to [bus 01] [00:00:23.126] [ 11.834914] pci 0000:00:03.0: bridge window [io 0xc000-0xcfff] [00:00:23.144] [ 11.853455] pci 0000:00:03.0: bridge window [mem 0xfe800000-0xfe9fffff] [00:00:23.156] [ 11.865281] pci 0000:00:03.0: bridge window [mem 0xfe000000-0xfe1fffff 64bit pref] [00:00:23.195] [ 11.903544] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] [00:00:23.197] [ 11.907098] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] [00:00:23.200] [ 11.909670] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] [00:00:23.203] [ 11.913027] pci_bus 0000:00: resource 7 [mem 0x3e800000-0xafffffff window] [00:00:23.205] [ 11.915498] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xfebfffff window] [00:00:23.208] [ 11.918171] pci_bus 0000:00: resource 9 [mem 0x100000000-0x8ffffffff window] [00:00:23.216] [ 11.925636] pci_bus 0000:01: resource 0 [io 0xc000-0xcfff] [00:00:23.217] [ 11.927492] pci_bus 0000:01: resource 1 [mem 0xfe800000-0xfe9fffff] [00:00:23.219] [ 11.929362] pci_bus 0000:01: resource 2 [mem 0xfe000000-0xfe1fffff 64bit pref] [00:00:23.454] [ 12.163947] ACPI: \_SB_.GSIA: Enabled at IRQ 16 [00:00:23.647] [ 12.350069] pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x7d0 took 363311 usecs [00:00:23.678] [ 12.388277] ACPI: \_SB_.GSIB: Enabled at IRQ 17 [00:00:23.719] [ 12.429168] pci 0000:00:1d.1: quirk_usb_early_handoff+0x0/0x7d0 took 64544 usecs [00:00:23.744] [ 12.454500] ACPI: \_SB_.GSIC: Enabled at IRQ 18 [00:00:23.785] [ 12.494806] pci 0000:00:1d.2: quirk_usb_early_handoff+0x0/0x7d0 took 60245 usecs [00:00:23.811] [ 12.519668] ACPI: \_SB_.GSID: Enabled at IRQ 19 [00:00:23.932] [ 12.642039] pci 0000:00:1d.7: quirk_usb_early_handoff+0x0/0x7d0 took 141045 usecs [00:00:23.935] [ 12.644849] PCI: CLS 0 bytes, default 64 [00:00:24.189] [ 12.898948] Unpacking initramfs... [00:00:24.280] [ 12.989746] Initialise system trusted keyrings [00:00:24.394] [ 13.103940] workingset: timestamp_bits=46 max_order=18 bucket_order=0 [00:00:24.399] [ 13.108893] zbud: loaded [00:00:24.550] [ 13.249919] Key type asymmetric registered [00:00:24.552] [ 13.262650] Asymmetric key parser 'x509' registered [00:00:24.574] [ 13.283901] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) [00:00:24.621] [ 13.330745] io scheduler mq-deadline registered [00:00:24.622] [ 13.332445] io scheduler kyber registered [00:00:24.628] [ 13.338033] io scheduler bfq registered [00:00:24.968] [ 13.678463] ERST DBG: ERST support is disabled. [00:00:25.048] [ 13.758382] ACPI: \_SB_.GSIG: Enabled at IRQ 22 [00:00:25.222] [ 13.932021] ACPI: \_SB_.GSIE: Enabled at IRQ 20 [00:00:25.288] [ 13.997878] ACPI: \_SB_.GSIF: Enabled at IRQ 21 [00:00:25.486] [ 14.195723] ACPI: \_SB_.GSIH: Enabled at IRQ 23 [00:00:25.676] [ 14.386020] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [00:00:25.845] [ 14.554874] 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [00:00:26.422] [ 15.131885] VMware PVSCSI driver - version 1.0.7.0-k [00:00:26.585] [ 15.295162] ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 6 ports 1.5 Gbps 0x3f impl SATA mode [00:00:26.588] [ 15.298734] ahci 0000:00:1f.2: flags: 64bit ncq only [00:00:26.804] [ 15.514589] scsi host0: ahci [00:00:26.913] [ 15.622638] scsi host1: ahci [00:00:26.949] [ 15.658895] scsi host2: ahci [00:00:27.005] [ 15.700049] scsi host3: ahci [00:00:27.038] [ 15.748322] scsi host4: ahci [00:00:27.084] [ 15.794288] scsi host5: ahci [00:00:27.105] [ 15.814229] ata1: SATA max UDMA/133 abar m4096@0xfea79000 port 0xfea79100 irq 26 [00:00:27.107] [ 15.817566] ata2: SATA max UDMA/133 abar m4096@0xfea79000 port 0xfea79180 irq 26 [00:00:27.109] [ 15.819415] ata3: SATA max UDMA/133 abar m4096@0xfea79000 port 0xfea79200 irq 26 [00:00:27.124] [ 15.833807] ata4: SATA max UDMA/133 abar m4096@0xfea79000 port 0xfea79280 irq 26 [00:00:27.126] [ 15.836172] ata5: SATA max UDMA/133 abar m4096@0xfea79000 port 0xfea79300 irq 26 [00:00:27.128] [ 15.838162] ata6: SATA max UDMA/133 abar m4096@0xfea79000 port 0xfea79380 irq 26 [00:00:27.247] [ 15.956564] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 [00:00:27.366] [ 16.076200] serio: i8042 KBD port at 0x60,0x64 irq 1 [00:00:27.382] [ 16.091671] serio: i8042 AUX port at 0x60,0x64 irq 12 [00:00:27.397] [ 16.107395] rtc_cmos 00:04: RTC can wake from S4 [00:00:27.605] [ 16.315282] rtc_cmos 00:04: registered as rtc0 [00:00:27.624] [ 16.333878] ata1: SATA link down (SStatus 0 SControl 300) [00:00:27.639] [ 16.345828] rtc_cmos 00:04: setting system clock to 2024-06-19T15:13:07 UTC (1718809987) [00:00:27.676] [ 16.385883] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300) [00:00:27.709] [ 16.418596] ata4: SATA link down (SStatus 0 SControl 300) [00:00:27.738] [ 16.447695] rtc_cmos 00:04: alarms up to one day, y3k, 242 bytes nvram, hpet irqs [00:00:27.745] [ 16.454636] ata2: SATA link down (SStatus 0 SControl 300) [00:00:27.802] [ 16.512291] amd_pstate: the _CPC object is not present in SBIOS or ACPI disabled [00:00:27.853] [ 16.563218] ata3.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100 [00:00:27.855] [ 16.565559] ata3.00: applying bridge limits [00:00:27.886] [ 16.596498] ata5: SATA link down (SStatus 0 SControl 300) [00:00:27.897] [ 16.606759] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0 [00:00:27.903] [ 16.613480] gre: GRE over IPv4 demultiplexor driver [00:00:27.947] [ 16.656799] ata3.00: configured for UDMA/100 [00:00:28.008] [ 16.718332] ata6: SATA link down (SStatus 0 SControl 300) [00:00:28.422] [ 17.131773] scsi 2:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5 [00:00:29.373] [ 18.083441] NET: Registered PF_INET6 protocol family [00:00:29.617] [ 18.326797] Segment Routing with IPv6 [00:00:29.633] [ 18.342205] In-situ OAM (IOAM) with IPv6 [00:00:29.665] [ 18.375060] Key type dns_resolver registered [00:00:29.705] [ 18.414871] IPI shorthand broadcast: enabled [00:00:30.603] [ 19.313333] registered taskstats version 1 [00:00:30.683] [ 19.379932] Loading compiled-in X.509 certificates [00:00:30.983] [ 19.692640] Freeing initrd memory: 8096K [00:00:34.069] [ 22.778690] Loaded X.509 cert 'alpinelinux.org: Alpine Linux kernel key: d76a695f66ad9cd28f5c22a8508f36e91f521f7a' [00:00:34.203] [ 22.913416] Key type .fscrypt registered [00:00:34.205] [ 22.915151] Key type fscrypt-provisioning registered [00:00:34.288] [ 22.997502] Unstable clock detected, switching default tracing clock to "global" [00:00:34.289] [ 22.997502] If you want to keep using the local clock, then add: [00:00:34.294] [ 22.997502] "trace_clock=local" [00:00:34.295] [ 22.997502] on the kernel command line [00:00:34.767] [ 23.476398] Freeing unused kernel image (initmem) memory: 2696K [00:00:34.769] [ 23.479298] Write protecting the kernel read-only data: 24576k [00:00:34.815] [ 23.525239] Freeing unused kernel image (rodata/data gap) memory: 2008K [00:00:34.825] [ 23.534768] rodata_test: all tests were successful [00:00:34.829] [ 23.539187] Run /init as init process [00:00:36.473] [ 25.182689] Alpine Init 3.10.0-r0 [00:00:36.493] Alpine Init 3.10.0-r0 [00:00:36.549] [ 25.258697] Loading boot drivers... [00:00:36.558] * Loading boot drivers: [ 30.056073] ACPI: bus type USB registered [00:00:41.408] [ 30.117646] usbcore: registered new interface driver usbfs [00:00:41.435] [ 30.144805] usbcore: registered new interface driver hub [00:00:41.445] [ 30.154735] usbcore: registered new device driver usb [00:00:41.679] [ 30.388809] usbcore: registered new interface driver usb-storage [00:00:45.969] [ 34.679493] loop: module loaded [00:00:48.014] [ 36.724255] ACPI: bus type drm_connector registered [00:00:49.370] [ 38.079495] Loading boot drivers: ok. [00:00:49.401] ok. [00:00:49.814] [ 38.523595] Mounting root... [00:00:49.822] * Mounting root: [ 46.609656] ehci-pci 0000:00:1d.7: EHCI Host Controller [00:00:57.913] [ 46.623449] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1 [00:00:57.974] [ 46.683892] ehci-pci 0000:00:1d.7: irq 19, io mem 0xfea78000 [00:00:58.005] [ 46.714931] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00 [00:00:58.086] [ 46.796389] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06 [00:00:58.088] [ 46.798498] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [00:00:58.090] [ 46.800638] usb usb1: Product: EHCI Host Controller [00:00:58.092] [ 46.801880] usb usb1: Manufacturer: Linux 6.6.33-0-virt ehci_hcd [00:00:58.093] [ 46.803474] usb usb1: SerialNumber: 0000:00:1d.7 [00:00:58.178] [ 46.887776] hub 1-0:1.0: USB hub found [00:00:58.188] [ 46.897749] hub 1-0:1.0: 6 ports detected [00:00:58.567] [ 47.276914] uhci_hcd 0000:00:1d.0: UHCI Host Controller [00:00:58.569] [ 47.279555] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2 [00:00:58.573] [ 47.283213] uhci_hcd 0000:00:1d.0: detected 2 ports [00:00:58.591] [ 47.289991] uhci_hcd 0000:00:1d.0: irq 16, io port 0x0000d1e0 [00:00:58.615] [ 47.325487] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06 [00:00:58.618] [ 47.327834] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [00:00:58.622] [ 47.330224] usb usb2: Product: UHCI Host Controller [00:00:58.624] [ 47.333790] usb usb2: Manufacturer: Linux 6.6.33-0-virt uhci_hcd [00:00:58.625] [ 47.335634] usb usb2: SerialNumber: 0000:00:1d.0 [00:00:58.654] [ 47.364491] hub 2-0:1.0: USB hub found [00:00:58.662] [ 47.372385] hub 2-0:1.0: 2 ports detected [00:00:58.778] [ 47.482141] uhci_hcd 0000:00:1d.1: UHCI Host Controller [00:00:58.787] [ 47.496865] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3 [00:00:58.789] [ 47.499212] uhci_hcd 0000:00:1d.1: detected 2 ports [00:00:58.802] [ 47.511670] uhci_hcd 0000:00:1d.1: irq 17, io port 0x0000d200 [00:00:58.833] [ 47.543052] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06 [00:00:58.835] [ 47.545515] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [00:00:58.837] [ 47.547666] usb usb3: Product: UHCI Host Controller [00:00:58.839] [ 47.548716] usb usb3: Manufacturer: Linux 6.6.33-0-virt uhci_hcd [00:00:58.839] [ 47.549573] usb usb3: SerialNumber: 0000:00:1d.1 [00:00:58.859] [ 47.568979] hub 3-0:1.0: USB hub found [00:00:58.876] [ 47.586500] hub 3-0:1.0: 2 ports detected [00:00:58.959] [ 47.669142] uhci_hcd 0000:00:1d.2: UHCI Host Controller [00:00:58.963] [ 47.673198] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4 [00:00:58.965] [ 47.675423] uhci_hcd 0000:00:1d.2: detected 2 ports [00:00:58.973] [ 47.683133] uhci_hcd 0000:00:1d.2: irq 18, io port 0x0000d220 [00:00:59.002] [ 47.712267] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06 [00:00:59.005] [ 47.714956] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [00:00:59.006] [ 47.716493] usb usb4: Product: UHCI Host Controller [00:00:59.008] [ 47.718595] usb usb4: Manufacturer: Linux 6.6.33-0-virt uhci_hcd [00:00:59.009] [ 47.719698] usb usb4: SerialNumber: 0000:00:1d.2 [00:00:59.038] [ 47.748447] hub 4-0:1.0: USB hub found [00:00:59.044] [ 47.754446] hub 4-0:1.0: 2 ports detected [00:01:00.632] [ 49.342053] sr 2:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray [00:01:00.636] [ 49.346202] cdrom: Uniform CD-ROM driver Revision: 3.20 [00:01:00.654] [ 49.363876] sr 2:0:0:0: [sr0] Hmm, seems the drive doesn't support multisession CD's [00:01:01.865] [ 50.575354] virtio_blk virtio1: 4/0/0 default/read/poll queues [00:01:02.002] [ 50.711451] virtio_blk virtio1: [vda] 6291456 512-byte logical blocks (3.22 GB/3.00 GiB) [00:01:02.115] [ 50.824916] vda: vda1 vda2 vda3 [00:01:22.604] [ 71.313770] block sr0: the capability attribute has been deprecated. [00:01:29.956] [ 78.549237] hrtimer: interrupt took 45145160 ns [00:01:37.438] [ 86.124177] EXT4-fs (vda3): orphan cleanup on readonly fs [00:01:37.458] [ 86.165540] EXT4-fs (vda3): mounted filesystem ae7bb8b0-5180-432a-80a5-e4a3065e4684 ro with ordered data mode. Quota mode: none. [00:01:37.506] [ 86.216305] Mounting root: ok. [00:01:37.552] ok. [00:01:40.352] [00:01:40.461] OpenRC 0.54 is starting up Linux 6.6.33-0-virt (x86_64) [00:01:40.463] [00:01:41.559] * /proc is already mounted [00:01:42.070] * Mounting /run ... [ ok ] [00:01:42.774] * /run/openrc: creating directory [00:01:42.905] * /run/lock: creating directory [00:01:42.913] * /run/lock: correcting owner [00:02:06.461] * Caching service dependencies ... [ ok ] [00:02:08.803] * Remounting devtmpfs on /dev ... [ ok ] [00:02:10.224] * Mounting /dev/mqueue ... [ ok ] [00:02:14.991] * Mounting security filesystem ... [ ok ] [00:02:15.386] * Mounting debug filesystem ... [ ok ] [00:02:15.787] * Mounting persistent storage (pstore) filesystem ... [ ok ] [00:02:17.670] * Starting busybox mdev ... [ ok ] [00:02:17.951] * Scanning hardware for mdev ... [ ok ] [00:02:44.720] * Loading hardware drivers ... [ ok ] [00:03:51.681] * Loading modules ... [ ok ] [00:03:57.364] * Setting system clock using the hardware clock [UTC] ... [ ok ] [00:04:00.890] * Checking local filesystems .../dev/vda3: clean, 40406/128256 files, 268057/512768 blocks [00:04:02.300] /dev/vda1: clean, 29/76912 files, 54025/307200 blocks [00:04:04.704] [ ok ] [00:04:08.090] * Remounting root filesystem read/write ... [ ok ] [00:04:09.192] * Remounting filesystems ... [ ok ] [00:04:12.150] * Activating swap devices ... [ ok ] [00:04:14.770] * Mounting local filesystems ... [ ok ] [00:04:17.391] * Configuring kernel parameters ... [ ok ] [00:04:21.701] * Creating user login records ... [ ok ] [00:04:25.320] * Setting hostname ... [ ok ] [00:04:27.421] * Starting networking ... * lo ... [ ok ] [00:04:33.874] * eth0 ...udhcpc: started, v1.36.1 [00:04:36.430] udhcpc: broadcasting discover [00:04:36.817] udhcpc: broadcasting select for 10.0.2.15, server 10.0.2.2 [00:04:36.931] udhcpc: lease of 10.0.2.15 obtained from 10.0.2.2, lease time 86400 [00:04:39.590] [ ok ] [00:04:41.949] * Seeding random number generator ... * Seeding 256 bits and crediting [00:04:42.290] * Saving 256 bits of creditable seed for next boot [00:04:42.438] [ ok ] [00:04:44.449] * Starting busybox syslog ... [ ok ] [00:04:52.662] * Starting busybox acpid ... [ ok ] [00:04:55.287] * Starting busybox crond ... [ ok ] [00:04:57.718] * Starting rngd ... [ ok ] [00:05:21.263] * Starting sshd ... [ ok ] [00:05:30.047] * Starting vsftpd ... [ ok ] [00:05:37.793] [00:05:37.902] Welcome to Alpine Linux 3.20 Kernel 6.6.33-0-virt on an x86_64 (/dev/ttyS0) [00:05:37.905] localhost login:

Smartphone-1-Is-Android-10: vmtest-QEMU-8.2.5, solution not applied, vmtest-QEMU-8.2.5 is slower than vmtest-QEMU-8.0.2

~ $ ~ $ qemu-system-x86_64 --version | grep version QEMU emulator version 8.2.5 ~ $

~ $ QEMU_SOCKET_FILENAME=$HOME/termux-qemu-usb/qemu.socket ; touch $QEMU_SOCKET_FILENAME ; export VMDIR=/storage/NUMBER-REMOVED/Android/data/com.termux/files/qemu ; export VM=$VMDIR/vmtest ; qemu-system-x86_64 -m 1000M -machine q35 -smp 4 -device virtio-rng-pci -device pci-bridge,id=bridge0,chassis_nr=1 -nographic -monitor unix:$QEMU_SOCKET_FILENAME,server,wait=off -serial mon:stdio -device ich9-usb-ehci1,id=ehci,addr=1d.7,multifunction=on -device ich9-usb-uhci1,id=uhci-1,addr=1d.0,multifunction=on,masterbus=ehci.0,firstport=0 -device ich9-usb-uhci2,id=uhci-2,addr=1d.1,multifunction=on,masterbus=ehci.0,firstport=2 -device ich9-usb-uhci3,id=uhci-3,addr=1d.2,multifunction=on,masterbus=ehci.0,firstport=4 -drive if=none,id=vm,format=raw,file=$VM -device virtio-blk-pci,id=vmvirt1,drive=vm,bootindex=1 -virtfs local,security_model=none,id=host-all,mount_tag=host-all,path=/storage/emulated/0 -virtfs local,security_model=none,id=termux,mount_tag=termux,path=/data/data/com.termux/files -virtfs local,security_model=none,id=host,mount_tag=host,path=/storage/emulated/0/Download/usb1 -device virtio-serial -device e1000,netdev=net0,mac=52:54:12:34:56:78 -netdev user,id=net0,ipv6=off,hostfwd=tcp:127.0.0.1:9080-:80,hostfwd=tcp:127.0.0.1:9022-:22,hostfwd=tcp:127.0.0.1:9445-:445,hostfwd=:127.0.0.1:50021-:21,hostfwd=:127.0.0.1:50001-:50001,hostfwd=:127.0.0.1:50002-:50002,hostfwd=:127.0.0.1:50003-:50003,hostfwd=:127.0.0.1:50004-:50004,hostfwd=:127.0.0.1:50005-:50005,hostfwd=:127.0.0.1:50006-:50006,hostfwd=:127.0.0.1:50007-:50007,hostfwd=:127.0.0.1:50008-:50008,hostfwd=:127.0.0.1:50009-:50009,hostfwd=:127.0.0.1:50010-:50010,hostfwd=:127.0.0.1:50011-:50011,hostfwd=:127.0.0.1:50012-:50012,hostfwd=:127.0.0.1:50013-:50013,hostfwd=:127.0.0.1:50014-:50014,hostfwd=:127.0.0.1:50015-:50015,hostfwd=:127.0.0.1:50016-:50016,hostfwd=:127.0.0.1:50017-:50017,hostfwd=:127.0.0.1:50018-:50018,hostfwd=:127.0.0.1:50019-:50019,hostfwd=:127.0.0.1:50020-:50020

[ 0.000000] Linux version 6.6.33-0-virt (buildozer@build-3-20-x86_64) (gcc (Alpine 13.2.1_git20240309) 13.2.1 20240309, GNU ld (GNU Binutils) 2.42) #1-Alpine SMP PREEMPT_DYNAMIC Thu, 13 Jun 2024 07:49:22 +0000 [00:00:10.772] [ 0.000000] Command line: BOOT_IMAGE=vmlinuz-virt root=UUID=ae7bb8b0-5180-432a-80a5-e4a3065e4684 modules=sd-mod,usb-storage,ext4 console=ttyS0,115200,8n1 rootfstype=ext4 initrd=initramfs-virt [00:00:10.777] [ 0.000000] BIOS-provided physical RAM map: [00:00:10.779] [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable [00:00:10.781] [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved [00:00:10.782] [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved [00:00:10.784] [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003e7d7fff] usable [00:00:10.786] [ 0.000000] BIOS-e820: [mem 0x000000003e7d8000-0x000000003e7fffff] reserved [00:00:10.788] [ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved [00:00:10.790] [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved [00:00:10.792] [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved [00:00:10.794] [ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved [00:00:10.796] [ 0.000000] NX (Execute Disable) protection: active [00:00:10.798] [ 0.000000] APIC: Static calls initialized [00:00:10.799] [ 0.000000] SMBIOS 3.0.0 present. [00:00:10.800] [ 0.000000] DMI: QEMU Standard PC (Q35 + ICH9, 2009), BIOS rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org 04/01/2014 [00:00:10.803] [ 0.000000] tsc: Fast TSC calibration failed [00:00:10.804] [ 0.000000] last_pfn = 0x3e7d8 max_arch_pfn = 0x400000000 [00:00:10.806] [ 0.000000] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs [00:00:10.808] [ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [00:00:10.810] [ 0.000000] RAMDISK: [mem 0x3dff0000-0x3e7d7fff] [00:00:10.811] [ 0.000000] ACPI: Early table checksum verification disabled [00:00:10.812] [ 0.000000] ACPI: RSDP 0x00000000000F5240 000014 (v00 BOCHS ) [00:00:10.814] [ 0.000000] ACPI: RSDT 0x000000003E7E32C3 000038 (v01 BOCHS BXPC 00000001 BXPC 00000001) [00:00:10.816] [ 0.000000] ACPI: FACP 0x000000003E7E30A3 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001) [00:00:10.819] [ 0.000000] ACPI: DSDT 0x000000003E7E0040 003063 (v01 BOCHS BXPC 00000001 BXPC 00000001) [00:00:10.821] [ 0.000000] ACPI: FACS 0x000000003E7E0000 000040 [00:00:10.822] [ 0.000000] ACPI: APIC 0x000000003E7E3197 000090 (v03 BOCHS BXPC 00000001 BXPC 00000001) [00:00:10.825] [ 0.000000] ACPI: HPET 0x000000003E7E3227 000038 (v01 BOCHS BXPC 00000001 BXPC 00000001) [00:00:10.826] [ 0.000000] ACPI: MCFG 0x000000003E7E325F 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001) [00:00:10.828] [ 0.000000] ACPI: WAET 0x000000003E7E329B 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001) [00:00:10.831] [ 0.000000] ACPI: Reserving FACP table memory at [mem 0x3e7e30a3-0x3e7e3196] [00:00:10.833] [ 0.000000] ACPI: Reserving DSDT table memory at [mem 0x3e7e0040-0x3e7e30a2] [00:00:10.835] [ 0.000000] ACPI: Reserving FACS table memory at [mem 0x3e7e0000-0x3e7e003f] [00:00:10.836] [ 0.000000] ACPI: Reserving APIC table memory at [mem 0x3e7e3197-0x3e7e3226] [00:00:10.838] [ 0.000000] ACPI: Reserving HPET table memory at [mem 0x3e7e3227-0x3e7e325e] [00:00:10.840] [ 0.000000] ACPI: Reserving MCFG table memory at [mem 0x3e7e325f-0x3e7e329a] [00:00:10.842] [ 0.000000] ACPI: Reserving WAET table memory at [mem 0x3e7e329b-0x3e7e32c2] [00:00:10.844] [ 0.000000] Zone ranges: [00:00:10.844] [ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff] [00:00:10.846] [ 0.000000] DMA32 [mem 0x0000000001000000-0x000000003e7d7fff] [00:00:10.848] [ 0.000000] Normal empty [00:00:10.849] [ 0.000000] Movable zone start for each node [00:00:10.850] [ 0.000000] Early memory node ranges [00:00:10.851] [ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff] [00:00:10.853] [ 0.000000] node 0: [mem 0x0000000000100000-0x000000003e7d7fff] [00:00:10.854] [ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000003e7d7fff] [00:00:10.855] [ 0.000000] On node 0, zone DMA: 1 pages in unavailable ranges [00:00:10.857] [ 0.000000] On node 0, zone DMA: 97 pages in unavailable ranges [00:00:10.858] [ 0.000000] On node 0, zone DMA32: 6184 pages in unavailable ranges [00:00:10.860] [ 0.000000] ACPI: PM-Timer IO Port: 0x608 [00:00:10.861] [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) [00:00:10.862] [ 0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 [00:00:10.864] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [00:00:10.866] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) [00:00:10.867] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [00:00:10.869] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) [00:00:10.870] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) [00:00:10.872] [ 0.000000] ACPI: Using ACPI (MADT) for SMP configuration information [00:00:10.874] [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 [00:00:10.875] [ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs [00:00:10.876] [ 0.000000] [mem 0x3e800000-0xafffffff] available for PCI devices [00:00:10.878] [ 0.000000] Booting paravirtualized kernel on bare hardware [00:00:10.880] [ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [00:00:10.882] [ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1 [00:00:10.884] [ 0.000000] percpu: Embedded 57 pages/cpu s195560 r8192 d29720 u524288 [00:00:10.886] [ 0.000000] Kernel command line: BOOT_IMAGE=vmlinuz-virt root=UUID=ae7bb8b0-5180-432a-80a5-e4a3065e4684 modules=sd-mod,usb-storage,ext4 console=ttyS0,115200,8n1 rootfstype=ext4 initrd=initramfs-virt [00:00:10.891] [ 0.000000] Unknown kernel command line parameters "BOOT_IMAGE=vmlinuz-virt modules=sd-mod,usb-storage,ext4", will be passed to user space. [00:00:10.894] [ 0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [00:00:10.896] [ 0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear) [00:00:10.898] [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 251704 [00:00:10.900] [ 0.000000] mem auto-init: stack:all(zero), heap alloc:on, heap free:off [00:00:10.902] [ 0.000000] Memory: 958344K/1023448K available (14336K kernel code, 1799K rwdata, 8232K rodata, 2696K init, 2032K bss, 64844K reserved, 0K cma-reserved) [00:00:10.906] [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [00:00:10.908] [ 0.000000] Dynamic Preempt: none [00:00:10.909] [ 0.000000] rcu: Preemptible hierarchical RCU implementation. [00:00:10.910] [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4. [00:00:10.912] [ 0.000000] Trampoline variant of Tasks RCU enabled. [00:00:10.914] [ 0.000000] Tracing variant of Tasks RCU enabled. [00:00:10.915] [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [00:00:10.917] [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 [00:00:10.919] [ 0.000000] NR_IRQS: 16640, nr_irqs: 456, preallocated irqs: 16 [00:00:10.920] [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. [00:00:10.922] [ 0.000000] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____) [00:00:10.925] [ 0.000000] Console: colour VGA+ 80x25 [00:00:10.926] [ 0.000000] printk: console [ttyS0] enabled [00:00:10.934] [ 0.000000] ACPI: Core revision 20230628 [00:00:11.019] [ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns [00:00:11.093] [ 0.030000] APIC: Switch to symmetric I/O mode setup [00:00:11.163] [ 0.090000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [00:00:11.294] [ 0.170000] tsc: Unable to calibrate against PIT [00:00:11.295] [ 0.170000] tsc: using HPET reference calibration [00:00:11.297] [ 0.180000] tsc: Detected 999.943 MHz processor [00:00:11.307] [ 0.005599] tsc: Marking TSC unstable due to TSCs unsynchronized [00:00:11.315] [ 0.013215] Calibrating delay loop (skipped), value calculated using timer frequency.. 1999.88 BogoMIPS (lpj=9999430) [00:00:11.334] [ 0.037433] process: using AMD E400 aware idle routine [00:00:11.338] [ 0.041450] Last level iTLB entries: 4KB 512, 2MB 255, 4MB 127 [00:00:11.340] [ 0.043005] Last level dTLB entries: 4KB 512, 2MB 255, 4MB 127, 1GB 0 [00:00:11.347] [ 0.049622] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [00:00:11.351] [ 0.054091] Spectre V2 : Mitigation: Retpolines [00:00:11.352] [ 0.055502] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch [00:00:11.355] [ 0.058443] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT [00:00:11.450] [ 0.096128] x86/fpu: x87 FPU will use FXSAVE [00:00:13.015] [ 1.680076] Freeing SMP alternatives memory: 32K [00:00:13.021] [ 1.693310] pid_max: default: 32768 minimum: 301 [00:00:13.178] [ 1.823971] LSM: initializing lsm=lockdown,capability,landlock,integrity [00:00:13.257] [ 1.909923] landlock: Up and running. [00:00:13.324] [ 1.976521] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) [00:00:13.328] [ 1.980762] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) [00:00:13.904] [ 2.539846] smpboot: CPU0: AMD QEMU Virtual CPU version 2.5+ (family: 0xf, model: 0x6b, stepping: 0x1) [00:00:14.045] [ 2.674991] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1. [00:00:14.051] [ 2.681742] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1. [00:00:14.067] [ 2.691740] Performance Events: PMU not available due to virtualization, using software events only. [00:00:14.078] [ 2.708510] signal: max sigframe size: 1440 [00:00:14.099] [ 2.729129] rcu: Hierarchical SRCU implementation. [00:00:14.101] [ 2.730486] rcu: Max phase no-delay instances is 1000. [00:00:14.214] [ 2.844208] NMI watchdog: Perf NMI watchdog permanently disabled [00:00:14.254] [ 2.884900] smp: Bringing up secondary CPUs ... [00:00:14.325] [ 2.955497] smpboot: x86: Booting SMP configuration: [00:00:15.112] [ 2.957284] .... node #0, CPUs: #1 #2 #3 [00:00:15.113] [ 3.731914] smp: Brought up 1 node, 4 CPUs [00:00:15.115] [ 3.735140] smpboot: Max logical packages: 1 [00:00:15.117] [ 3.737033] ---------------- [00:00:15.118] [ 3.737851] | NMI testsuite: [00:00:15.119] [ 3.740264] -------------------- [00:00:15.140] [ 3.741267] remote IPI: ok | [00:00:15.142] [ 3.762217] local IPI: ok | [00:00:15.143] [ 3.764202] -------------------- [00:00:15.144] [ 3.765439] Good, all 2 testcases passed! | [00:00:15.146] [ 3.767343] --------------------------------- [00:00:15.149] [ 3.769289] smpboot: Total of 4 processors activated (8261.68 BogoMIPS) [00:00:15.446] [ 4.065432] devtmpfs: initialized [00:00:15.520] [ 4.138623] x86/mm: Memory block size: 128MB [00:00:15.628] [ 4.246726] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [00:00:15.641] [ 4.260958] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [00:00:15.901] [ 4.521312] NET: Registered PF_NETLINK/PF_ROUTE protocol family [00:00:15.967] [ 4.586787] audit: initializing netlink subsys (disabled) [00:00:16.004] [ 4.618115] audit: type=2000 audit(1718806917.790:1): state=initialized audit_enabled=0 res=1 [00:00:16.066] [ 4.671899] thermal_sys: Registered thermal governor 'step_wise' [00:00:16.068] [ 4.682369] cpuidle: using governor ladder [00:00:16.072] [ 4.692326] cpuidle: using governor menu [00:00:16.106] [ 4.726867] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [00:00:16.186] [ 4.801226] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xb0000000-0xbfffffff] (base 0xb0000000) [00:00:16.196] [ 4.817264] PCI: MMCONFIG at [mem 0xb0000000-0xbfffffff] reserved as E820 entry [00:00:16.222] [ 4.843312] PCI: Using configuration type 1 for base access [00:00:16.258] [ 4.879298] mtrr: your CPUs had inconsistent fixed MTRR settings [00:00:16.261] [ 4.880208] mtrr: your CPUs had inconsistent variable MTRR settings [00:00:16.263] [ 4.882259] mtrr: your CPUs had inconsistent MTRRdefType settings [00:00:16.265] [ 4.884154] mtrr: probably your BIOS does not setup all CPUs. [00:00:16.267] [ 4.886419] mtrr: corrected configuration. [00:00:16.301] [ 4.922297] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. [00:00:16.447] [ 5.068010] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages [00:00:16.456] [ 5.070204] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page [00:00:16.784] [ 5.404974] ACPI: Added _OSI(Module Device) [00:00:16.789] [ 5.410087] ACPI: Added _OSI(Processor Device) [00:00:16.791] [ 5.412241] ACPI: Added _OSI(3.0 _SCP Extensions) [00:00:16.795] [ 5.416856] ACPI: Added _OSI(Processor Aggregator Device) [00:00:17.404] [ 6.024152] ACPI: 1 ACPI AML tables successfully acquired and loaded [00:00:17.661] [ 6.271789] ACPI: _OSC evaluation for CPUs failed, trying _PDC [00:00:17.700] [ 6.311256] ACPI: Interpreter enabled [00:00:17.717] [ 6.327954] ACPI: PM: (supports S0 S3 S5) [00:00:17.719] [ 6.330334] ACPI: Using IOAPIC for interrupt routing [00:00:17.740] [ 6.351144] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [00:00:17.743] [ 6.354034] PCI: Using E820 reservations for host bridge windows [00:00:17.772] [ 6.379846] ACPI: Enabled 2 GPEs in block 00 to 3F [00:00:18.393] [ 7.002465] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) [00:00:18.406] [ 7.015764] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3] [00:00:18.426] [ 7.036446] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug LTR] [00:00:18.441] [ 7.051701] acpi PNP0A08:00: _OSC: OS now controls [PME PCIeCapability] [00:00:18.527] [ 7.137677] PCI host bridge to bus 0000:00 [00:00:18.532] [ 7.142420] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] [00:00:18.534] [ 7.145445] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [00:00:18.536] [ 7.147726] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] [00:00:18.539] [ 7.149658] pci_bus 0000:00: root bus resource [mem 0x3e800000-0xafffffff window] [00:00:18.541] [ 7.152912] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] [00:00:18.544] [ 7.155009] pci_bus 0000:00: root bus resource [mem 0x100000000-0x8ffffffff window] [00:00:18.549] [ 7.160206] pci_bus 0000:00: root bus resource [bus 00-ff] [00:00:18.573] [ 7.184572] pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000 [00:00:18.640] [ 7.251565] pci 0000:00:01.0: [1234:1111] type 00 class 0x030000 [00:00:18.663] [ 7.271997] pci 0000:00:01.0: reg 0x10: [mem 0xfd000000-0xfdffffff pref] [00:00:18.726] [ 7.310365] pci 0000:00:01.0: reg 0x18: [mem 0xfea70000-0xfea70fff] [00:00:18.861] [ 7.390956] pci 0000:00:01.0: reg 0x30: [mem 0xfea60000-0xfea6ffff pref] [00:00:18.880] [ 7.408615] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] [00:00:18.906] [ 7.433371] pci 0000:00:02.0: [1af4:1005] type 00 class 0x00ff00 [00:00:18.956] [ 7.463723] pci 0000:00:02.0: reg 0x10: [io 0xd180-0xd19f] [00:00:19.006] [ 7.490036] pci 0000:00:02.0: reg 0x14: [mem 0xfea71000-0xfea71fff] [00:00:19.147] [ 7.580338] pci 0000:00:02.0: reg 0x20: [mem 0xfe200000-0xfe203fff 64bit pref] [00:00:19.232] [ 7.652812] pci 0000:00:03.0: [1b36:0001] type 01 class 0x060400 [00:00:19.293] [ 7.700154] pci 0000:00:03.0: reg 0x10: [mem 0xfea72000-0xfea720ff 64bit] [00:00:19.397] [ 7.796658] pci 0000:00:04.0: [1af4:1001] type 00 class 0x010000 [00:00:19.445] [ 7.830140] pci 0000:00:04.0: reg 0x10: [io 0xd000-0xd07f] [00:00:19.491] [ 7.851850] pci 0000:00:04.0: reg 0x14: [mem 0xfea73000-0xfea73fff] [00:00:19.656] [ 7.920156] pci 0000:00:04.0: reg 0x20: [mem 0xfe204000-0xfe207fff 64bit pref] [00:00:19.732] [ 7.983008] pci 0000:00:05.0: [1af4:1009] type 00 class 0x000200 [00:00:19.771] [ 8.001623] pci 0000:00:05.0: reg 0x10: [io 0xd080-0xd0bf] [00:00:19.806] [ 8.020172] pci 0000:00:05.0: reg 0x14: [mem 0xfea74000-0xfea74fff] [00:00:19.917] [ 8.090184] pci 0000:00:05.0: reg 0x20: [mem 0xfe208000-0xfe20bfff 64bit pref] [00:00:19.983] [ 8.143406] pci 0000:00:06.0: [1af4:1009] type 00 class 0x000200 [00:00:20.021] [ 8.160208] pci 0000:00:06.0: reg 0x10: [io 0xd1a0-0xd1bf] [00:00:20.058] [ 8.180205] pci 0000:00:06.0: reg 0x14: [mem 0xfea75000-0xfea75fff] [00:00:20.210] [ 8.250933] pci 0000:00:06.0: reg 0x20: [mem 0xfe20c000-0xfe20ffff 64bit pref] [00:00:20.290] [ 8.331140] pci 0000:00:07.0: [1af4:1009] type 00 class 0x000200 [00:00:20.345] [ 8.361288] pci 0000:00:07.0: reg 0x10: [io 0xd1c0-0xd1df] [00:00:20.386] [ 8.380482] pci 0000:00:07.0: reg 0x14: [mem 0xfea76000-0xfea76fff] [00:00:20.552] [ 8.450179] pci 0000:00:07.0: reg 0x20: [mem 0xfe210000-0xfe213fff 64bit pref] [00:00:20.642] [ 8.512301] pci 0000:00:08.0: [1af4:1003] type 00 class 0x078000 [00:00:20.696] [ 8.529846] pci 0000:00:08.0: reg 0x10: [io 0xd0c0-0xd0ff] [00:00:20.746] [ 8.569846] pci 0000:00:08.0: reg 0x14: [mem 0xfea77000-0xfea77fff] [00:00:20.878] [ 8.630219] pci 0000:00:08.0: reg 0x20: [mem 0xfe214000-0xfe217fff 64bit pref] [00:00:20.966] [ 8.704048] pci 0000:00:09.0: [8086:100e] type 00 class 0x020000 [00:00:21.007] [ 8.732835] pci 0000:00:09.0: reg 0x10: [mem 0xfea40000-0xfea5ffff] [00:00:21.047] [ 8.760400] pci 0000:00:09.0: reg 0x14: [io 0xd100-0xd13f] [00:00:21.264] [ 8.930647] pci 0000:00:09.0: reg 0x30: [mem 0xfea00000-0xfea3ffff pref] [00:00:21.298] [ 8.968960] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300 [00:00:21.387] [ 9.035838] pci 0000:00:1d.0: reg 0x20: [io 0xd1e0-0xd1ff] [00:00:21.456] [ 9.096218] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300 [00:00:21.552] [ 9.172439] pci 0000:00:1d.1: reg 0x20: [io 0xd200-0xd21f] [00:00:21.622] [ 9.232203] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300 [00:00:21.716] [ 9.310247] pci 0000:00:1d.2: reg 0x20: [io 0xd220-0xd23f] [00:00:21.794] [ 9.384777] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320 [00:00:21.812] [ 9.400168] pci 0000:00:1d.7: reg 0x10: [mem 0xfea78000-0xfea78fff] [00