NoteAfterNote-10
Testing: Termux, vmtest, and QEMU
Published: June 19, 2024
Link: https://gist.github.com/NoteAfterNote/7614b0137ac6959e3bba35df66eaa75a
-
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
-
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
-
"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
-
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 <[email protected]>
[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:00:21.949] [ 9.509242] pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100
[00:00:21.957] [ 9.518656] pci 0000:00:1f.0: quirk: [io 0x0600-0x067f] claimed by ICH6 ACPI/GPIO/TCO
[00:00:21.978] [ 9.539169] pci 0000:00:1f.2: [8086:2922] type 00 class 0x010601
[00:00:22.131] [ 9.640297] pci 0000:00:1f.2: reg 0x20: [io 0xd240-0xd25f]
[00:00:22.171] [ 9.660564] pci 0000:00:1f.2: reg 0x24: [mem 0xfea79000-0xfea79fff]
[00:00:22.253] [ 9.733964] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
[00:00:22.347] [ 9.810520] pci 0000:00:1f.3: reg 0x20: [io 0x0700-0x073f]
[00:00:22.444] [ 9.902971] pci_bus 0000:01: extended config space not accessible
[00:00:22.495] [ 9.954998] acpiphp: Slot [0] registered
[00:00:22.499] [ 9.957667] acpiphp: Slot [1] registered
[00:00:22.501] [ 9.963137] acpiphp: Slot [2] registered
[00:00:22.504] [ 9.965620] acpiphp: Slot [3] registered
[00:00:22.507] [ 9.968363] acpiphp: Slot [4] registered
[00:00:22.510] [ 9.971574] acpiphp: Slot [5] registered
[00:00:22.511] [ 9.973354] acpiphp: Slot [6] registered
[00:00:22.514] [ 9.975482] acpiphp: Slot [7] registered
[00:00:22.516] [ 9.978205] acpiphp: Slot [8] registered
[00:00:22.520] [ 9.981267] acpiphp: Slot [9] registered
[00:00:22.522] [ 9.983844] acpiphp: Slot [10] registered
[00:00:22.524] [ 9.985615] acpiphp: Slot [11] registered
[00:00:22.527] [ 9.988386] acpiphp: Slot [12] registered
[00:00:22.530] [ 9.991801] acpiphp: Slot [13] registered
[00:00:22.532] [ 9.994073] acpiphp: Slot [14] registered
[00:00:22.534] [ 9.995762] acpiphp: Slot [15] registered
[00:00:22.536] [ 9.998304] acpiphp: Slot [16] registered
[00:00:22.540] [ 10.001816] acpiphp: Slot [17] registered
[00:00:22.542] [ 10.004166] acpiphp: Slot [18] registered
[00:00:22.544] [ 10.005887] acpiphp: Slot [19] registered
[00:00:22.550] [ 10.011744] acpiphp: Slot [20] registered
[00:00:22.552] [ 10.014038] acpiphp: Slot [21] registered
[00:00:22.554] [ 10.015840] acpiphp: Slot [22] registered
[00:00:22.557] [ 10.018912] acpiphp: Slot [23] registered
[00:00:22.560] [ 10.022294] acpiphp: Slot [24] registered
[00:00:22.563] [ 10.024554] acpiphp: Slot [25] registered
[00:00:22.565] [ 10.026899] acpiphp: Slot [26] registered
[00:00:22.568] [ 10.029448] acpiphp: Slot [27] registered
[00:00:22.571] [ 10.031007] acpiphp: Slot [28] registered
[00:00:22.573] [ 10.033100] acpiphp: Slot [29] registered
[00:00:22.577] [ 10.037111] acpiphp: Slot [30] registered
[00:00:22.582] [ 10.041630] acpiphp: Slot [31] registered
[00:00:22.586] [ 10.045539] pci 0000:00:03.0: PCI bridge to [bus 01]
[00:00:22.590] [ 10.052198] pci 0000:00:03.0: bridge window [io 0xc000-0xcfff]
[00:00:22.593] [ 10.054572] pci 0000:00:03.0: bridge window [mem 0xfe800000-0xfe9fffff]
[00:00:22.596] [ 10.058089] pci 0000:00:03.0: bridge window [mem 0xfe000000-0xfe1fffff 64bit pref]
[00:00:22.676] [ 10.136843] ACPI: PCI: Interrupt link LNKA configured for IRQ 10
[00:00:22.690] [ 10.151560] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[00:00:22.697] [ 10.158550] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[00:00:22.705] [ 10.164256] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[00:00:22.713] [ 10.174393] ACPI: PCI: Interrupt link LNKE configured for IRQ 10
[00:00:22.723] [ 10.184708] ACPI: PCI: Interrupt link LNKF configured for IRQ 10
[00:00:22.732] [ 10.193363] ACPI: PCI: Interrupt link LNKG configured for IRQ 11
[00:00:22.740] [ 10.201927] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[00:00:22.743] [ 10.205081] ACPI: PCI: Interrupt link GSIA configured for IRQ 16
[00:00:22.747] [ 10.208656] ACPI: PCI: Interrupt link GSIB configured for IRQ 17
[00:00:22.750] [ 10.210851] ACPI: PCI: Interrupt link GSIC configured for IRQ 18
[00:00:22.753] [ 10.213118] ACPI: PCI: Interrupt link GSID configured for IRQ 19
[00:00:22.756] [ 10.215998] ACPI: PCI: Interrupt link GSIE configured for IRQ 20
[00:00:22.758] [ 10.220203] ACPI: PCI: Interrupt link GSIF configured for IRQ 21
[00:00:22.762] [ 10.223642] ACPI: PCI: Interrupt link GSIG configured for IRQ 22
[00:00:22.764] [ 10.225970] ACPI: PCI: Interrupt link GSIH configured for IRQ 23
[00:00:22.841] [ 10.302749] iommu: Default domain type: Translated
[00:00:22.843] [ 10.304973] iommu: DMA domain TLB invalidation policy: lazy mode
[00:00:22.887] [ 10.348606] SCSI subsystem initialized
[00:00:22.917] [ 10.378158] pps_core: LinuxPPS API ver. 1 registered
[00:00:22.919] [ 10.379539] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[00:00:22.923] [ 10.384459] PTP clock support registered
[00:00:23.101] [ 10.562494] PCI: Using ACPI for IRQ routing
[00:00:23.211] [ 10.671285] hpet: 3 channels of 0 reserved for per-cpu timers
[00:00:23.238] [ 10.697048] clocksource: Switched to clocksource hpet
[00:00:24.163] [ 11.554316] VFS: Disk quotas dquot_6.6.0
[00:00:24.179] [ 11.636006] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[00:00:24.295] [ 11.752637] pnp: PnP ACPI init
[00:00:24.503] [ 11.954157] system 00:05: [mem 0xb0000000-0xbfffffff window] has been reserved
[00:00:24.652] [ 12.109761] pnp: PnP ACPI: found 6 devices
[00:00:25.307] [ 12.764344] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[00:00:25.345] [ 12.802644] NET: Registered PF_INET protocol family
[00:00:25.375] [ 12.830347] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
[00:00:25.518] [ 12.975884] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear)
[00:00:25.523] [ 12.981568] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[00:00:25.527] [ 12.984834] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
[00:00:25.535] [ 12.992950] TCP bind hash table entries: 8192 (order: 6, 262144 bytes, linear)
[00:00:25.540] [ 12.998684] TCP: Hash tables configured (established 8192 bind 8192)
[00:00:25.586] [ 13.043983] MPTCP token hash table entries: 1024 (order: 2, 24576 bytes, linear)
[00:00:25.597] [ 13.055089] UDP hash table entries: 512 (order: 2, 16384 bytes, linear)
[00:00:25.602] [ 13.060070] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear)
[00:00:25.636] [ 13.093728] NET: Registered PF_UNIX/PF_LOCAL protocol family
[00:00:25.644] [ 13.102270] NET: Registered PF_XDP protocol family
[00:00:25.666] [ 13.123414] pci 0000:00:03.0: PCI bridge to [bus 01]
[00:00:25.670] [ 13.128000] pci 0000:00:03.0: bridge window [io 0xc000-0xcfff]
[00:00:25.690] [ 13.148066] pci 0000:00:03.0: bridge window [mem 0xfe800000-0xfe9fffff]
[00:00:25.708] [ 13.164860] pci 0000:00:03.0: bridge window [mem 0xfe000000-0xfe1fffff 64bit pref]
[00:00:25.750] [ 13.207205] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[00:00:25.752] [ 13.209872] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[00:00:25.757] [ 13.214992] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[00:00:25.759] [ 13.217561] pci_bus 0000:00: resource 7 [mem 0x3e800000-0xafffffff window]
[00:00:25.763] [ 13.221414] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xfebfffff window]
[00:00:25.765] [ 13.223694] pci_bus 0000:00: resource 9 [mem 0x100000000-0x8ffffffff window]
[00:00:25.768] [ 13.226259] pci_bus 0000:01: resource 0 [io 0xc000-0xcfff]
[00:00:25.770] [ 13.228252] pci_bus 0000:01: resource 1 [mem 0xfe800000-0xfe9fffff]
[00:00:25.773] [ 13.231470] pci_bus 0000:01: resource 2 [mem 0xfe000000-0xfe1fffff 64bit pref]
[00:00:25.898] [ 13.356330] ACPI: \_SB_.GSIA: Enabled at IRQ 16
[00:00:26.060] [ 13.508178] pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x7d0 took 237360 usecs
[00:00:26.091] [ 13.548780] ACPI: \_SB_.GSIB: Enabled at IRQ 17
[00:00:26.138] [ 13.595945] pci 0000:00:1d.1: quirk_usb_early_handoff+0x0/0x7d0 took 71989 usecs
[00:00:26.177] [ 13.634857] ACPI: \_SB_.GSIC: Enabled at IRQ 18
[00:00:26.211] [ 13.668712] pci 0000:00:1d.2: quirk_usb_early_handoff+0x0/0x7d0 took 68539 usecs
[00:00:26.246] [ 13.703869] ACPI: \_SB_.GSID: Enabled at IRQ 19
[00:00:26.341] [ 13.798650] pci 0000:00:1d.7: quirk_usb_early_handoff+0x0/0x7d0 took 121638 usecs
[00:00:26.346] [ 13.804197] PCI: CLS 0 bytes, default 64
[00:00:26.590] [ 14.048414] Initialise system trusted keyrings
[00:00:26.604] [ 14.062128] Unpacking initramfs...
[00:00:26.697] [ 14.155499] workingset: timestamp_bits=46 max_order=18 bucket_order=0
[00:00:26.701] [ 14.159058] zbud: loaded
[00:00:26.820] [ 14.277972] Key type asymmetric registered
[00:00:26.834] [ 14.292219] Asymmetric key parser 'x509' registered
[00:00:26.841] [ 14.299536] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[00:00:26.904] [ 14.361889] io scheduler mq-deadline registered
[00:00:26.906] [ 14.363952] io scheduler kyber registered
[00:00:26.912] [ 14.369840] io scheduler bfq registered
[00:00:27.191] [ 14.649224] ERST DBG: ERST support is disabled.
[00:00:27.268] [ 14.725703] ACPI: \_SB_.GSIG: Enabled at IRQ 22
[00:00:27.420] [ 14.877719] ACPI: \_SB_.GSIE: Enabled at IRQ 20
[00:00:27.498] [ 14.955669] ACPI: \_SB_.GSIF: Enabled at IRQ 21
[00:00:27.661] [ 15.119325] ACPI: \_SB_.GSIH: Enabled at IRQ 23
[00:00:27.827] [ 15.284959] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[00:00:27.956] [ 15.414022] 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[00:00:28.640] [ 16.097627] VMware PVSCSI driver - version 1.0.7.0-k
[00:00:28.859] [ 16.316660] ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 6 ports 1.5 Gbps 0x3f impl SATA mode
[00:00:28.874] [ 16.331450] ahci 0000:00:1f.2: flags: 64bit ncq only
[00:00:29.190] [ 16.648225] scsi host0: ahci
[00:00:29.337] [ 16.795263] scsi host1: ahci
[00:00:29.389] [ 16.847435] scsi host2: ahci
[00:00:29.460] [ 16.917922] scsi host3: ahci
[00:00:29.526] [ 16.983772] scsi host4: ahci
[00:00:29.584] [ 17.041647] scsi host5: ahci
[00:00:29.604] [ 17.049488] ata1: SATA max UDMA/133 abar m4096@0xfea79000 port 0xfea79100 irq 26
[00:00:29.606] [ 17.064402] ata2: SATA max UDMA/133 abar m4096@0xfea79000 port 0xfea79180 irq 26
[00:00:29.608] [ 17.066542] ata3: SATA max UDMA/133 abar m4096@0xfea79000 port 0xfea79200 irq 26
[00:00:29.610] [ 17.068483] ata4: SATA max UDMA/133 abar m4096@0xfea79000 port 0xfea79280 irq 26
[00:00:29.623] [ 17.081543] ata5: SATA max UDMA/133 abar m4096@0xfea79000 port 0xfea79300 irq 26
[00:00:29.625] [ 17.083485] ata6: SATA max UDMA/133 abar m4096@0xfea79000 port 0xfea79380 irq 26
[00:00:29.787] [ 17.245333] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[00:00:29.960] [ 17.418121] serio: i8042 KBD port at 0x60,0x64 irq 1
[00:00:29.969] [ 17.426793] serio: i8042 AUX port at 0x60,0x64 irq 12
[00:00:30.009] [ 17.467093] rtc_cmos 00:04: RTC can wake from S4
[00:00:30.071] [ 17.529148] ata1: SATA link down (SStatus 0 SControl 300)
[00:00:30.143] [ 17.580291] ata2: SATA link down (SStatus 0 SControl 300)
[00:00:30.146] [ 17.604441] ata4: SATA link down (SStatus 0 SControl 300)
[00:00:30.203] [ 17.661476] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[00:00:30.248] [ 17.705945] ata6: SATA link down (SStatus 0 SControl 300)
[00:00:30.304] [ 17.762082] ata5: SATA link down (SStatus 0 SControl 300)
[00:00:30.324] [ 17.782458] rtc_cmos 00:04: registered as rtc0
[00:00:30.339] [ 17.797455] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[00:00:30.358] [ 17.813273] rtc_cmos 00:04: setting system clock to 2024-06-19T14:22:13 UTC (1718806933)
[00:00:30.396] [ 17.853832] ata3.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100
[00:00:30.398] [ 17.856303] ata3.00: applying bridge limits
[00:00:30.455] [ 17.913487] rtc_cmos 00:04: alarms up to one day, y3k, 242 bytes nvram, hpet irqs
[00:00:30.460] [ 17.918408] amd_pstate: the _CPC object is not present in SBIOS or ACPI disabled
[00:00:30.539] [ 17.997217] ata3.00: configured for UDMA/100
[00:00:30.553] [ 18.011435] gre: GRE over IPv4 demultiplexor driver
[00:00:30.938] [ 18.396520] scsi 2:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5
[00:00:32.020] [ 19.477834] NET: Registered PF_INET6 protocol family
[00:00:32.321] [ 19.778884] Segment Routing with IPv6
[00:00:32.338] [ 19.795727] In-situ OAM (IOAM) with IPv6
[00:00:32.379] [ 19.836854] Key type dns_resolver registered
[00:00:32.420] [ 19.877558] IPI shorthand broadcast: enabled
[00:00:33.301] [ 20.758908] registered taskstats version 1
[00:00:33.380] [ 20.838457] Loading compiled-in X.509 certificates
[00:00:34.119] [ 21.576511] Freeing initrd memory: 8096K
[00:00:37.640] [ 25.098324] Loaded X.509 cert 'alpinelinux.org: Alpine Linux kernel key: d76a695f66ad9cd28f5c22a8508f36e91f521f7a'
[00:00:37.786] [ 25.244165] Key type .fscrypt registered
[00:00:37.787] [ 25.245525] Key type fscrypt-provisioning registered
[00:00:37.876] [ 25.333998] Unstable clock detected, switching default tracing clock to "global"
[00:00:37.878] [ 25.333998] If you want to keep using the local clock, then add:
[00:00:37.879] [ 25.333998] "trace_clock=local"
[00:00:37.880] [ 25.333998] on the kernel command line
[00:00:38.374] [ 25.831166] Freeing unused kernel image (initmem) memory: 2696K
[00:00:38.376] [ 25.834068] Write protecting the kernel read-only data: 24576k
[00:00:38.428] [ 25.886175] Freeing unused kernel image (rodata/data gap) memory: 2008K
[00:00:38.437] [ 25.895007] rodata_test: all tests were successful
[00:00:38.441] [ 25.899641] Run /init as init process
[00:00:43.435] [ 30.854699] Alpine Init 3.10.0-r0
[00:00:43.477] Alpine Init 3.10.0-r0
[00:00:43.568] [ 31.026082] Loading boot drivers...
[00:00:43.583] * Loading boot drivers: [ 34.986680] ACPI: bus type USB registered
[00:00:47.560] [ 35.017145] usbcore: registered new interface driver usbfs
[00:00:47.581] [ 35.038870] usbcore: registered new interface driver hub
[00:00:47.615] [ 35.072625] usbcore: registered new device driver usb
[00:00:47.858] [ 35.315604] usbcore: registered new interface driver usb-storage
[00:00:52.562] [ 40.019603] loop: module loaded
[00:00:54.908] [ 42.365656] ACPI: bus type drm_connector registered
[00:00:56.298] [ 43.756219] Loading boot drivers: ok.
[00:00:56.303] ok.
[00:00:58.743] [ 46.169353] Mounting root...
[00:00:58.777] * Mounting root: [ 59.330337] ehci-pci 0000:00:1d.7: EHCI Host Controller
[00:01:11.926] [ 59.383371] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
[00:01:12.002] [ 59.460112] ehci-pci 0000:00:1d.7: irq 19, io mem 0xfea78000
[00:01:12.038] [ 59.495614] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[00:01:12.126] [ 59.583892] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[00:01:12.128] [ 59.585970] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:01:12.129] [ 59.587529] usb usb1: Product: EHCI Host Controller
[00:01:12.130] [ 59.588772] usb usb1: Manufacturer: Linux 6.6.33-0-virt ehci_hcd
[00:01:12.132] [ 59.590162] usb usb1: SerialNumber: 0000:00:1d.7
[00:01:12.271] [ 59.720298] hub 1-0:1.0: USB hub found
[00:01:12.287] [ 59.745122] hub 1-0:1.0: 6 ports detected
[00:01:12.710] [ 60.167753] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[00:01:12.716] [ 60.174255] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[00:01:12.727] [ 60.185130] uhci_hcd 0000:00:1d.0: detected 2 ports
[00:01:12.749] [ 60.206875] uhci_hcd 0000:00:1d.0: irq 16, io port 0x0000d1e0
[00:01:12.777] [ 60.234678] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[00:01:12.779] [ 60.237504] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:01:12.784] [ 60.240042] usb usb2: Product: UHCI Host Controller
[00:01:12.786] [ 60.244524] usb usb2: Manufacturer: Linux 6.6.33-0-virt uhci_hcd
[00:01:12.789] [ 60.247104] usb usb2: SerialNumber: 0000:00:1d.0
[00:01:12.806] [ 60.264120] hub 2-0:1.0: USB hub found
[00:01:12.813] [ 60.271280] hub 2-0:1.0: 2 ports detected
[00:01:12.974] [ 60.432331] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[00:01:12.976] [ 60.434248] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[00:01:12.978] [ 60.436239] uhci_hcd 0000:00:1d.1: detected 2 ports
[00:01:12.991] [ 60.449331] uhci_hcd 0000:00:1d.1: irq 17, io port 0x0000d200
[00:01:13.031] [ 60.488441] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[00:01:13.034] [ 60.492261] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:01:13.037] [ 60.494850] usb usb3: Product: UHCI Host Controller
[00:01:13.038] [ 60.496351] usb usb3: Manufacturer: Linux 6.6.33-0-virt uhci_hcd
[00:01:13.040] [ 60.498230] usb usb3: SerialNumber: 0000:00:1d.1
[00:01:13.066] [ 60.524482] hub 3-0:1.0: USB hub found
[00:01:13.071] [ 60.528976] hub 3-0:1.0: 2 ports detected
[00:01:13.173] [ 60.631294] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[00:01:13.176] [ 60.634428] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[00:01:13.178] [ 60.636430] uhci_hcd 0000:00:1d.2: detected 2 ports
[00:01:13.187] [ 60.645037] uhci_hcd 0000:00:1d.2: irq 18, io port 0x0000d220
[00:01:13.215] [ 60.672800] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[00:01:13.217] [ 60.675243] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:01:13.220] [ 60.678226] usb usb4: Product: UHCI Host Controller
[00:01:13.227] [ 60.680198] usb usb4: Manufacturer: Linux 6.6.33-0-virt uhci_hcd
[00:01:13.228] [ 60.686110] usb usb4: SerialNumber: 0000:00:1d.2
[00:01:13.258] [ 60.710004] hub 4-0:1.0: USB hub found
[00:01:13.264] [ 60.721807] hub 4-0:1.0: 2 ports detected
[00:01:16.709] [ 64.166560] sr 2:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
[00:01:16.736] [ 64.192509] cdrom: Uniform CD-ROM driver Revision: 3.20
[00:01:21.267] [ 68.686554] virtio_blk virtio1: 4/0/0 default/read/poll queues
[00:01:21.656] [ 69.112619] virtio_blk virtio1: [vda] 6291456 512-byte logical blocks (3.22 GB/3.00 GiB)
[00:01:22.010] [ 69.466982] vda: vda1 vda2 vda3
[00:01:43.869] [ 91.253967] hrtimer: interrupt took 89936620 ns
[00:02:30.708] [ 138.065370] block sr0: the capability attribute has been deprecated.
[00:03:16.146] [ 183.577736] EXT4-fs (vda3): orphan cleanup on readonly fs
[00:03:16.168] [ 183.623210] EXT4-fs (vda3): mounted filesystem ae7bb8b0-5180-432a-80a5-e4a3065e4684 ro with ordered data mode. Quota mode: none.
[00:03:16.257] [ 183.714839] Mounting root: ok.
[00:03:16.285] ok.
[00:03:23.035]
[00:03:23.170] OpenRC 0.54 is starting up Linux 6.6.33-0-virt (x86_64)
[00:03:23.173]
[00:03:25.362] * /proc is already mounted
[00:03:26.833] * Mounting /run ... [ ok ]
[00:03:30.643] * /run/openrc: creating directory
[00:03:31.063] * /run/lock: creating directory
[00:03:31.093] * /run/lock: correcting owner
[00:04:11.595] * Caching service dependencies ... [ ok ]
[00:04:19.454] * Remounting devtmpfs on /dev ... [ ok ]
[00:04:23.014] * Mounting /dev/mqueue ... [ ok ]
[00:04:43.784] * Mounting security filesystem ... [ ok ]
[00:04:45.573] * Mounting debug filesystem ... [ ok ]
[00:04:47.143] * Mounting persistent storage (pstore) filesystem ... [ ok ]
[00:04:54.785] * Starting busybox mdev ... [ ok ]
[00:04:55.626] * Scanning hardware for mdev ... [ ok ]
[00:06:11.314] * Loading hardware drivers ... [ ok ]
[00:08:13.927] * Loading modules ... [ ok ]
[00:08:28.403] * Setting system clock using the hardware clock [UTC] ... [ ok ]
[00:08:41.354] * Checking local filesystems .../dev/vda3: clean, 40406/128256 files, 268055/512768 blocks
[00:08:44.290] /dev/vda1: clean, 29/76912 files, 54025/307200 blocks
[00:08:44.676] [ ok ]
[00:08:52.101] * Remounting root filesystem read/write ... [ ok ]
[00:08:54.163] * Remounting filesystems ... [ ok ]
[00:09:07.015] * Activating swap devices ... [ ok ]
[00:09:15.815] * Mounting local filesystems ... [ ok ]
[00:09:24.431] * Configuring kernel parameters ... [ ok ]
[00:09:39.165] * Creating user login records ... [ ok ]
[00:09:52.195] * Setting hostname ... [ ok ]
[00:09:59.694] * Starting networking ... * lo ... [ ok ]
[00:10:16.111] * eth0 ...udhcpc: started, v1.36.1
[00:10:28.735] udhcpc: broadcasting discover
[00:10:28.961] udhcpc: broadcasting select for 10.0.2.15, server 10.0.2.2
[00:10:29.083] udhcpc: lease of 10.0.2.15 obtained from 10.0.2.2, lease time 86400
[00:10:39.555] [ ok ]
[00:10:46.997] * Seeding random number generator ... * Seeding 256 bits and crediting
[00:10:48.103] * Saving 256 bits of creditable seed for next boot
[00:10:48.600] [ ok ]
[00:10:55.835] * Starting busybox syslog ... [ ok ]
[00:11:07.628] * Starting busybox acpid ... [ ok ]
[00:11:16.013] * Starting busybox crond ... [ ok ]
[00:11:24.836] * Starting rngd ... [ ok ]
[00:12:01.905] * Starting sshd ... [ ok ]
[00:12:13.425] * Starting vsftpd ... [ ok ]
[00:12:28.511]
[00:12:28.900] Welcome to Alpine Linux 3.20
Kernel 6.6.33-0-virt on an x86_64 (/dev/ttyS0)
[00:12:29.135]
localhost login:
~ $
~ $ 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 -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 -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 -drive if=ide,id=vm,format=raw,file=$VM -nodefaults -accel tcg,tb-size=256
[ 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:07.982] [ 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:07.986] [ 0.000000] BIOS-provided physical RAM map:
[00:00:07.987] [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[00:00:07.989] [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[00:00:07.991] [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[00:00:07.992] [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003e7ddfff] usable
[00:00:07.994] [ 0.000000] BIOS-e820: [mem 0x000000003e7de000-0x000000003e7fffff] reserved
[00:00:07.996] [ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved
[00:00:07.998] [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[00:00:07.999] [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[00:00:08.001] [ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved
[00:00:08.002] [ 0.000000] NX (Execute Disable) protection: active
[00:00:08.004] [ 0.000000] APIC: Static calls initialized
[00:00:08.005] [ 0.000000] SMBIOS 3.0.0 present.
[00:00:08.006] [ 0.000000] DMI: QEMU Standard PC (Q35 + ICH9, 2009), BIOS rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org 04/01/2014
[00:00:08.008] [ 0.000000] tsc: Fast TSC calibration failed
[00:00:08.010] [ 0.000000] last_pfn = 0x3e7de max_arch_pfn = 0x400000000
[00:00:08.011] [ 0.000000] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs
[00:00:08.013] [ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[00:00:08.015] [ 0.000000] RAMDISK: [mem 0x3dff6000-0x3e7ddfff]
[00:00:08.016] [ 0.000000] ACPI: Early table checksum verification disabled
[00:00:08.018] [ 0.000000] ACPI: RSDP 0x00000000000F5250 000014 (v00 BOCHS )
[00:00:08.019] [ 0.000000] ACPI: RSDT 0x000000003E7E313B 000038 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:08.021] [ 0.000000] ACPI: FACP 0x000000003E7E2F33 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:08.023] [ 0.000000] ACPI: DSDT 0x000000003E7E0040 002EF3 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:08.026] [ 0.000000] ACPI: FACS 0x000000003E7E0000 000040
[00:00:08.027] [ 0.000000] ACPI: APIC 0x000000003E7E3027 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:08.029] [ 0.000000] ACPI: HPET 0x000000003E7E309F 000038 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:08.031] [ 0.000000] ACPI: MCFG 0x000000003E7E30D7 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:08.033] [ 0.000000] ACPI: WAET 0x000000003E7E3113 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:08.035] [ 0.000000] ACPI: Reserving FACP table memory at [mem 0x3e7e2f33-0x3e7e3026]
[00:00:08.036] [ 0.000000] ACPI: Reserving DSDT table memory at [mem 0x3e7e0040-0x3e7e2f32]
[00:00:08.038] [ 0.000000] ACPI: Reserving FACS table memory at [mem 0x3e7e0000-0x3e7e003f]
[00:00:08.039] [ 0.000000] ACPI: Reserving APIC table memory at [mem 0x3e7e3027-0x3e7e309e]
[00:00:08.041] [ 0.000000] ACPI: Reserving HPET table memory at [mem 0x3e7e309f-0x3e7e30d6]
[00:00:08.042] [ 0.000000] ACPI: Reserving MCFG table memory at [mem 0x3e7e30d7-0x3e7e3112]
[00:00:08.044] [ 0.000000] ACPI: Reserving WAET table memory at [mem 0x3e7e3113-0x3e7e313a]
[00:00:08.046] [ 0.000000] Zone ranges:
[00:00:08.046] [ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[00:00:08.048] [ 0.000000] DMA32 [mem 0x0000000001000000-0x000000003e7ddfff]
[00:00:08.049] [ 0.000000] Normal empty
[00:00:08.050] [ 0.000000] Movable zone start for each node
[00:00:08.051] [ 0.000000] Early memory node ranges
[00:00:08.052] [ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]
[00:00:08.054] [ 0.000000] node 0: [mem 0x0000000000100000-0x000000003e7ddfff]
[00:00:08.055] [ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000003e7ddfff]
[00:00:08.057] [ 0.000000] On node 0, zone DMA: 1 pages in unavailable ranges
[00:00:08.058] [ 0.000000] On node 0, zone DMA: 97 pages in unavailable ranges
[00:00:08.060] [ 0.000000] On node 0, zone DMA32: 6178 pages in unavailable ranges
[00:00:08.061] [ 0.000000] ACPI: PM-Timer IO Port: 0x608
[00:00:08.062] [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[00:00:08.064] [ 0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[00:00:08.065] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[00:00:08.067] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[00:00:08.069] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[00:00:08.070] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[00:00:08.072] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[00:00:08.074] [ 0.000000] ACPI: Using ACPI (MADT) for SMP configuration information
[00:00:08.075] [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[00:00:08.076] [ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[00:00:08.078] [ 0.000000] [mem 0x3e800000-0xafffffff] available for PCI devices
[00:00:08.079] [ 0.000000] Booting paravirtualized kernel on bare hardware
[00:00:08.081] [ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[00:00:08.084] [ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1
[00:00:08.085] [ 0.000000] percpu: Embedded 57 pages/cpu s195560 r8192 d29720 u2097152
[00:00:08.087] [ 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:08.092] [ 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:08.095] [ 0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[00:00:08.097] [ 0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[00:00:08.099] [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 251710
[00:00:08.100] [ 0.000000] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[00:00:08.102] [ 0.000000] Memory: 959076K/1023472K available (14336K kernel code, 1799K rwdata, 8232K rodata, 2696K init, 2032K bss, 64136K reserved, 0K cma-reserved)
[00:00:08.105] [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[00:00:08.107] [ 0.000000] Dynamic Preempt: none
[00:00:08.108] [ 0.000000] rcu: Preemptible hierarchical RCU implementation.
[00:00:08.110] [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
[00:00:08.111] [ 0.000000] Trampoline variant of Tasks RCU enabled.
[00:00:08.113] [ 0.000000] Tracing variant of Tasks RCU enabled.
[00:00:08.114] [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[00:00:08.116] [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[00:00:08.117] [ 0.000000] NR_IRQS: 16640, nr_irqs: 256, preallocated irqs: 16
[00:00:08.119] [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[00:00:08.120] [ 0.000000] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[00:00:08.123] [ 0.000000] Console: colour *CGA 80x25
[00:00:08.124] [ 0.000000] printk: console [ttyS0] enabled
[00:00:08.132] [ 0.000000] ACPI: Core revision 20230628
[00:00:08.215] [ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns
[00:00:08.292] [ 0.050000] APIC: Switch to symmetric I/O mode setup
[00:00:08.353] [ 0.100000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[00:00:08.488] [ 0.190000] tsc: Unable to calibrate against PIT
[00:00:08.490] [ 0.190000] tsc: using HPET reference calibration
[00:00:08.492] [ 0.200000] tsc: Detected 999.942 MHz processor
[00:00:08.500] [ 0.005225] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1cd3c08a02d, max_idle_ns: 881590499990 ns
[00:00:08.513] [ 0.015316] Calibrating delay loop (skipped), value calculated using timer frequency.. 1999.88 BogoMIPS (lpj=9999420)
[00:00:08.530] [ 0.041061] process: using AMD E400 aware idle routine
[00:00:08.533] [ 0.044569] Last level iTLB entries: 4KB 512, 2MB 255, 4MB 127
[00:00:08.535] [ 0.046315] Last level dTLB entries: 4KB 512, 2MB 255, 4MB 127, 1GB 0
[00:00:08.541] [ 0.051990] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[00:00:08.547] [ 0.055248] Spectre V2 : Mitigation: Retpolines
[00:00:08.548] [ 0.056549] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[00:00:08.550] [ 0.058965] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[00:00:08.645] [ 0.098310] x86/fpu: x87 FPU will use FXSAVE
[00:00:09.057] [ 0.530084] clocksource: timekeeping watchdog on CPU0: hpet wd-wd read-back delay of 78640ns
[00:00:09.059] [ 0.538316] clocksource: wd-tsc-early-wd read-back delay of 503960ns, clock-skew test skipped!
[00:00:11.849] [ 3.325045] Freeing SMP alternatives memory: 32K
[00:00:11.854] [ 3.334688] pid_max: default: 32768 minimum: 301
[00:00:12.005] [ 3.438936] LSM: initializing lsm=lockdown,capability,landlock,integrity
[00:00:12.094] [ 3.535425] landlock: Up and running.
[00:00:12.146] [ 3.586858] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
[00:00:12.148] [ 3.589694] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
[00:00:12.686] [ 4.112787] smpboot: CPU0: AMD QEMU Virtual CPU version 2.5+ (family: 0xf, model: 0x6b, stepping: 0x1)
[00:00:12.821] [ 4.243405] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
[00:00:12.827] [ 4.249255] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
[00:00:12.844] [ 4.260088] Performance Events: PMU not available due to virtualization, using software events only.
[00:00:12.855] [ 4.277146] signal: max sigframe size: 1440
[00:00:12.875] [ 4.296816] rcu: Hierarchical SRCU implementation.
[00:00:12.876] [ 4.298540] rcu: Max phase no-delay instances is 1000.
[00:00:12.985] [ 4.407189] NMI watchdog: Perf NMI watchdog permanently disabled
[00:00:13.011] [ 4.431801] smp: Bringing up secondary CPUs ...
[00:00:13.036] [ 4.458428] smp: Brought up 1 node, 1 CPU
[00:00:13.037] [ 4.459900] smpboot: Max logical packages: 1
[00:00:13.039] [ 4.461983] ----------------
[00:00:13.041] [ 4.463026] | NMI testsuite:
[00:00:13.042] [ 4.463834] --------------------
[00:00:13.045] [ 4.464973] remote IPI: ok |
[00:00:13.092] [ 4.467383] local IPI:
[00:00:13.092] [ 4.472787] INFO: NMI handler (test_nmi_ipi_callback) took too long to run: 1.048 msecs
[00:00:13.097] [ 4.474690] ok |
[00:00:13.098] [ 4.476004] --------------------
[00:00:13.099] [ 4.476901] Good, all 2 testcases passed! |
[00:00:13.101] [ 4.483070] ---------------------------------
[00:00:13.103] [ 4.485036] smpboot: Total of 1 processors activated (1999.88 BogoMIPS)
[00:00:13.295] [ 4.676866] devtmpfs: initialized
[00:00:13.347] [ 4.729357] x86/mm: Memory block size: 128MB
[00:00:13.432] [ 4.813230] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[00:00:13.439] [ 4.821261] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
[00:00:13.647] [ 5.029679] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[00:00:13.695] [ 5.077251] audit: initializing netlink subsys (disabled)
[00:00:13.759] [ 5.131416] thermal_sys: Registered thermal governor 'step_wise'
[00:00:13.762] [ 5.141543] audit: type=2000 audit(1718808449.280:1): state=initialized audit_enabled=0 res=1
[00:00:13.772] [ 5.154163] cpuidle: using governor ladder
[00:00:13.775] [ 5.156933] cpuidle: using governor menu
[00:00:13.801] [ 5.183197] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[00:00:13.865] [ 5.241733] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xb0000000-0xbfffffff] (base 0xb0000000)
[00:00:13.874] [ 5.256402] PCI: MMCONFIG at [mem 0xb0000000-0xbfffffff] reserved as E820 entry
[00:00:13.897] [ 5.279043] PCI: Using configuration type 1 for base access
[00:00:13.948] [ 5.330670] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[00:00:14.075] [ 5.456984] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[00:00:14.076] [ 5.458854] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[00:00:14.295] [ 5.677131] ACPI: Added _OSI(Module Device)
[00:00:14.296] [ 5.678556] ACPI: Added _OSI(Processor Device)
[00:00:14.297] [ 5.679656] ACPI: Added _OSI(3.0 _SCP Extensions)
[00:00:14.298] [ 5.680837] ACPI: Added _OSI(Processor Aggregator Device)
[00:00:14.551] [ 5.932185] ACPI: 1 ACPI AML tables successfully acquired and loaded
[00:00:14.857] [ 6.229236] ACPI: _OSC evaluation for CPUs failed, trying _PDC
[00:00:14.887] [ 6.259254] ACPI: Interpreter enabled
[00:00:14.901] [ 6.273348] ACPI: PM: (supports S0 S3 S5)
[00:00:14.902] [ 6.274929] ACPI: Using IOAPIC for interrupt routing
[00:00:14.918] [ 6.290750] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[00:00:14.922] [ 6.293503] PCI: Using E820 reservations for host bridge windows
[00:00:14.945] [ 6.316849] ACPI: Enabled 2 GPEs in block 00 to 3F
[00:00:15.401] [ 6.771669] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[00:00:15.409] [ 6.779753] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[00:00:15.425] [ 6.797553] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug LTR]
[00:00:15.437] [ 6.809161] acpi PNP0A08:00: _OSC: OS now controls [PME PCIeCapability]
[00:00:15.503] [ 6.875279] PCI host bridge to bus 0000:00
[00:00:15.507] [ 6.878712] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[00:00:15.509] [ 6.881454] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[00:00:15.511] [ 6.882991] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[00:00:15.513] [ 6.884851] pci_bus 0000:00: root bus resource [mem 0x3e800000-0xafffffff window]
[00:00:15.515] [ 6.886990] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
[00:00:15.517] [ 6.888913] pci_bus 0000:00: root bus resource [mem 0x100000000-0x8ffffffff window]
[00:00:15.521] [ 6.894250] pci_bus 0000:00: root bus resource [bus 00-ff]
[00:00:15.541] [ 6.913717] pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000
[00:00:15.595] [ 6.967032] pci 0000:00:01.0: [1af4:1005] type 00 class 0x00ff00
[00:00:15.607] [ 6.978879] pci 0000:00:01.0: reg 0x10: [io 0xd100-0xd11f]
[00:00:15.617] [ 6.986835] pci 0000:00:01.0: reg 0x14: [mem 0xfe660000-0xfe660fff]
[00:00:15.672] [ 7.010078] pci 0000:00:01.0: reg 0x20: [mem 0xfea00000-0xfea03fff 64bit pref]
[00:00:15.696] [ 7.038460] pci 0000:00:02.0: [1b36:0001] type 01 class 0x060400
[00:00:15.722] [ 7.053149] pci 0000:00:02.0: reg 0x10: [mem 0xfe661000-0xfe6610ff 64bit]
[00:00:15.763] [ 7.093754] pci 0000:00:03.0: [1af4:1009] type 00 class 0x000200
[00:00:15.775] [ 7.103245] pci 0000:00:03.0: reg 0x10: [io 0xd000-0xd03f]
[00:00:15.786] [ 7.117198] pci 0000:00:03.0: reg 0x14: [mem 0xfe662000-0xfe662fff]
[00:00:15.836] [ 7.153218] pci 0000:00:03.0: reg 0x20: [mem 0xfea04000-0xfea07fff 64bit pref]
[00:00:15.871] [ 7.181793] pci 0000:00:04.0: [1af4:1009] type 00 class 0x000200
[00:00:15.886] [ 7.193301] pci 0000:00:04.0: reg 0x10: [io 0xd120-0xd13f]
[00:00:15.914] [ 7.223471] pci 0000:00:04.0: reg 0x14: [mem 0xfe663000-0xfe663fff]
[00:00:15.962] [ 7.273041] pci 0000:00:04.0: reg 0x20: [mem 0xfea08000-0xfea0bfff 64bit pref]
[00:00:16.004] [ 7.315674] pci 0000:00:05.0: [1af4:1009] type 00 class 0x000200
[00:00:16.022] [ 7.333491] pci 0000:00:05.0: reg 0x10: [io 0xd140-0xd15f]
[00:00:16.043] [ 7.353276] pci 0000:00:05.0: reg 0x14: [mem 0xfe664000-0xfe664fff]
[00:00:16.088] [ 7.398907] pci 0000:00:05.0: reg 0x20: [mem 0xfea0c000-0xfea0ffff 64bit pref]
[00:00:16.123] [ 7.425056] pci 0000:00:06.0: [1af4:1003] type 00 class 0x078000
[00:00:16.137] [ 7.438759] pci 0000:00:06.0: reg 0x10: [io 0xd040-0xd07f]
[00:00:16.152] [ 7.453292] pci 0000:00:06.0: reg 0x14: [mem 0xfe665000-0xfe665fff]
[00:00:16.216] [ 7.493459] pci 0000:00:06.0: reg 0x20: [mem 0xfea10000-0xfea13fff 64bit pref]
[00:00:16.256] [ 7.533148] pci 0000:00:07.0: [8086:100e] type 00 class 0x020000
[00:00:16.271] [ 7.549352] pci 0000:00:07.0: reg 0x10: [mem 0xfe640000-0xfe65ffff]
[00:00:16.283] [ 7.563308] pci 0000:00:07.0: reg 0x14: [io 0xd080-0xd0bf]
[00:00:16.330] [ 7.610146] pci 0000:00:07.0: reg 0x30: [mem 0xfe600000-0xfe63ffff pref]
[00:00:16.362] [ 7.634355] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
[00:00:16.392] [ 7.663258] pci 0000:00:1d.0: reg 0x20: [io 0xd160-0xd17f]
[00:00:16.419] [ 7.691809] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
[00:00:16.449] [ 7.715170] pci 0000:00:1d.1: reg 0x20: [io 0xd180-0xd19f]
[00:00:16.470] [ 7.742094] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
[00:00:16.505] [ 7.763228] pci 0000:00:1d.2: reg 0x20: [io 0xd1a0-0xd1bf]
[00:00:16.532] [ 7.794784] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
[00:00:16.539] [ 7.801066] pci 0000:00:1d.7: reg 0x10: [mem 0xfe666000-0xfe666fff]
[00:00:16.586] [ 7.837786] pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100
[00:00:16.601] [ 7.853722] pci 0000:00:1f.0: quirk: [io 0x0600-0x067f] claimed by ICH6 ACPI/GPIO/TCO
[00:00:16.613] [ 7.858981] pci 0000:00:1f.0: quirk_ich7_lpc+0x0/0x60 took 19531 usecs
[00:00:16.625] [ 7.876965] pci 0000:00:1f.2: [8086:2922] type 00 class 0x010601
[00:00:16.672] [ 7.902787] pci 0000:00:1f.2: reg 0x20: [io 0xd1c0-0xd1df]
[00:00:16.682] [ 7.913175] pci 0000:00:1f.2: reg 0x24: [mem 0xfe667000-0xfe667fff]
[00:00:16.716] [ 7.947809] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
[00:00:16.748] [ 7.967612] pci 0000:00:1f.3: reg 0x20: [io 0x0700-0x073f]
[00:00:16.782] [ 8.003973] pci_bus 0000:01: extended config space not accessible
[00:00:16.821] [ 8.043757] acpiphp: Slot [0] registered
[00:00:16.823] [ 8.046132] acpiphp: Slot [1] registered
[00:00:16.825] [ 8.048158] acpiphp: Slot [2] registered
[00:00:16.828] [ 8.050680] acpiphp: Slot [3] registered
[00:00:16.830] [ 8.053434] acpiphp: Slot [4] registered
[00:00:16.832] [ 8.055121] acpiphp: Slot [5] registered
[00:00:16.834] [ 8.056553] acpiphp: Slot [6] registered
[00:00:16.835] [ 8.058441] acpiphp: Slot [7] registered
[00:00:16.837] [ 8.060319] acpiphp: Slot [8] registered
[00:00:16.839] [ 8.062248] acpiphp: Slot [9] registered
[00:00:16.843] [ 8.064369] acpiphp: Slot [10] registered
[00:00:16.845] [ 8.066889] acpiphp: Slot [11] registered
[00:00:16.847] [ 8.068680] acpiphp: Slot [12] registered
[00:00:16.849] [ 8.070328] acpiphp: Slot [13] registered
[00:00:16.852] [ 8.073853] acpiphp: Slot [14] registered
[00:00:16.853] [ 8.075428] acpiphp: Slot [15] registered
[00:00:16.855] [ 8.077165] acpiphp: Slot [16] registered
[00:00:16.857] [ 8.079160] acpiphp: Slot [17] registered
[00:00:16.858] [ 8.080633] acpiphp: Slot [18] registered
[00:00:16.861] [ 8.083711] acpiphp: Slot [19] registered
[00:00:16.863] [ 8.085423] acpiphp: Slot [20] registered
[00:00:16.864] [ 8.087170] acpiphp: Slot [21] registered
[00:00:16.866] [ 8.088968] acpiphp: Slot [22] registered
[00:00:16.868] [ 8.090606] acpiphp: Slot [23] registered
[00:00:16.871] [ 8.093877] acpiphp: Slot [24] registered
[00:00:16.873] [ 8.095795] acpiphp: Slot [25] registered
[00:00:16.874] [ 8.097457] acpiphp: Slot [26] registered
[00:00:16.876] [ 8.099134] acpiphp: Slot [27] registered
[00:00:16.878] [ 8.100946] acpiphp: Slot [28] registered
[00:00:16.880] [ 8.103248] acpiphp: Slot [29] registered
[00:00:16.882] [ 8.105185] acpiphp: Slot [30] registered
[00:00:16.884] [ 8.107192] acpiphp: Slot [31] registered
[00:00:16.887] [ 8.110130] pci 0000:00:02.0: PCI bridge to [bus 01]
[00:00:16.890] [ 8.113343] pci 0000:00:02.0: bridge window [io 0xc000-0xcfff]
[00:00:16.893] [ 8.115632] pci 0000:00:02.0: bridge window [mem 0xfe400000-0xfe5fffff]
[00:00:16.896] [ 8.118699] pci 0000:00:02.0: bridge window [mem 0xfe800000-0xfe9fffff 64bit pref]
[00:00:16.951] [ 8.173607] ACPI: PCI: Interrupt link LNKA configured for IRQ 10
[00:00:16.960] [ 8.181969] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[00:00:16.967] [ 8.187536] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[00:00:16.977] [ 8.196576] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[00:00:16.983] [ 8.205882] ACPI: PCI: Interrupt link LNKE configured for IRQ 10
[00:00:16.989] [ 8.211564] ACPI: PCI: Interrupt link LNKF configured for IRQ 10
[00:00:16.995] [ 8.217128] ACPI: PCI: Interrupt link LNKG configured for IRQ 11
[00:00:17.002] [ 8.224719] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[00:00:17.005] [ 8.228019] ACPI: PCI: Interrupt link GSIA configured for IRQ 16
[00:00:17.008] [ 8.230534] ACPI: PCI: Interrupt link GSIB configured for IRQ 17
[00:00:17.011] [ 8.233670] ACPI: PCI: Interrupt link GSIC configured for IRQ 18
[00:00:17.013] [ 8.235973] ACPI: PCI: Interrupt link GSID configured for IRQ 19
[00:00:17.015] [ 8.237916] ACPI: PCI: Interrupt link GSIE configured for IRQ 20
[00:00:17.017] [ 8.240102] ACPI: PCI: Interrupt link GSIF configured for IRQ 21
[00:00:17.020] [ 8.243145] ACPI: PCI: Interrupt link GSIG configured for IRQ 22
[00:00:17.022] [ 8.245450] ACPI: PCI: Interrupt link GSIH configured for IRQ 23
[00:00:17.070] [ 8.292291] iommu: Default domain type: Translated
[00:00:17.072] [ 8.294765] iommu: DMA domain TLB invalidation policy: lazy mode
[00:00:17.106] [ 8.328598] SCSI subsystem initialized
[00:00:17.347] [ 8.568897] pps_core: LinuxPPS API ver. 1 registered
[00:00:17.348] [ 8.570292] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[00:00:17.353] [ 8.574170] PTP clock support registered
[00:00:17.496] [ 8.718958] PCI: Using ACPI for IRQ routing
[00:00:17.587] [ 8.810140] hpet: 3 channels of 0 reserved for per-cpu timers
[00:00:17.616] [ 8.836130] clocksource: Switched to clocksource tsc-early
[00:00:17.679] [ 8.899581] VFS: Disk quotas dquot_6.6.0
[00:00:17.685] [ 8.905405] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[00:00:17.708] [ 8.928344] pnp: PnP ACPI init
[00:00:17.764] [ 8.984624] system 00:04: [mem 0xb0000000-0xbfffffff window] has been reserved
[00:00:17.794] [ 9.014049] pnp: PnP ACPI: found 5 devices
[00:00:18.139] [ 9.359218] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[00:00:18.154] [ 9.374690] NET: Registered PF_INET protocol family
[00:00:18.172] [ 9.392505] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
[00:00:18.267] [ 9.487839] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear)
[00:00:18.272] [ 9.492876] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[00:00:18.275] [ 9.495858] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
[00:00:18.281] [ 9.501884] TCP bind hash table entries: 8192 (order: 6, 262144 bytes, linear)
[00:00:18.286] [ 9.506493] TCP: Hash tables configured (established 8192 bind 8192)
[00:00:18.316] [ 9.536452] MPTCP token hash table entries: 1024 (order: 2, 24576 bytes, linear)
[00:00:18.323] [ 9.543678] UDP hash table entries: 512 (order: 2, 16384 bytes, linear)
[00:00:18.328] [ 9.548617] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear)
[00:00:18.353] [ 9.573324] NET: Registered PF_UNIX/PF_LOCAL protocol family
[00:00:18.360] [ 9.580941] NET: Registered PF_XDP protocol family
[00:00:18.376] [ 9.596767] pci 0000:00:02.0: PCI bridge to [bus 01]
[00:00:18.378] [ 9.599047] pci 0000:00:02.0: bridge window [io 0xc000-0xcfff]
[00:00:18.387] [ 9.606921] pci 0000:00:02.0: bridge window [mem 0xfe400000-0xfe5fffff]
[00:00:18.393] [ 9.613457] pci 0000:00:02.0: bridge window [mem 0xfe800000-0xfe9fffff 64bit pref]
[00:00:18.404] [ 9.624581] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[00:00:18.406] [ 9.626459] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[00:00:18.407] [ 9.628191] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[00:00:18.409] [ 9.629756] pci_bus 0000:00: resource 7 [mem 0x3e800000-0xafffffff window]
[00:00:18.412] [ 9.633038] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xfebfffff window]
[00:00:18.414] [ 9.634996] pci_bus 0000:00: resource 9 [mem 0x100000000-0x8ffffffff window]
[00:00:18.417] [ 9.637285] pci_bus 0000:01: resource 0 [io 0xc000-0xcfff]
[00:00:18.418] [ 9.638425] pci_bus 0000:01: resource 1 [mem 0xfe400000-0xfe5fffff]
[00:00:18.420] [ 9.640118] pci_bus 0000:01: resource 2 [mem 0xfe800000-0xfe9fffff 64bit pref]
[00:00:18.486] [ 9.706231] ACPI: \_SB_.GSIA: Enabled at IRQ 16
[00:00:18.614] [ 9.834175] pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x7d0 took 178772 usecs
[00:00:18.637] [ 9.857107] ACPI: \_SB_.GSIB: Enabled at IRQ 17
[00:00:18.668] [ 9.888731] pci 0000:00:1d.1: quirk_usb_early_handoff+0x0/0x7d0 took 50094 usecs
[00:00:18.691] [ 9.911601] ACPI: \_SB_.GSIC: Enabled at IRQ 18
[00:00:18.717] [ 9.936969] pci 0000:00:1d.2: quirk_usb_early_handoff+0x0/0x7d0 took 43690 usecs
[00:00:18.739] [ 9.959092] ACPI: \_SB_.GSID: Enabled at IRQ 19
[00:00:18.789] [ 10.009501] pci 0000:00:1d.7: quirk_usb_early_handoff+0x0/0x7d0 took 68588 usecs
[00:00:18.794] [ 10.014266] PCI: CLS 0 bytes, default 64
[00:00:18.857] [ 10.077466] Initialise system trusted keyrings
[00:00:18.991] [ 10.211803] workingset: timestamp_bits=46 max_order=18 bucket_order=0
[00:00:18.995] [ 10.215370] zbud: loaded
[00:00:19.024] [ 10.244914] Key type asymmetric registered
[00:00:19.026] [ 10.246780] Asymmetric key parser 'x509' registered
[00:00:19.032] [ 10.252132] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[00:00:19.052] [ 10.272113] Unpacking initramfs...
[00:00:19.102] [ 10.322432] io scheduler mq-deadline registered
[00:00:19.104] [ 10.324531] io scheduler kyber registered
[00:00:19.108] [ 10.329228] io scheduler bfq registered
[00:00:19.189] [ 10.409622] ERST DBG: ERST support is disabled.
[00:00:19.215] [ 10.435609] ACPI: \_SB_.GSIF: Enabled at IRQ 21
[00:00:19.265] [ 10.485389] ACPI: \_SB_.GSIH: Enabled at IRQ 23
[00:00:19.295] [ 10.515092] ACPI: \_SB_.GSIE: Enabled at IRQ 20
[00:00:19.351] [ 10.571731] ACPI: \_SB_.GSIG: Enabled at IRQ 22
[00:00:19.485] [ 10.705249] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[00:00:19.526] [ 10.746656] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[00:00:19.921] [ 11.141944] VMware PVSCSI driver - version 1.0.7.0-k
[00:00:20.002] [ 11.222334] ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 6 ports 1.5 Gbps 0x3f impl SATA mode
[00:00:20.005] [ 11.225977] ahci 0000:00:1f.2: flags: 64bit ncq only
[00:00:20.091] [ 11.311600] tsc: Refined TSC clocksource calibration: 999.999 MHz
[00:00:20.097] [ 11.317938] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1cd42c7a813, max_idle_ns: 881590565951 ns
[00:00:20.143] [ 11.363831] clocksource: Switched to clocksource tsc
[00:00:20.212] [ 11.432317] scsi host0: ahci
[00:00:20.340] [ 11.560112] scsi host1: ahci
[00:00:20.377] [ 11.597542] scsi host2: ahci
[00:00:20.411] [ 11.631888] scsi host3: ahci
[00:00:20.451] [ 11.672135] scsi host4: ahci
[00:00:20.490] [ 11.710740] scsi host5: ahci
[00:00:20.501] [ 11.721050] ata1: SATA max UDMA/133 abar m4096@0xfe667000 port 0xfe667100 irq 26
[00:00:20.506] [ 11.726162] ata2: SATA max UDMA/133 abar m4096@0xfe667000 port 0xfe667180 irq 26
[00:00:20.508] [ 11.728537] ata3: SATA max UDMA/133 abar m4096@0xfe667000 port 0xfe667200 irq 26
[00:00:20.510] [ 11.730497] ata4: SATA max UDMA/133 abar m4096@0xfe667000 port 0xfe667280 irq 26
[00:00:20.512] [ 11.732377] ata5: SATA max UDMA/133 abar m4096@0xfe667000 port 0xfe667300 irq 26
[00:00:20.514] [ 11.734817] ata6: SATA max UDMA/133 abar m4096@0xfe667000 port 0xfe667380 irq 26
[00:00:20.541] [ 11.761778] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[00:00:20.585] [ 11.805769] serio: i8042 KBD port at 0x60,0x64 irq 1
[00:00:20.589] [ 11.809365] serio: i8042 AUX port at 0x60,0x64 irq 12
[00:00:20.598] [ 11.818575] rtc_cmos 00:03: RTC can wake from S4
[00:00:20.753] [ 11.973716] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[00:00:20.826] [ 12.046763] rtc_cmos 00:03: registered as rtc0
[00:00:20.838] [ 12.055667] rtc_cmos 00:03: setting system clock to 2024-06-19T14:47:37 UTC (1718808457)
[00:00:20.850] [ 12.071093] rtc_cmos 00:03: alarms up to one day, y3k, 242 bytes nvram, hpet irqs
[00:00:20.856] [ 12.076968] amd_pstate: the _CPC object is not present in SBIOS or ACPI disabled
[00:00:20.875] [ 12.095687] gre: GRE over IPv4 demultiplexor driver
[00:00:21.431] [ 12.652010] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[00:00:21.475] [ 12.695264] ata1.00: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100
[00:00:21.478] [ 12.698692] ata1.00: 6291456 sectors, multi 16: LBA48 NCQ (depth 32)
[00:00:21.482] [ 12.703025] ata1.00: applying bridge limits
[00:00:21.500] [ 12.720464] ata1.00: configured for UDMA/100
[00:00:21.510] [ 12.731115] ata5: SATA link down (SStatus 0 SControl 300)
[00:00:21.514] [ 12.734878] ata6: SATA link down (SStatus 0 SControl 300)
[00:00:21.544] [ 12.765092] ata2: SATA link down (SStatus 0 SControl 300)
[00:00:21.547] [ 12.767370] ata4: SATA link down (SStatus 0 SControl 300)
[00:00:21.548] [ 12.769228] ata3: SATA link down (SStatus 0 SControl 300)
[00:00:21.681] [ 12.902120] scsi 0:0:0:0: Direct-Access ATA QEMU HARDDISK 2.5+ PQ: 0 ANSI: 5
[00:00:22.364] [ 13.584782] NET: Registered PF_INET6 protocol family
[00:00:22.541] [ 13.761960] Segment Routing with IPv6
[00:00:22.545] [ 13.765957] In-situ OAM (IOAM) with IPv6
[00:00:22.589] [ 13.809540] Key type dns_resolver registered
[00:00:22.601] [ 13.821291] IPI shorthand broadcast: enabled
[00:00:22.763] [ 13.983182] sched_clock: Marking stable (14170822880, -197212852)->(14259050237, -285440209)
[00:00:23.472] [ 14.692388] registered taskstats version 1
[00:00:23.498] [ 14.718380] Loading compiled-in X.509 certificates
[00:00:25.259] [ 16.479510] Freeing initrd memory: 8096K
[00:00:28.315] [ 19.535586] Loaded X.509 cert 'alpinelinux.org: Alpine Linux kernel key: d76a695f66ad9cd28f5c22a8508f36e91f521f7a'
[00:00:28.446] [ 19.666552] Key type .fscrypt registered
[00:00:28.447] [ 19.667741] Key type fscrypt-provisioning registered
[00:00:29.281] [ 20.500966] Freeing unused kernel image (initmem) memory: 2696K
[00:00:29.284] [ 20.504763] Write protecting the kernel read-only data: 24576k
[00:00:29.324] [ 20.544430] Freeing unused kernel image (rodata/data gap) memory: 2008K
[00:00:29.332] [ 20.552387] rodata_test: all tests were successful
[00:00:29.338] [ 20.558190] Run /init as init process
[00:00:31.857] [ 23.077447] Alpine Init 3.10.0-r0
[00:00:31.878] Alpine Init 3.10.0-r0
[00:00:31.941] [ 23.161702] Loading boot drivers...
[00:00:31.947] * Loading boot drivers: [ 25.556604] sd 0:0:0:0: [sda] 6291456 512-byte logical blocks: (3.22 GB/3.00 GiB)
[00:00:34.348] [ 25.568309] sd 0:0:0:0: [sda] Write Protect is off
[00:00:34.354] [ 25.574371] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[00:00:34.363] [ 25.584084] sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[00:00:34.555] [ 25.775810] sda: sda1 sda2 sda3
[00:00:34.600] [ 25.820595] sd 0:0:0:0: [sda] Attached SCSI disk
[00:00:35.390] [ 26.610968] ACPI: bus type USB registered
[00:00:35.397] [ 26.617449] usbcore: registered new interface driver usbfs
[00:00:35.400] [ 26.620444] usbcore: registered new interface driver hub
[00:00:35.403] [ 26.623027] usbcore: registered new device driver usb
[00:00:35.622] [ 26.842696] usbcore: registered new interface driver usb-storage
[00:00:39.196] [ 30.416509] loop: module loaded
[00:00:41.027] [ 32.247877] ACPI: bus type drm_connector registered
[00:00:42.052] [ 33.272792] Loading boot drivers: ok.
[00:00:42.058] ok.
[00:00:42.467] [ 33.687184] Mounting root...
[00:00:42.468] * Mounting root: [ 39.383079] ehci-pci 0000:00:1d.7: EHCI Host Controller
[00:00:48.169] [ 39.390189] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
[00:00:48.197] [ 39.417869] ehci-pci 0000:00:1d.7: irq 19, io mem 0xfe666000
[00:00:48.269] [ 39.489845] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[00:00:48.430] [ 39.651076] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[00:00:48.433] [ 39.653081] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:00:48.435] [ 39.656184] usb usb1: Product: EHCI Host Controller
[00:00:48.437] [ 39.657488] usb usb1: Manufacturer: Linux 6.6.33-0-virt ehci_hcd
[00:00:48.438] [ 39.658480] usb usb1: SerialNumber: 0000:00:1d.7
[00:00:48.521] [ 39.741708] hub 1-0:1.0: USB hub found
[00:00:48.536] [ 39.756492] hub 1-0:1.0: 6 ports detected
[00:00:48.797] [ 40.017923] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[00:00:48.799] [ 40.019587] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[00:00:48.801] [ 40.022137] uhci_hcd 0000:00:1d.0: detected 2 ports
[00:00:48.809] [ 40.029598] uhci_hcd 0000:00:1d.0: irq 16, io port 0x0000d160
[00:00:48.827] [ 40.047977] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[00:00:48.829] [ 40.049797] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:00:48.830] [ 40.051271] usb usb2: Product: UHCI Host Controller
[00:00:48.832] [ 40.052807] usb usb2: Manufacturer: Linux 6.6.33-0-virt uhci_hcd
[00:00:48.834] [ 40.055292] usb usb2: SerialNumber: 0000:00:1d.0
[00:00:48.854] [ 40.074200] hub 2-0:1.0: USB hub found
[00:00:48.862] [ 40.082686] hub 2-0:1.0: 2 ports detected
[00:00:48.910] [ 40.130217] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[00:00:48.911] [ 40.132049] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[00:00:48.914] [ 40.135304] uhci_hcd 0000:00:1d.1: detected 2 ports
[00:00:48.920] [ 40.140256] uhci_hcd 0000:00:1d.1: irq 17, io port 0x0000d180
[00:00:48.967] [ 40.187851] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[00:00:48.969] [ 40.189905] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:00:48.971] [ 40.192012] usb usb3: Product: UHCI Host Controller
[00:00:48.974] [ 40.194414] usb usb3: Manufacturer: Linux 6.6.33-0-virt uhci_hcd
[00:00:48.976] [ 40.196452] usb usb3: SerialNumber: 0000:00:1d.1
[00:00:48.997] [ 40.217373] hub 3-0:1.0: USB hub found
[00:00:49.005] [ 40.225217] hub 3-0:1.0: 2 ports detected
[00:00:49.041] [ 40.261695] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[00:00:49.044] [ 40.264319] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[00:00:49.046] [ 40.266501] uhci_hcd 0000:00:1d.2: detected 2 ports
[00:00:49.051] [ 40.271525] uhci_hcd 0000:00:1d.2: irq 18, io port 0x0000d1a0
[00:00:49.087] [ 40.307865] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[00:00:49.090] [ 40.310414] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:00:49.091] [ 40.312173] usb usb4: Product: UHCI Host Controller
[00:00:49.094] [ 40.314411] usb usb4: Manufacturer: Linux 6.6.33-0-virt uhci_hcd
[00:00:49.096] [ 40.316799] usb usb4: SerialNumber: 0000:00:1d.2
[00:00:49.116] [ 40.336463] hub 4-0:1.0: USB hub found
[00:00:49.124] [ 40.344779] hub 4-0:1.0: 2 ports detected
[00:02:08.653] [ 119.849201] EXT4-fs (sda3): orphan cleanup on readonly fs
[00:02:08.673] [ 119.890504] EXT4-fs (sda3): mounted filesystem ae7bb8b0-5180-432a-80a5-e4a3065e4684 ro with ordered data mode. Quota mode: none.
[00:02:08.752] [ 119.972082] Mounting root: ok.
[00:02:08.773] ok.
[00:02:12.622]
[00:02:12.710] OpenRC 0.54 is starting up Linux 6.6.33-0-virt (x86_64)
[00:02:12.711]
[00:02:15.501] * /proc is already mounted
[00:02:16.471] * Mounting /run ... [ ok ]
[00:02:19.402] * /run/openrc: creating directory
[00:02:19.795] * /run/lock: creating directory
[00:02:19.806] * /run/lock: correcting owner
[00:02:21.024] [ 132.233175] random: crng init done
[00:02:47.120] * Caching service dependencies ... [ ok ]
[00:02:51.445] * Remounting devtmpfs on /dev ... [ ok ]
[00:02:54.412] * Mounting /dev/mqueue ... [ ok ]
[00:03:05.664] * Mounting security filesystem ... [ ok ]
[00:03:07.005] * Mounting debug filesystem ... [ ok ]
[00:03:08.385] * Mounting persistent storage (pstore) filesystem ... [ ok ]
[00:03:12.595] * Starting busybox mdev ... [ ok ]
[00:03:13.285] * Scanning hardware for mdev ... [ ok ]
[00:03:58.304] * Loading hardware drivers ... [ ok ]
[00:05:15.253] * Loading modules ... [ ok ]
[00:05:25.015] * Setting system clock using the hardware clock [UTC] ... [ ok ]
[00:05:34.440] * Checking local filesystems .../dev/sda3: clean, 40406/128256 files, 268057/512768 blocks
[00:05:36.856] /dev/sda1: clean, 29/76912 files, 54025/307200 blocks
[00:05:37.485] [ ok ]
[00:05:41.769] * Remounting root filesystem read/write ... [ ok ]
[00:05:43.214] * Remounting filesystems ... [ ok ]
[00:05:49.700] * Activating swap devices ... [ ok ]
[00:05:54.728] * Mounting local filesystems ... [ ok ]
[00:05:59.774] * Configuring kernel parameters ... [ ok ]
[00:06:08.502] * Creating user login records ... [ ok ]
[00:06:15.904] * Setting hostname ... [ ok ]
[00:06:20.222] * Starting networking ... * lo ... [ ok ]
[00:06:29.174] * eth0 ...udhcpc: started, v1.36.1
[00:06:35.900] udhcpc: broadcasting discover
[00:06:36.099] udhcpc: broadcasting select for 10.0.2.15, server 10.0.2.2
[00:06:36.227] udhcpc: lease of 10.0.2.15 obtained from 10.0.2.2, lease time 86400
[00:06:44.933] [ ok ]
[00:06:49.463] * Seeding random number generator ... * Seeding 256 bits and crediting
[00:06:50.016] * Saving 256 bits of creditable seed for next boot
[00:06:50.424] [ ok ]
[00:06:54.408] * Starting busybox syslog ... [ ok ]
[00:07:02.015] * Starting busybox acpid ... [ ok ]
[00:07:06.797] * Starting busybox crond ... [ ok ]
[00:07:11.542] * Starting rngd ... [ ok ]
[00:07:28.282] * Starting sshd ... [ ok ]
[00:07:35.364] * Starting vsftpd ... [ ok ]
[00:07:44.002]
[00:07:44.289] Welcome to Alpine Linux 3.20
Kernel 6.6.33-0-virt on an x86_64 (/dev/ttyS0)
[00:07:44.438]
localhost login:
~ $
~ $ 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 -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 -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 -drive if=ide,id=vm,format=raw,file=$VM -nodefaults -accel tcg,tb-size=256
[ 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:07.990] [ 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:07.994] [ 0.000000] BIOS-provided physical RAM map:
[00:00:07.995] [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[00:00:07.997] [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[00:00:07.998] [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[00:00:08.000] [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003e7ddfff] usable
[00:00:08.003] [ 0.000000] BIOS-e820: [mem 0x000000003e7de000-0x000000003e7fffff] reserved
[00:00:08.005] [ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved
[00:00:08.007] [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[00:00:08.009] [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[00:00:08.010] [ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved
[00:00:08.012] [ 0.000000] NX (Execute Disable) protection: active
[00:00:08.013] [ 0.000000] APIC: Static calls initialized
[00:00:08.014] [ 0.000000] SMBIOS 2.8 present.
[00:00:08.015] [ 0.000000] DMI: QEMU Standard PC (Q35 + ICH9, 2009), BIOS rel-1.16.2-0-gea1b7a073390-prebuilt.qemu.org 04/01/2014
[00:00:08.018] [ 0.000000] tsc: Fast TSC calibration failed
[00:00:08.019] [ 0.000000] last_pfn = 0x3e7de max_arch_pfn = 0x400000000
[00:00:08.021] [ 0.000000] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs
[00:00:08.023] [ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[00:00:08.025] [ 0.000000] RAMDISK: [mem 0x3dff6000-0x3e7ddfff]
[00:00:08.026] [ 0.000000] ACPI: Early table checksum verification disabled
[00:00:08.028] [ 0.000000] ACPI: RSDP 0x00000000000F5980 000014 (v00 BOCHS )
[00:00:08.029] [ 0.000000] ACPI: RSDT 0x000000003E7E2FC1 000038 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:08.031] [ 0.000000] ACPI: FACP 0x000000003E7E2DB9 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:08.034] [ 0.000000] ACPI: DSDT 0x000000003E7E0040 002D79 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:08.036] [ 0.000000] ACPI: FACS 0x000000003E7E0000 000040
[00:00:08.038] [ 0.000000] ACPI: APIC 0x000000003E7E2EAD 000078 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:08.040] [ 0.000000] ACPI: HPET 0x000000003E7E2F25 000038 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:08.042] [ 0.000000] ACPI: MCFG 0x000000003E7E2F5D 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:08.044] [ 0.000000] ACPI: WAET 0x000000003E7E2F99 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[00:00:08.047] [ 0.000000] ACPI: Reserving FACP table memory at [mem 0x3e7e2db9-0x3e7e2eac]
[00:00:08.048] [ 0.000000] ACPI: Reserving DSDT table memory at [mem 0x3e7e0040-0x3e7e2db8]
[00:00:08.050] [ 0.000000] ACPI: Reserving FACS table memory at [mem 0x3e7e0000-0x3e7e003f]
[00:00:08.052] [ 0.000000] ACPI: Reserving APIC table memory at [mem 0x3e7e2ead-0x3e7e2f24]
[00:00:08.054] [ 0.000000] ACPI: Reserving HPET table memory at [mem 0x3e7e2f25-0x3e7e2f5c]
[00:00:08.056] [ 0.000000] ACPI: Reserving MCFG table memory at [mem 0x3e7e2f5d-0x3e7e2f98]
[00:00:08.058] [ 0.000000] ACPI: Reserving WAET table memory at [mem 0x3e7e2f99-0x3e7e2fc0]
[00:00:08.060] [ 0.000000] Zone ranges:
[00:00:08.060] [ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[00:00:08.062] [ 0.000000] DMA32 [mem 0x0000000001000000-0x000000003e7ddfff]
[00:00:08.064] [ 0.000000] Normal empty
[00:00:08.064] [ 0.000000] Movable zone start for each node
[00:00:08.065] [ 0.000000] Early memory node ranges
[00:00:08.066] [ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]
[00:00:08.068] [ 0.000000] node 0: [mem 0x0000000000100000-0x000000003e7ddfff]
[00:00:08.070] [ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000003e7ddfff]
[00:00:08.071] [ 0.000000] On node 0, zone DMA: 1 pages in unavailable ranges
[00:00:08.073] [ 0.000000] On node 0, zone DMA: 97 pages in unavailable ranges
[00:00:08.074] [ 0.000000] On node 0, zone DMA32: 6178 pages in unavailable ranges
[00:00:08.076] [ 0.000000] ACPI: PM-Timer IO Port: 0x608
[00:00:08.077] [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[00:00:08.078] [ 0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[00:00:08.080] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[00:00:08.082] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[00:00:08.084] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[00:00:08.085] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[00:00:08.087] [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[00:00:08.089] [ 0.000000] ACPI: Using ACPI (MADT) for SMP configuration information
[00:00:08.090] [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[00:00:08.092] [ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[00:00:08.093] [ 0.000000] [mem 0x3e800000-0xafffffff] available for PCI devices
[00:00:08.094] [ 0.000000] Booting paravirtualized kernel on bare hardware
[00:00:08.096] [ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[00:00:08.098] [ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1
[00:00:08.100] [ 0.000000] percpu: Embedded 57 pages/cpu s195560 r8192 d29720 u2097152
[00:00:08.102] [ 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:08.106] [ 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:08.110] [ 0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[00:00:08.112] [ 0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[00:00:08.114] [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 251710
[00:00:08.115] [ 0.000000] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[00:00:08.117] [ 0.000000] Memory: 959076K/1023472K available (14336K kernel code, 1799K rwdata, 8232K rodata, 2696K init, 2032K bss, 64136K reserved, 0K cma-reserved)
[00:00:08.120] [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[00:00:08.122] [ 0.000000] Dynamic Preempt: none
[00:00:08.123] [ 0.000000] rcu: Preemptible hierarchical RCU implementation.
[00:00:08.124] [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
[00:00:08.126] [ 0.000000] Trampoline variant of Tasks RCU enabled.
[00:00:08.127] [ 0.000000] Tracing variant of Tasks RCU enabled.
[00:00:08.128] [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[00:00:08.130] [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[00:00:08.132] [ 0.000000] NR_IRQS: 16640, nr_irqs: 256, preallocated irqs: 16
[00:00:08.133] [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[00:00:08.135] [ 0.000000] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[00:00:08.137] [ 0.000000] Console: colour *CGA 80x25
[00:00:08.138] [ 0.000000] printk: console [ttyS0] enabled
[00:00:08.146] [ 0.000000] ACPI: Core revision 20230628
[00:00:08.222] [ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns
[00:00:08.292] [ 0.040000] APIC: Switch to symmetric I/O mode setup
[00:00:08.349] [ 0.090000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[00:00:08.482] [ 0.170000] tsc: Unable to calibrate against PIT
[00:00:08.483] [ 0.170000] tsc: using HPET reference calibration
[00:00:08.485] [ 0.170000] tsc: Detected 999.932 MHz processor
[00:00:08.493] [ 0.005160] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1cd3addfc79, max_idle_ns: 881590527646 ns
[00:00:08.503] [ 0.013174] Calibrating delay loop (skipped), value calculated using timer frequency.. 1999.86 BogoMIPS (lpj=9999320)
[00:00:08.519] [ 0.034367] process: using AMD E400 aware idle routine
[00:00:08.523] [ 0.037742] Last level iTLB entries: 4KB 512, 2MB 255, 4MB 127
[00:00:08.524] [ 0.039242] Last level dTLB entries: 4KB 512, 2MB 255, 4MB 127, 1GB 0
[00:00:08.531] [ 0.045101] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[00:00:08.536] [ 0.050795] Spectre V2 : Mitigation: Retpolines
[00:00:08.537] [ 0.051908] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[00:00:08.539] [ 0.054435] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[00:00:08.628] [ 0.068458] x86/fpu: x87 FPU will use FXSAVE
[00:00:09.036] [ 0.516965] clocksource: timekeeping watchdog on CPU0: hpet wd-wd read-back delay of 71410ns
[00:00:09.038] [ 0.523232] clocksource: wd-tsc-early-wd read-back delay of 377140ns, clock-skew test skipped!
[00:00:12.039] [ 3.516019] Freeing SMP alternatives memory: 32K
[00:00:12.044] [ 3.528353] pid_max: default: 32768 minimum: 301
[00:00:12.188] [ 3.646289] LSM: initializing lsm=lockdown,capability,landlock,integrity
[00:00:12.271] [ 3.736276] landlock: Up and running.
[00:00:12.320] [ 3.784780] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
[00:00:12.322] [ 3.787139] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
[00:00:12.838] [ 4.270613] smpboot: CPU0: AMD QEMU Virtual CPU version 2.5+ (family: 0xf, model: 0x6b, stepping: 0x1)
[00:00:12.967] [ 4.394489] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
[00:00:12.972] [ 4.400053] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
[00:00:12.989] [ 4.411111] Performance Events: PMU not available due to virtualization, using software events only.
[00:00:13.000] [ 4.427693] signal: max sigframe size: 1440
[00:00:13.018] [ 4.446028] rcu: Hierarchical SRCU implementation.
[00:00:13.020] [ 4.448119] rcu: Max phase no-delay instances is 1000.
[00:00:13.119] [ 4.547094] NMI watchdog: Perf NMI watchdog permanently disabled
[00:00:13.146] [ 4.573668] smp: Bringing up secondary CPUs ...
[00:00:13.171] [ 4.599065] smp: Brought up 1 node, 1 CPU
[00:00:13.173] [ 4.601286] smpboot: Max logical packages: 1
[00:00:13.175] [ 4.603079] ----------------
[00:00:13.176] [ 4.603838] | NMI testsuite:
[00:00:13.176] [ 4.604353] --------------------
[00:00:13.178] [ 4.605042] remote IPI: ok |
[00:00:13.190] [ 4.607474] local IPI: ok |
[00:00:13.191] [ 4.613484] --------------------
[00:00:13.192] [ 4.614280] Good, all 2 testcases passed! |
[00:00:13.193] [ 4.620855] ---------------------------------
[00:00:13.196] [ 4.623163] smpboot: Total of 1 processors activated (1999.86 BogoMIPS)
[00:00:13.374] [ 4.801930] devtmpfs: initialized
[00:00:13.425] [ 4.852811] x86/mm: Memory block size: 128MB
[00:00:13.505] [ 4.931243] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[00:00:13.512] [ 4.939081] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
[00:00:13.705] [ 5.132790] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[00:00:13.750] [ 5.177391] audit: initializing netlink subsys (disabled)
[00:00:13.811] [ 5.229332] thermal_sys: Registered thermal governor 'step_wise'
[00:00:13.813] [ 5.239156] audit: type=2000 audit(1718810668.370:1): state=initialized audit_enabled=0 res=1
[00:00:13.821] [ 5.249138] cpuidle: using governor ladder
[00:00:13.824] [ 5.252312] cpuidle: using governor menu
[00:00:13.849] [ 5.276354] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[00:00:13.910] [ 5.332807] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xb0000000-0xbfffffff] (base 0xb0000000)
[00:00:13.918] [ 5.346333] PCI: MMCONFIG at [mem 0xb0000000-0xbfffffff] reserved as E820 entry
[00:00:13.940] [ 5.368100] PCI: Using configuration type 1 for base access
[00:00:13.989] [ 5.417261] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[00:00:14.106] [ 5.533677] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[00:00:14.107] [ 5.535550] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[00:00:14.325] [ 5.753134] ACPI: Added _OSI(Module Device)
[00:00:14.326] [ 5.754397] ACPI: Added _OSI(Processor Device)
[00:00:14.327] [ 5.755377] ACPI: Added _OSI(3.0 _SCP Extensions)
[00:00:14.329] [ 5.756792] ACPI: Added _OSI(Processor Aggregator Device)
[00:00:14.561] [ 5.988277] ACPI: 1 ACPI AML tables successfully acquired and loaded
[00:00:14.828] [ 6.245844] ACPI: _OSC evaluation for CPUs failed, trying _PDC
[00:00:14.855] [ 6.273460] ACPI: Interpreter enabled
[00:00:14.868] [ 6.286390] ACPI: PM: (supports S0 S3 S5)
[00:00:14.870] [ 6.288010] ACPI: Using IOAPIC for interrupt routing
[00:00:14.886] [ 6.303664] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[00:00:14.888] [ 6.306233] PCI: Using E820 reservations for host bridge windows
[00:00:14.910] [ 6.327511] ACPI: Enabled 2 GPEs in block 00 to 3F
[00:00:15.328] [ 6.745204] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[00:00:15.336] [ 6.753192] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[00:00:15.350] [ 6.768457] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug LTR]
[00:00:15.361] [ 6.779017] acpi PNP0A08:00: _OSC: OS now controls [PME PCIeCapability]
[00:00:15.424] [ 6.842316] PCI host bridge to bus 0000:00
[00:00:15.428] [ 6.845305] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[00:00:15.430] [ 6.848109] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[00:00:15.433] [ 6.850796] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[00:00:15.435] [ 6.852816] pci_bus 0000:00: root bus resource [mem 0x3e800000-0xafffffff window]
[00:00:15.437] [ 6.854826] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
[00:00:15.438] [ 6.856635] pci_bus 0000:00: root bus resource [mem 0x100000000-0x8ffffffff window]
[00:00:15.442] [ 6.860122] pci_bus 0000:00: root bus resource [bus 00-ff]
[00:00:15.461] [ 6.878536] pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000
[00:00:15.511] [ 6.928805] pci 0000:00:01.0: [1af4:1005] type 00 class 0x00ff00
[00:00:15.524] [ 6.941840] pci 0000:00:01.0: reg 0x10: [io 0xd100-0xd11f]
[00:00:15.534] [ 6.950557] pci 0000:00:01.0: reg 0x14: [mem 0xfe660000-0xfe660fff]
[00:00:15.590] [ 7.001187] pci 0000:00:01.0: reg 0x20: [mem 0xfea00000-0xfea03fff 64bit pref]
[00:00:15.614] [ 7.032069] pci 0000:00:02.0: [1b36:0001] type 01 class 0x060400
[00:00:15.627] [ 7.040613] pci 0000:00:02.0: reg 0x10: [mem 0xfe661000-0xfe6610ff 64bit]
[00:00:15.662] [ 7.079257] pci 0000:00:03.0: [1af4:1009] type 00 class 0x000200
[00:00:15.684] [ 7.088873] pci 0000:00:03.0: reg 0x10: [io 0xd000-0xd03f]
[00:00:15.696] [ 7.100613] pci 0000:00:03.0: reg 0x14: [mem 0xfe662000-0xfe662fff]
[00:00:15.741] [ 7.130613] pci 0000:00:03.0: reg 0x20: [mem 0xfea04000-0xfea07fff 64bit pref]
[00:00:15.793] [ 7.179846] pci 0000:00:04.0: [1af4:1009] type 00 class 0x000200
[00:00:15.815] [ 7.201151] pci 0000:00:04.0: reg 0x10: [io 0xd120-0xd13f]
[00:00:15.830] [ 7.216442] pci 0000:00:04.0: reg 0x14: [mem 0xfe663000-0xfe663fff]
[00:00:15.880] [ 7.266599] pci 0000:00:04.0: reg 0x20: [mem 0xfea08000-0xfea0bfff 64bit pref]
[00:00:15.928] [ 7.315468] pci 0000:00:05.0: [1af4:1009] type 00 class 0x000200
[00:00:15.945] [ 7.330985] pci 0000:00:05.0: reg 0x10: [io 0xd140-0xd15f]
[00:00:15.958] [ 7.340981] pci 0000:00:05.0: reg 0x14: [mem 0xfe664000-0xfe664fff]
[00:00:15.998] [ 7.354593] pci 0000:00:05.0: reg 0x20: [mem 0xfea0c000-0xfea0ffff 64bit pref]
[00:00:16.040] [ 7.407556] pci 0000:00:06.0: [1af4:1003] type 00 class 0x078000
[00:00:16.061] [ 7.421095] pci 0000:00:06.0: reg 0x10: [io 0xd040-0xd07f]
[00:00:16.084] [ 7.451191] pci 0000:00:06.0: reg 0x14: [mem 0xfe665000-0xfe665fff]
[00:00:16.128] [ 7.495622] pci 0000:00:06.0: reg 0x20: [mem 0xfea10000-0xfea13fff 64bit pref]
[00:00:16.158] [ 7.526208] pci 0000:00:07.0: [8086:100e] type 00 class 0x020000
[00:00:16.169] [ 7.534495] pci 0000:00:07.0: reg 0x10: [mem 0xfe640000-0xfe65ffff]
[00:00:16.181] [ 7.545249] pci 0000:00:07.0: reg 0x14: [io 0xd080-0xd0bf]
[00:00:16.241] [ 7.584996] pci 0000:00:07.0: reg 0x30: [mem 0xfe600000-0xfe63ffff pref]
[00:00:16.257] [ 7.604939] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
[00:00:16.289] [ 7.624738] pci 0000:00:1d.0: reg 0x20: [io 0xd160-0xd17f]
[00:00:16.310] [ 7.648158] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
[00:00:16.331] [ 7.668201] pci 0000:00:1d.1: reg 0x20: [io 0xd180-0xd19f]
[00:00:16.360] [ 7.696623] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
[00:00:16.395] [ 7.718171] pci 0000:00:1d.2: reg 0x20: [io 0xd1a0-0xd1bf]
[00:00:16.415] [ 7.752278] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
[00:00:16.421] [ 7.758764] pci 0000:00:1d.7: reg 0x10: [mem 0xfe666000-0xfe666fff]
[00:00:16.468] [ 7.795703] pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100
[00:00:16.487] [ 7.814349] pci 0000:00:1f.0: quirk: [io 0x0600-0x067f] claimed by ICH6 ACPI/GPIO/TCO
[00:00:16.498] [ 7.821042] pci 0000:00:1f.0: quirk_ich7_lpc+0x0/0x60 took 29296 usecs
[00:00:16.508] [ 7.835844] pci 0000:00:1f.2: [8086:2922] type 00 class 0x010601
[00:00:16.541] [ 7.850613] pci 0000:00:1f.2: reg 0x20: [io 0xd1c0-0xd1df]
[00:00:16.559] [ 7.865716] pci 0000:00:1f.2: reg 0x24: [mem 0xfe667000-0xfe667fff]
[00:00:16.596] [ 7.903713] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
[00:00:16.614] [ 7.910938] pci 0000:00:1f.3: reg 0x20: [io 0x0700-0x073f]
[00:00:16.665] [ 7.962489] pci_bus 0000:01: extended config space not accessible
[00:00:16.710] [ 8.007581] acpiphp: Slot [0] registered
[00:00:16.714] [ 8.012418] acpiphp: Slot [1] registered
[00:00:16.716] [ 8.014790] acpiphp: Slot [2] registered
[00:00:16.718] [ 8.016376] acpiphp: Slot [3] registered
[00:00:16.720] [ 8.018033] acpiphp: Slot [4] registered
[00:00:16.721] [ 8.019793] acpiphp: Slot [5] registered
[00:00:16.725] [ 8.022053] acpiphp: Slot [6] registered
[00:00:16.726] [ 8.023812] acpiphp: Slot [7] registered
[00:00:16.728] [ 8.025402] acpiphp: Slot [8] registered
[00:00:16.730] [ 8.027318] acpiphp: Slot [9] registered
[00:00:16.731] [ 8.028658] acpiphp: Slot [10] registered
[00:00:16.734] [ 8.031585] acpiphp: Slot [11] registered
[00:00:16.735] [ 8.033395] acpiphp: Slot [12] registered
[00:00:16.737] [ 8.035108] acpiphp: Slot [13] registered
[00:00:16.739] [ 8.036522] acpiphp: Slot [14] registered
[00:00:16.740] [ 8.038361] acpiphp: Slot [15] registered
[00:00:16.743] [ 8.041802] acpiphp: Slot [16] registered
[00:00:16.745] [ 8.043638] acpiphp: Slot [17] registered
[00:00:16.747] [ 8.045185] acpiphp: Slot [18] registered
[00:00:16.748] [ 8.046960] acpiphp: Slot [19] registered
[00:00:16.750] [ 8.048845] acpiphp: Slot [20] registered
[00:00:16.753] [ 8.051320] acpiphp: Slot [21] registered
[00:00:16.754] [ 8.052945] acpiphp: Slot [22] registered
[00:00:16.756] [ 8.054850] acpiphp: Slot [23] registered
[00:00:16.758] [ 8.056688] acpiphp: Slot [24] registered
[00:00:16.760] [ 8.058497] acpiphp: Slot [25] registered
[00:00:16.762] [ 8.060021] acpiphp: Slot [26] registered
[00:00:16.764] [ 8.061594] acpiphp: Slot [27] registered
[00:00:16.766] [ 8.063223] acpiphp: Slot [28] registered
[00:00:16.768] [ 8.064914] acpiphp: Slot [29] registered
[00:00:16.769] [ 8.066808] acpiphp: Slot [30] registered
[00:00:16.771] [ 8.068373] acpiphp: Slot [31] registered
[00:00:16.775] [ 8.072734] pci 0000:00:02.0: PCI bridge to [bus 01]
[00:00:16.777] [ 8.075457] pci 0000:00:02.0: bridge window [io 0xc000-0xcfff]
[00:00:16.780] [ 8.077672] pci 0000:00:02.0: bridge window [mem 0xfe400000-0xfe5fffff]
[00:00:16.783] [ 8.081317] pci 0000:00:02.0: bridge window [mem 0xfe800000-0xfe9fffff 64bit pref]
[00:00:16.835] [ 8.132786] ACPI: PCI: Interrupt link LNKA configured for IRQ 10
[00:00:16.843] [ 8.141053] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[00:00:16.848] [ 8.146245] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[00:00:16.855] [ 8.152113] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[00:00:16.861] [ 8.159212] ACPI: PCI: Interrupt link LNKE configured for IRQ 10
[00:00:16.867] [ 8.164517] ACPI: PCI: Interrupt link LNKF configured for IRQ 10
[00:00:16.873] [ 8.171057] ACPI: PCI: Interrupt link LNKG configured for IRQ 11
[00:00:16.878] [ 8.176578] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[00:00:16.882] [ 8.179770] ACPI: PCI: Interrupt link GSIA configured for IRQ 16
[00:00:16.885] [ 8.181634] ACPI: PCI: Interrupt link GSIB configured for IRQ 17
[00:00:16.887] [ 8.184079] ACPI: PCI: Interrupt link GSIC configured for IRQ 18
[00:00:16.889] [ 8.185672] ACPI: PCI: Interrupt link GSID configured for IRQ 19
[00:00:16.891] [ 8.187758] ACPI: PCI: Interrupt link GSIE configured for IRQ 20
[00:00:16.894] [ 8.191417] ACPI: PCI: Interrupt link GSIF configured for IRQ 21
[00:00:16.895] [ 8.193344] ACPI: PCI: Interrupt link GSIG configured for IRQ 22
[00:00:16.897] [ 8.194675] ACPI: PCI: Interrupt link GSIH configured for IRQ 23
[00:00:16.942] [ 8.239795] iommu: Default domain type: Translated
[00:00:16.945] [ 8.241510] iommu: DMA domain TLB invalidation policy: lazy mode
[00:00:16.978] [ 8.275792] SCSI subsystem initialized
[00:00:17.170] [ 8.467277] pps_core: LinuxPPS API ver. 1 registered
[00:00:17.171] [ 8.468741] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[00:00:17.175] [ 8.471840] PTP clock support registered
[00:00:17.316] [ 8.613834] PCI: Using ACPI for IRQ routing
[00:00:17.407] [ 8.705563] hpet: 3 channels of 0 reserved for per-cpu timers
[00:00:17.432] [ 8.721086] clocksource: Switched to clocksource tsc-early
[00:00:17.492] [ 8.780603] VFS: Disk quotas dquot_6.6.0
[00:00:17.497] [ 8.786030] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[00:00:17.520] [ 8.808641] pnp: PnP ACPI init
[00:00:17.573] [ 8.861236] system 00:04: [mem 0xb0000000-0xbfffffff window] has been reserved
[00:00:17.600] [ 8.889377] pnp: PnP ACPI: found 5 devices
[00:00:17.921] [ 9.210053] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[00:00:17.935] [ 9.224607] NET: Registered PF_INET protocol family
[00:00:17.953] [ 9.241176] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
[00:00:18.041] [ 9.330341] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear)
[00:00:18.046] [ 9.335256] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[00:00:18.049] [ 9.337888] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
[00:00:18.055] [ 9.343729] TCP bind hash table entries: 8192 (order: 6, 262144 bytes, linear)
[00:00:18.059] [ 9.348226] TCP: Hash tables configured (established 8192 bind 8192)
[00:00:18.088] [ 9.376628] MPTCP token hash table entries: 1024 (order: 2, 24576 bytes, linear)
[00:00:18.094] [ 9.383209] UDP hash table entries: 512 (order: 2, 16384 bytes, linear)
[00:00:18.098] [ 9.387664] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear)
[00:00:18.122] [ 9.411075] NET: Registered PF_UNIX/PF_LOCAL protocol family
[00:00:18.130] [ 9.418701] NET: Registered PF_XDP protocol family
[00:00:18.145] [ 9.433786] pci 0000:00:02.0: PCI bridge to [bus 01]
[00:00:18.147] [ 9.435805] pci 0000:00:02.0: bridge window [io 0xc000-0xcfff]
[00:00:18.154] [ 9.443378] pci 0000:00:02.0: bridge window [mem 0xfe400000-0xfe5fffff]
[00:00:18.160] [ 9.449418] pci 0000:00:02.0: bridge window [mem 0xfe800000-0xfe9fffff 64bit pref]
[00:00:18.171] [ 9.460097] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[00:00:18.175] [ 9.464225] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[00:00:18.176] [ 9.465680] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[00:00:18.178] [ 9.466886] pci_bus 0000:00: resource 7 [mem 0x3e800000-0xafffffff window]
[00:00:18.179] [ 9.468533] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xfebfffff window]
[00:00:18.181] [ 9.470101] pci_bus 0000:00: resource 9 [mem 0x100000000-0x8ffffffff window]
[00:00:18.184] [ 9.472783] pci_bus 0000:01: resource 0 [io 0xc000-0xcfff]
[00:00:18.185] [ 9.474212] pci_bus 0000:01: resource 1 [mem 0xfe400000-0xfe5fffff]
[00:00:18.186] [ 9.475664] pci_bus 0000:01: resource 2 [mem 0xfe800000-0xfe9fffff 64bit pref]
[00:00:18.247] [ 9.536012] ACPI: \_SB_.GSIA: Enabled at IRQ 16
[00:00:18.367] [ 9.656061] pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x7d0 took 166648 usecs
[00:00:18.387] [ 9.676217] ACPI: \_SB_.GSIB: Enabled at IRQ 17
[00:00:18.416] [ 9.704815] pci 0000:00:1d.1: quirk_usb_early_handoff+0x0/0x7d0 took 45236 usecs
[00:00:18.436] [ 9.724901] ACPI: \_SB_.GSIC: Enabled at IRQ 18
[00:00:18.458] [ 9.747359] pci 0000:00:1d.2: quirk_usb_early_handoff+0x0/0x7d0 took 39185 usecs
[00:00:18.479] [ 9.768328] ACPI: \_SB_.GSID: Enabled at IRQ 19
[00:00:18.524] [ 9.813075] pci 0000:00:1d.7: quirk_usb_early_handoff+0x0/0x7d0 took 61403 usecs
[00:00:18.526] [ 9.815803] PCI: CLS 0 bytes, default 64
[00:00:18.587] [ 9.875824] Initialise system trusted keyrings
[00:00:18.713] [ 10.002129] workingset: timestamp_bits=46 max_order=18 bucket_order=0
[00:00:18.716] [ 10.005471] zbud: loaded
[00:00:18.745] [ 10.034278] Key type asymmetric registered
[00:00:18.747] [ 10.036036] Asymmetric key parser 'x509' registered
[00:00:18.751] [ 10.040535] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[00:00:18.771] [ 10.059960] Unpacking initramfs...
[00:00:18.820] [ 10.109061] io scheduler mq-deadline registered
[00:00:18.823] [ 10.111927] io scheduler kyber registered
[00:00:18.828] [ 10.116916] io scheduler bfq registered
[00:00:18.962] [ 10.250783] ERST DBG: ERST support is disabled.
[00:00:18.985] [ 10.274153] ACPI: \_SB_.GSIF: Enabled at IRQ 21
[00:00:19.031] [ 10.319806] ACPI: \_SB_.GSIH: Enabled at IRQ 23
[00:00:19.057] [ 10.346345] ACPI: \_SB_.GSIE: Enabled at IRQ 20
[00:00:19.111] [ 10.400550] ACPI: \_SB_.GSIG: Enabled at IRQ 22
[00:00:19.193] [ 10.482305] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[00:00:19.232] [ 10.520367] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[00:00:19.576] [ 10.865532] VMware PVSCSI driver - version 1.0.7.0-k
[00:00:19.648] [ 10.937640] ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 6 ports 1.5 Gbps 0x3f impl SATA mode
[00:00:19.652] [ 10.941766] ahci 0000:00:1f.2: flags: 64bit ncq only
[00:00:19.760] [ 11.048851] tsc: Refined TSC clocksource calibration: 1000.001 MHz
[00:00:19.766] [ 11.055109] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0xe6a1810bf3, max_idle_ns: 440795249465 ns
[00:00:19.799] [ 11.087851] clocksource: Switched to clocksource tsc
[00:00:19.881] [ 11.169799] scsi host0: ahci
[00:00:19.988] [ 11.277211] scsi host1: ahci
[00:00:20.017] [ 11.306206] scsi host2: ahci
[00:00:20.045] [ 11.334257] scsi host3: ahci
[00:00:20.075] [ 11.364587] scsi host4: ahci
[00:00:20.108] [ 11.397004] scsi host5: ahci
[00:00:20.120] [ 11.408412] ata1: SATA max UDMA/133 abar m4096@0xfe667000 port 0xfe667100 irq 26
[00:00:20.123] [ 11.412606] ata2: SATA max UDMA/133 abar m4096@0xfe667000 port 0xfe667180 irq 26
[00:00:20.125] [ 11.414278] ata3: SATA max UDMA/133 abar m4096@0xfe667000 port 0xfe667200 irq 26
[00:00:20.127] [ 11.415960] ata4: SATA max UDMA/133 abar m4096@0xfe667000 port 0xfe667280 irq 26
[00:00:20.129] [ 11.418151] ata5: SATA max UDMA/133 abar m4096@0xfe667000 port 0xfe667300 irq 26
[00:00:20.130] [ 11.419634] ata6: SATA max UDMA/133 abar m4096@0xfe667000 port 0xfe667380 irq 26
[00:00:20.157] [ 11.446101] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[00:00:20.194] [ 11.483561] serio: i8042 KBD port at 0x60,0x64 irq 1
[00:00:20.197] [ 11.486750] serio: i8042 AUX port at 0x60,0x64 irq 12
[00:00:20.206] [ 11.495180] rtc_cmos 00:03: RTC can wake from S4
[00:00:20.348] [ 11.636857] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[00:00:20.424] [ 11.712919] rtc_cmos 00:03: registered as rtc0
[00:00:20.435] [ 11.720627] rtc_cmos 00:03: setting system clock to 2024-06-19T15:24:36 UTC (1718810676)
[00:00:20.447] [ 11.736375] rtc_cmos 00:03: alarms up to one day, y3k, 242 bytes nvram, hpet irqs
[00:00:20.452] [ 11.741715] amd_pstate: the _CPC object is not present in SBIOS or ACPI disabled
[00:00:20.470] [ 11.759364] gre: GRE over IPv4 demultiplexor driver
[00:00:20.980] [ 12.268674] ata4: SATA link down (SStatus 0 SControl 300)
[00:00:20.996] [ 12.285724] ata3: SATA link down (SStatus 0 SControl 300)
[00:00:21.002] [ 12.290855] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[00:00:21.035] [ 12.324493] ata1.00: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100
[00:00:21.038] [ 12.327663] ata1.00: 6291456 sectors, multi 16: LBA48 NCQ (depth 32)
[00:00:21.043] [ 12.332263] ata1.00: applying bridge limits
[00:00:21.059] [ 12.348296] ata1.00: configured for UDMA/100
[00:00:21.063] [ 12.351957] ata2: SATA link down (SStatus 0 SControl 300)
[00:00:21.073] [ 12.362357] ata5: SATA link down (SStatus 0 SControl 300)
[00:00:21.204] [ 12.493495] scsi 0:0:0:0: Direct-Access ATA QEMU HARDDISK 2.5+ PQ: 0 ANSI: 5
[00:00:21.497] [ 12.786020] ata6: SATA link down (SStatus 0 SControl 300)
[00:00:21.762] [ 13.051050] NET: Registered PF_INET6 protocol family
[00:00:21.927] [ 13.216192] Segment Routing with IPv6
[00:00:21.930] [ 13.219123] In-situ OAM (IOAM) with IPv6
[00:00:21.976] [ 13.265012] Key type dns_resolver registered
[00:00:21.987] [ 13.276657] IPI shorthand broadcast: enabled
[00:00:22.130] [ 13.419230] sched_clock: Marking stable (13590883621, -179386779)->(13634981159, -223484317)
[00:00:22.757] [ 14.045929] registered taskstats version 1
[00:00:22.782] [ 14.070848] Loading compiled-in X.509 certificates
[00:00:24.148] [ 15.437539] Freeing initrd memory: 8096K
[00:00:26.756] [ 18.045261] Loaded X.509 cert 'alpinelinux.org: Alpine Linux kernel key: d76a695f66ad9cd28f5c22a8508f36e91f521f7a'
[00:00:26.876] [ 18.165403] Key type .fscrypt registered
[00:00:26.877] [ 18.166518] Key type fscrypt-provisioning registered
[00:00:27.690] [ 18.977778] Freeing unused kernel image (initmem) memory: 2696K
[00:00:27.693] [ 18.981887] Write protecting the kernel read-only data: 24576k
[00:00:27.728] [ 19.017032] Freeing unused kernel image (rodata/data gap) memory: 2008K
[00:00:27.736] [ 19.025296] rodata_test: all tests were successful
[00:00:27.740] [ 19.029744] Run /init as init process
[00:00:29.114] [ 20.402933] Alpine Init 3.10.0-r0
[00:00:29.133] Alpine Init 3.10.0-r0
[00:00:29.194] [ 20.483156] Loading boot drivers...
[00:00:29.198] * Loading boot drivers: [ 21.767336] sd 0:0:0:0: [sda] 6291456 512-byte logical blocks: (3.22 GB/3.00 GiB)
[00:00:30.489] [ 21.778637] sd 0:0:0:0: [sda] Write Protect is off
[00:00:30.495] [ 21.784524] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[00:00:30.504] [ 21.793662] sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[00:00:30.683] [ 21.972095] sda: sda1 sda2 sda3
[00:00:30.726] [ 22.014920] sd 0:0:0:0: [sda] Attached SCSI disk
[00:00:31.410] [ 22.699325] ACPI: bus type USB registered
[00:00:31.416] [ 22.705622] usbcore: registered new interface driver usbfs
[00:00:31.419] [ 22.708602] usbcore: registered new interface driver hub
[00:00:31.423] [ 22.711831] usbcore: registered new device driver usb
[00:00:31.614] [ 22.903498] usbcore: registered new interface driver usb-storage
[00:00:34.848] [ 26.137048] loop: module loaded
[00:00:36.469] [ 27.758368] ACPI: bus type drm_connector registered
[00:00:37.371] [ 28.660374] Loading boot drivers: ok.
[00:00:37.376] ok.
[00:00:37.566] [ 28.855604] Mounting root...
[00:00:37.568] * Mounting root: [ 33.195297] ehci-pci 0000:00:1d.7: EHCI Host Controller
[00:00:41.911] [ 33.200465] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
[00:00:41.936] [ 33.225616] ehci-pci 0000:00:1d.7: irq 19, io mem 0xfe666000
[00:00:42.021] [ 33.310557] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[00:00:42.200] [ 33.489410] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[00:00:42.204] [ 33.493057] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:00:42.205] [ 33.494867] usb usb1: Product: EHCI Host Controller
[00:00:42.207] [ 33.496026] usb usb1: Manufacturer: Linux 6.6.33-0-virt ehci_hcd
[00:00:42.208] [ 33.497562] usb usb1: SerialNumber: 0000:00:1d.7
[00:00:42.332] [ 33.621665] hub 1-0:1.0: USB hub found
[00:00:42.389] [ 33.678294] hub 1-0:1.0: 6 ports detected
[00:00:42.745] [ 34.034180] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[00:00:42.746] [ 34.035652] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[00:00:42.749] [ 34.038161] uhci_hcd 0000:00:1d.0: detected 2 ports
[00:00:42.755] [ 34.044678] uhci_hcd 0000:00:1d.0: irq 16, io port 0x0000d160
[00:00:42.774] [ 34.062744] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[00:00:42.775] [ 34.064846] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:00:42.777] [ 34.066412] usb usb2: Product: UHCI Host Controller
[00:00:42.780] [ 34.069056] usb usb2: Manufacturer: Linux 6.6.33-0-virt uhci_hcd
[00:00:42.781] [ 34.070804] usb usb2: SerialNumber: 0000:00:1d.0
[00:00:42.801] [ 34.090546] hub 2-0:1.0: USB hub found
[00:00:42.810] [ 34.099116] hub 2-0:1.0: 2 ports detected
[00:00:42.854] [ 34.141850] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[00:00:42.855] [ 34.144636] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[00:00:42.858] [ 34.147135] uhci_hcd 0000:00:1d.1: detected 2 ports
[00:00:42.861] [ 34.150527] uhci_hcd 0000:00:1d.1: irq 17, io port 0x0000d180
[00:00:42.901] [ 34.190075] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[00:00:42.905] [ 34.193714] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:00:42.907] [ 34.196248] usb usb3: Product: UHCI Host Controller
[00:00:42.908] [ 34.197829] usb usb3: Manufacturer: Linux 6.6.33-0-virt uhci_hcd
[00:00:42.910] [ 34.199633] usb usb3: SerialNumber: 0000:00:1d.1
[00:00:42.929] [ 34.217755] hub 3-0:1.0: USB hub found
[00:00:42.937] [ 34.226224] hub 3-0:1.0: 2 ports detected
[00:00:42.973] [ 34.261474] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[00:00:42.975] [ 34.264765] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[00:00:42.978] [ 34.267135] uhci_hcd 0000:00:1d.2: detected 2 ports
[00:00:42.982] [ 34.271702] uhci_hcd 0000:00:1d.2: irq 18, io port 0x0000d1a0
[00:00:43.017] [ 34.306603] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[00:00:43.019] [ 34.308693] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[00:00:43.023] [ 34.311181] usb usb4: Product: UHCI Host Controller
[00:00:43.025] [ 34.314090] usb usb4: Manufacturer: Linux 6.6.33-0-virt uhci_hcd
[00:00:43.026] [ 34.315804] usb usb4: SerialNumber: 0000:00:1d.2
[00:00:43.045] [ 34.334526] hub 4-0:1.0: USB hub found
[00:00:43.054] [ 34.342951] hub 4-0:1.0: 2 ports detected
[00:01:15.654] [ 66.943229] EXT4-fs (sda3): orphan cleanup on readonly fs
[00:01:15.665] [ 66.952609] EXT4-fs (sda3): mounted filesystem ae7bb8b0-5180-432a-80a5-e4a3065e4684 ro with ordered data mode. Quota mode: none.
[00:01:15.686] [ 66.975069] Mounting root: ok.
[00:01:15.689] ok.
[00:01:18.105]
[00:01:18.186] OpenRC 0.54 is starting up Linux 6.6.33-0-virt (x86_64)
[00:01:18.188]
[00:01:19.173] * /proc is already mounted
[00:01:19.593] * Mounting /run ... [ ok ]
[00:01:20.316] * /run/openrc: creating directory
[00:01:20.434] * /run/lock: creating directory
[00:01:20.439] * /run/lock: correcting owner
[00:01:24.567] [ 75.855931] random: crng init done
[00:01:37.210] * Caching service dependencies ... [ ok ]
[00:01:39.171] * Remounting devtmpfs on /dev ... [ ok ]
[00:01:40.191] * Mounting /dev/mqueue ... [ ok ]
[00:01:44.017] * Mounting security filesystem ... [ ok ]
[00:01:44.330] * Mounting debug filesystem ... [ ok ]
[00:01:44.658] * Mounting persistent storage (pstore) filesystem ... [ ok ]
[00:01:46.199] * Starting busybox mdev ... [ ok ]
[00:01:46.436] * Scanning hardware for mdev ... [ ok ]
[00:02:04.980] * Loading hardware drivers ... [ ok ]
[00:02:53.768] * Loading modules ... [ ok ]
[00:02:58.050] * Setting system clock using the hardware clock [UTC] ... [ ok ]
[00:03:00.889] * Checking local filesystems .../dev/sda3: clean, 40406/128256 files, 268058/512768 blocks
[00:03:01.898] /dev/sda1: clean, 29/76912 files, 54025/307200 blocks
[00:03:02.335] [ ok ]
[00:03:03.981] * Remounting root filesystem read/write ... [ ok ]
[00:03:04.460] * Remounting filesystems ... [ ok ]
[00:03:06.790] * Activating swap devices ... [ ok ]
[00:03:08.835] * Mounting local filesystems ... [ ok ]
[00:03:10.867] * Configuring kernel parameters ... [ ok ]
[00:03:14.385] * Creating user login records ... [ ok ]
[00:03:17.330] * Setting hostname ... [ ok ]
[00:03:19.099] * Starting networking ... * lo ... [ ok ]
[00:03:21.756] * eth0 ...udhcpc: started, v1.36.1
[00:03:23.519] udhcpc: broadcasting discover
[00:03:24.055] udhcpc: broadcasting select for 10.0.2.15, server 10.0.2.2
[00:03:24.150] udhcpc: lease of 10.0.2.15 obtained from 10.0.2.2, lease time 86400
[00:03:26.017] [ ok ]
[00:03:27.641] * Seeding random number generator ... * Seeding 256 bits and crediting
[00:03:27.833] * Saving 256 bits of creditable seed for next boot
[00:03:27.930] [ ok ]
[00:03:29.590] * Starting busybox syslog ... [ ok ]
[00:03:33.443] * Starting busybox acpid ... [ ok ]
[00:03:35.441] * Starting busybox crond ... [ ok ]
[00:03:37.364] * Starting rngd ... [ ok ]
[00:03:48.377] * Starting sshd ... [ ok ]
[00:03:51.459] * Starting vsftpd ... [ ok ]
[00:03:55.096]
[00:03:55.127] Welcome to Alpine Linux 3.20
Kernel 6.6.33-0-virt on an x86_64 (/dev/ttyS0)
[00:03:55.130]
localhost login:
Welcome to Termux!
Community forum: https://termux.com/community
Gitter chat: https://gitter.im/termux/termux
IRC channel: #termux on libera.chat
Working with packages:
* Search packages: pkg search <query>
* Install a package: pkg install <package>
* Upgrade packages: pkg upgrade
Subscribing to additional repositories:
* Root: pkg install root-repo
* X11: pkg install x11-repo
Report issues at https://termux.com/issues
~ $
~ $
~ $ uptime --pretty
up 1 day, 15 hours, 10 minutes
~ $