Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Redroid does not work with a virtio host GPU when docker is within the full system emulator qemu-system-aarch64 #705

Closed
robertkirkman opened this issue Jun 27, 2024 · 10 comments

Comments

@robertkirkman
Copy link

robertkirkman commented Jun 27, 2024

Describe the bug
I have tried a lot of things to try to get the aarch64 redroid to run within qemu-system-aarch64 that is running on an amd64 hardware host, and trying to customize the distro running docker within QEMU until it is able to run redroid, but I haven't ever been successful. EDIT: I was successful today after trying again, so now it only has some problems like host GPU mode not working

If this isn't a supported use-case that is ok. I just feel that someday, it will work, because my specific qemu-system-aarch64 instance has stronger performance than average due to the host having strong hardware, Ryzen 9 5950X and Radeon RX 5700 XT, which are utilized by the -smp 32 and -device virtio-gpu-gl-pci arguments to qemu-system-aarch64:

QEMU invocation
qemu-system-aarch64 -M virt \
                    -m 16384 \
                    -cpu cortex-a72 \
                    -smp 32 \
                    -drive if=pflash,media=disk,format=raw,cache=writethrough,file=flash0.img \
                    -drive if=pflash,media=disk,format=raw,cache=writethrough,file=flash1.img \
                    -drive if=none,file=archarmvm.qcow2,format=qcow2,id=hd0 \
                    -device virtio-scsi-pci,id=scsi0 \
                    -device scsi-hd,bus=scsi0.0,drive=hd0,bootindex=1 \
                    -nic user,model=virtio-net-pci,hostfwd=tcp::2222-:22 \
                    -device virtio-rng-device \
                    -device virtio-balloon-device \
                    -device virtio-serial-device \
                    -device virtio-tablet-device \
                    -object cryptodev-backend-builtin,id=cryptodev0 \
                    -device virtio-crypto-pci,id=crypto0,cryptodev=cryptodev0  \
                    -device virtio-gpu-gl-pci,xres=1920,yres=1080 \
                    -display sdl,gl=on,show-cursor=on \
                    -device qemu-xhci,id=xhci \
                    -device usb-host,bus=xhci.0,hostdevice=/dev/bus/usb/003/008 \
                    -device usb-host,bus=xhci.0,hostdevice=/dev/bus/usb/003/009

The way the docker service runner, Arch Linux ARM, is installed within qemu-system-aarch64 is documented here. It is capable of running many aarch64 GNU/Linux apps with usable framerate, and is also capable of running other docker containers besides redroid. That is why I hope that performance might be sufficient to run redroid.

I enabled the necessary kernel flags within the QEMU guest like this:

Arch Linux ARM custom kernel steps
sudo pacman -S base-devel git
git clone https://github.com/archlinuxarm/PKGBUILDs.git
cd PKGBUILDs/core/linux-aarch64/
git apply -v << 'EOF'
--- a/core/linux-aarch64/PKGBUILD
+++ b/core/linux-aarch64/PKGBUILD
@@ -28,7 +28,7 @@ md5sums=('b9828ed78dae306e3d90643cd5cdb8f1'
          'f65db321ef86dcccf3d27d26023c6438'
          '7b08a199a97e3e2288e5c03d8e8ded2d'
          'c9d4e392555b77034e24e9f87c5ff0b3'
-         '22283f60f34dddb1d4b6748482b6c86c'
+         'SKIP'
          '7c97cf141750ad810235b1ad06eb9f75'
          '61c5ff73c136ed07a7aadbf58db3d96a'
          '584777ae88bce2c5659960151b64c7d8'
--- a/core/linux-aarch64/config
+++ b/core/linux-aarch64/config
@@ -8701,11 +8701,13 @@ CONFIG_DMA_ENGINE_RAID=y
 #
 CONFIG_SYNC_FILE=y
 # CONFIG_SW_SYNC is not set
-# CONFIG_UDMABUF is not set
+CONFIG_UDMABUF=y
 # CONFIG_DMABUF_MOVE_NOTIFY is not set
 # CONFIG_DMABUF_DEBUG is not set
 # CONFIG_DMABUF_SELFTESTS is not set
-# CONFIG_DMABUF_HEAPS is not set
+CONFIG_DMABUF_HEAPS=y
+CONFIG_DMABUF_HEAPS_SYSTEM=y
+CONFIG_DMABUF_HEAPS_CMA=y
 # CONFIG_DMABUF_SYSFS_STATS is not set
 # end of DMABUF options
 
@@ -10565,7 +10567,10 @@ CONFIG_RAS=y
 #
 # Android
 #
-# CONFIG_ANDROID_BINDER_IPC is not set
+CONFIG_ANDROID_BINDER_IPC=y
+CONFIG_ANDROID_BINDERFS=y
+CONFIG_ANDROID_BINDER_DEVICES="binder,hwbinder,vndbinder"
+CONFIG_ANDROID_BINDER_IPC_SELFTEST=y
 # end of Android
 
 CONFIG_LIBNVDIMM=y
EOF
# Emulator can compile the kernel for itself quickly and not too slow!
echo 'MAKEFLAGS="-j32"' | sudo tee -a /etc/makepkg.conf
makepkg -s
sudo pacman -U linux-aarch64-6.9.6-1-aarch64.pkg.tar.xz linux-aarch64-headers-6.9.6-1-aarch64.pkg.tar.xz
sudo reboot

Then I am trying to run redroid like this:

sudo docker run -itd --privileged -v ~/redroid-data:/data -p 5555:5555 -p 8022:8022 --name redroid redroid/redroid:14.0.0_64only-latest androidboot.use_memfd=true

Then adb connect localhost and adb devices -l shows offline.

make sure the required kernel modules present

  • [✅] grep binder /proc/filesystems
  • [❌] grep ashmem /proc/misc (optional)

Collect debug logs
curl -fsSL https://raw.githubusercontent.com/remote-android/redroid-doc/master/debug.sh | sudo bash -s -- redroid

See comment, and kernel config omitted because it is too big. My kernel config is this but with the patch described above applied.

Screenshots
If applicable, add screenshots to help explain your problem.
image
Single-thread performance gets 0.26 in this benchmark, which is comparable to the score of an older smartphone (Samsung Galaxy S III Sprint SPH-L710) - usable, and not frozen.
20240626_210028

For this reason, I hope my QEMU has sufficient performance to run redroid, and the problem must be caused by a small detail somewhere, which can hopefully be solved.

@robertkirkman
Copy link
Author

Inside of redroid-debug.oXCPXh9W.tgz
[
    {
        "Id": "e21b0b2ddb7e25ca985712843538a76178d7233debb950c6b0c5e75feb498df3",
        "Created": "2024-06-26T22:51:28.797790511Z",
        "Path": "/init",
        "Args": [
            "qemu=1",
            "androidboot.hardware=redroid",
            "androidboot.use_memfd=true"
        ],
        "State": {
            "Status": "running",
            "Running": true,
            "Paused": false,
            "Restarting": false,
            "OOMKilled": false,
            "Dead": false,
            "Pid": 1373,
            "ExitCode": 0,
            "Error": "",
            "StartedAt": "2024-06-26T23:47:55.802954957Z",
            "FinishedAt": "2024-06-26T23:43:05.84247304Z"
        },
        "Image": "sha256:0595157f43bf3f0f20f3a1264220ced72fa5f1ed4385a1a6d3ebe059a5629700",
        "ResolvConfPath": "/var/lib/docker/containers/e21b0b2ddb7e25ca985712843538a76178d7233debb950c6b0c5e75feb498df3/resolv.conf",
        "HostnamePath": "/var/lib/docker/containers/e21b0b2ddb7e25ca985712843538a76178d7233debb950c6b0c5e75feb498df3/hostname",
        "HostsPath": "/var/lib/docker/containers/e21b0b2ddb7e25ca985712843538a76178d7233debb950c6b0c5e75feb498df3/hosts",
        "LogPath": "/var/lib/docker/containers/e21b0b2ddb7e25ca985712843538a76178d7233debb950c6b0c5e75feb498df3/e21b0b2ddb7e25ca985712843538a76178d7233debb950c6b0c5e75feb498df3-json.log",
        "Name": "/redroid",
        "RestartCount": 0,
        "Driver": "overlay2",
        "Platform": "linux",
        "MountLabel": "",
        "ProcessLabel": "",
        "AppArmorProfile": "",
        "ExecIDs": null,
        "HostConfig": {
            "Binds": [
                "/home/tacokoneko/redroid-data:/data"
            ],
            "ContainerIDFile": "",
            "LogConfig": {
                "Type": "json-file",
                "Config": {}
            },
            "NetworkMode": "bridge",
            "PortBindings": {
                "5555/tcp": [
                    {
                        "HostIp": "",
                        "HostPort": "5555"
                    }
                ],
                "8022/tcp": [
                    {
                        "HostIp": "",
                        "HostPort": "8022"
                    }
                ]
            },
            "RestartPolicy": {
                "Name": "no",
                "MaximumRetryCount": 0
            },
            "AutoRemove": false,
            "VolumeDriver": "",
            "VolumesFrom": null,
            "ConsoleSize": [
                94,
                122
            ],
            "CapAdd": null,
            "CapDrop": null,
            "CgroupnsMode": "private",
            "Dns": [],
            "DnsOptions": [],
            "DnsSearch": [],
            "ExtraHosts": null,
            "GroupAdd": null,
            "IpcMode": "private",
            "Cgroup": "",
            "Links": null,
            "OomScoreAdj": 0,
            "PidMode": "",
            "Privileged": true,
            "PublishAllPorts": false,
            "ReadonlyRootfs": false,
            "SecurityOpt": [
                "label=disable"
            ],
            "UTSMode": "",
            "UsernsMode": "",
            "ShmSize": 67108864,
            "Runtime": "runc",
            "Isolation": "",
            "CpuShares": 0,
            "Memory": 0,
            "NanoCpus": 0,
            "CgroupParent": "",
            "BlkioWeight": 0,
            "BlkioWeightDevice": [],
            "BlkioDeviceReadBps": [],
            "BlkioDeviceWriteBps": [],
            "BlkioDeviceReadIOps": [],
            "BlkioDeviceWriteIOps": [],
            "CpuPeriod": 0,
            "CpuQuota": 0,
            "CpuRealtimePeriod": 0,
            "CpuRealtimeRuntime": 0,
            "CpusetCpus": "",
            "CpusetMems": "",
            "Devices": [],
            "DeviceCgroupRules": null,
            "DeviceRequests": null,
            "MemoryReservation": 0,
            "MemorySwap": 0,
            "MemorySwappiness": null,
            "OomKillDisable": null,
            "PidsLimit": null,
            "Ulimits": [],
            "CpuCount": 0,
            "CpuPercent": 0,
            "IOMaximumIOps": 0,
            "IOMaximumBandwidth": 0,
            "MaskedPaths": null,
            "ReadonlyPaths": null
        },
        "GraphDriver": {
            "Data": {
                "LowerDir": "/var/lib/docker/overlay2/21948b35a20ae9eee690d5b528dac42cd724a467e8e18ed46b5c607d5b27ae7a-init/diff:/var/lib/docker/overlay2/c501b0b61aaedd9888882b55abde3f424a2250a9c4546a4e9a41d018f04fbf1c/diff",
                "MergedDir": "/var/lib/docker/overlay2/21948b35a20ae9eee690d5b528dac42cd724a467e8e18ed46b5c607d5b27ae7a/merged",
                "UpperDir": "/var/lib/docker/overlay2/21948b35a20ae9eee690d5b528dac42cd724a467e8e18ed46b5c607d5b27ae7a/diff",
                "WorkDir": "/var/lib/docker/overlay2/21948b35a20ae9eee690d5b528dac42cd724a467e8e18ed46b5c607d5b27ae7a/work"
            },
            "Name": "overlay2"
        },
        "Mounts": [
            {
                "Type": "bind",
                "Source": "/home/tacokoneko/redroid-data",
                "Destination": "/data",
                "Mode": "",
                "RW": true,
                "Propagation": "rprivate"
            }
        ],
        "Config": {
            "Hostname": "e21b0b2ddb7e",
            "Domainname": "",
            "User": "",
            "AttachStdin": false,
            "AttachStdout": false,
            "AttachStderr": false,
            "ExposedPorts": {
                "5555/tcp": {},
                "8022/tcp": {}
            },
            "Tty": true,
            "OpenStdin": true,
            "StdinOnce": false,
            "Env": null,
            "Cmd": [
                "androidboot.use_memfd=true"
            ],
            "Image": "redroid/redroid:14.0.0_64only-latest",
            "Volumes": null,
            "WorkingDir": "",
            "Entrypoint": [
                "/init",
                "qemu=1",
                "androidboot.hardware=redroid"
            ],
            "OnBuild": null,
            "Labels": {
                "io.buildah.version": "1.33.1"
            }
        },
        "NetworkSettings": {
            "Bridge": "",
            "SandboxID": "1225db94788a46ea168fd0834464580552159d144f6c821dc43a03d3d6f1e945",
            "SandboxKey": "/var/run/docker/netns/1225db94788a",
            "Ports": {
                "5555/tcp": [
                    {
                        "HostIp": "0.0.0.0",
                        "HostPort": "5555"
                    },
                    {
                        "HostIp": "::",
                        "HostPort": "5555"
                    }
                ],
                "8022/tcp": [
                    {
                        "HostIp": "0.0.0.0",
                        "HostPort": "8022"
                    },
                    {
                        "HostIp": "::",
                        "HostPort": "8022"
                    }
                ]
            },
            "HairpinMode": false,
            "LinkLocalIPv6Address": "",
            "LinkLocalIPv6PrefixLen": 0,
            "SecondaryIPAddresses": null,
            "SecondaryIPv6Addresses": null,
            "EndpointID": "44ee909d0e65f8e29d39d88d202851637526cc31889db8ae82e39571fa5d42d2",
            "Gateway": "10.10.0.1",
            "GlobalIPv6Address": "",
            "GlobalIPv6PrefixLen": 0,
            "IPAddress": "10.10.0.2",
            "IPPrefixLen": 24,
            "IPv6Gateway": "",
            "MacAddress": "02:42:0a:0a:00:02",
            "Networks": {
                "bridge": {
                    "IPAMConfig": null,
                    "Links": null,
                    "Aliases": null,
                    "MacAddress": "02:42:0a:0a:00:02",
                    "NetworkID": "72d9b8654319ac98c74844ee9e840d36913675dc10611d98cb8f624a772054b8",
                    "EndpointID": "44ee909d0e65f8e29d39d88d202851637526cc31889db8ae82e39571fa5d42d2",
                    "Gateway": "10.10.0.1",
                    "IPAddress": "10.10.0.2",
                    "IPPrefixLen": 24,
                    "IPv6Gateway": "",
                    "GlobalIPv6Address": "",
                    "GlobalIPv6PrefixLen": 0,
                    "DriverOpts": null,
                    "DNSNames": null
                }
            }
        }
    }
]
[Wed Jun 26 18:46:19 2024] Booting Linux on physical CPU 0x0000000000 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Linux version 6.9.0-1-aarch64-ARCH (tacokoneko@archarm) (gcc (GCC) 14.1.1 20240507, GNU ld (GNU Binutils) 2.42.0) #2 SMP PREEMPT_DYNAMIC Wed Jun 26 15:54:36 CDT 2024
[Wed Jun 26 18:46:19 2024] efi: EFI v2.7 by EDK II
[Wed Jun 26 18:46:19 2024] efi: SMBIOS 3.0=0x43bed0000 MEMATTR=0x43a83a018 ACPI 2.0=0x438430018 INITRD=0x43842ff18 RNG=0x43843fd18 MEMRESERVE=0x43842ff98 
[Wed Jun 26 18:46:19 2024] random: crng init done
[Wed Jun 26 18:46:19 2024] ACPI: Early table checksum verification disabled
[Wed Jun 26 18:46:19 2024] ACPI: RSDP 0x0000000438430018 000024 (v02 BOCHS )
[Wed Jun 26 18:46:19 2024] ACPI: XSDT 0x000000043843FE98 00006C (v01 BOCHS  BXPC     00000001      01000013)
[Wed Jun 26 18:46:19 2024] ACPI: FACP 0x000000043843FA98 000114 (v06 BOCHS  BXPC     00000001 BXPC 00000001)
[Wed Jun 26 18:46:19 2024] ACPI: DSDT 0x0000000438437518 0017CE (v02 BOCHS  BXPC     00000001 BXPC 00000001)
[Wed Jun 26 18:46:19 2024] ACPI: APIC 0x000000043843D898 000A68 (v04 BOCHS  BXPC     00000001 BXPC 00000001)
[Wed Jun 26 18:46:19 2024] ACPI: PPTT 0x000000043843E998 0002B8 (v02 BOCHS  BXPC     00000001 BXPC 00000001)
[Wed Jun 26 18:46:19 2024] ACPI: GTDT 0x000000043843F818 000060 (v02 BOCHS  BXPC     00000001 BXPC 00000001)
[Wed Jun 26 18:46:19 2024] ACPI: MCFG 0x000000043843FF98 00003C (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[Wed Jun 26 18:46:19 2024] ACPI: SPCR 0x000000043843F918 000050 (v02 BOCHS  BXPC     00000001 BXPC 00000001)
[Wed Jun 26 18:46:19 2024] ACPI: DBG2 0x000000043843F998 000057 (v00 BOCHS  BXPC     00000001 BXPC 00000001)
[Wed Jun 26 18:46:19 2024] ACPI: IORT 0x000000043843FC18 000080 (v03 BOCHS  BXPC     00000001 BXPC 00000001)
[Wed Jun 26 18:46:19 2024] ACPI: BGRT 0x000000043843FA18 000038 (v01 INTEL  EDK2     00000002      01000013)
[Wed Jun 26 18:46:19 2024] ACPI: SPCR: console: pl011,mmio32,0x9000000,9600
[Wed Jun 26 18:46:19 2024] Zone ranges:
[Wed Jun 26 18:46:19 2024]   DMA      [mem 0x0000000040000000-0x00000000ffffffff]
[Wed Jun 26 18:46:19 2024]   DMA32    empty
[Wed Jun 26 18:46:19 2024]   Normal   [mem 0x0000000100000000-0x000000043fffffff]
[Wed Jun 26 18:46:19 2024] Movable zone start for each node
[Wed Jun 26 18:46:19 2024] Early memory node ranges
[Wed Jun 26 18:46:19 2024]   node   0: [mem 0x0000000040000000-0x000000043843ffff]
[Wed Jun 26 18:46:19 2024]   node   0: [mem 0x0000000438440000-0x000000043872ffff]
[Wed Jun 26 18:46:19 2024]   node   0: [mem 0x0000000438730000-0x000000043bbfffff]
[Wed Jun 26 18:46:19 2024]   node   0: [mem 0x000000043bc00000-0x000000043bfdffff]
[Wed Jun 26 18:46:19 2024]   node   0: [mem 0x000000043bfe0000-0x000000043fffffff]
[Wed Jun 26 18:46:19 2024] Initmem setup node 0 [mem 0x0000000040000000-0x000000043fffffff]
[Wed Jun 26 18:46:19 2024] cma: Reserved 64 MiB at 0x00000000fc000000 on node -1
[Wed Jun 26 18:46:19 2024] psci: probing for conduit method from ACPI.
[Wed Jun 26 18:46:19 2024] psci: PSCIv1.1 detected in firmware.
[Wed Jun 26 18:46:19 2024] psci: Using standard PSCI v0.2 function IDs
[Wed Jun 26 18:46:19 2024] psci: Trusted OS migration not required
[Wed Jun 26 18:46:19 2024] psci: SMC Calling Convention v1.0
[Wed Jun 26 18:46:19 2024] percpu: Embedded 24 pages/cpu s59880 r8192 d30232 u98304
[Wed Jun 26 18:46:19 2024] pcpu-alloc: s59880 r8192 d30232 u98304 alloc=24*4096
[Wed Jun 26 18:46:19 2024] pcpu-alloc: [0] 00 [0] 01 [0] 02 [0] 03 [0] 04 [0] 05 [0] 06 [0] 07 
[Wed Jun 26 18:46:19 2024] pcpu-alloc: [0] 08 [0] 09 [0] 10 [0] 11 [0] 12 [0] 13 [0] 14 [0] 15 
[Wed Jun 26 18:46:19 2024] pcpu-alloc: [0] 16 [0] 17 [0] 18 [0] 19 [0] 20 [0] 21 [0] 22 [0] 23 
[Wed Jun 26 18:46:19 2024] pcpu-alloc: [0] 24 [0] 25 [0] 26 [0] 27 [0] 28 [0] 29 [0] 30 [0] 31 
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU0
[Wed Jun 26 18:46:19 2024] CPU features: detected: GIC system register CPU interface
[Wed Jun 26 18:46:19 2024] CPU features: detected: Spectre-v2
[Wed Jun 26 18:46:19 2024] CPU features: detected: Spectre-v4
[Wed Jun 26 18:46:19 2024] CPU features: detected: Spectre-BHB
[Wed Jun 26 18:46:19 2024] CPU features: detected: ARM erratum 1742098
[Wed Jun 26 18:46:19 2024] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[Wed Jun 26 18:46:19 2024] alternatives: applying boot alternatives
[Wed Jun 26 18:46:19 2024] Kernel command line: root=UUID=b7d1452f-cf51-4ce4-ad05-fbe5ced9ca00 rw initrd=\initramfs-linux.img
[Wed Jun 26 18:46:19 2024] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[Wed Jun 26 18:46:19 2024] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[Wed Jun 26 18:46:19 2024] Built 1 zonelists, mobility grouping on.  Total pages: 4128768
[Wed Jun 26 18:46:19 2024] mem auto-init: stack:off, heap alloc:off, heap free:off
[Wed Jun 26 18:46:19 2024] software IO TLB: area num 32.
[Wed Jun 26 18:46:19 2024] software IO TLB: mapped [mem 0x00000000f8000000-0x00000000fc000000] (64MB)
[Wed Jun 26 18:46:19 2024] Memory: 16262220K/16777216K available (20032K kernel code, 4598K rwdata, 11008K rodata, 8448K init, 998K bss, 449460K reserved, 65536K cma-reserved)
[Wed Jun 26 18:46:19 2024] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[Wed Jun 26 18:46:19 2024] Dynamic Preempt: full
[Wed Jun 26 18:46:19 2024] rcu: Preemptible hierarchical RCU implementation.
[Wed Jun 26 18:46:19 2024] rcu: 	RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=32.
[Wed Jun 26 18:46:19 2024] 	Trampoline variant of Tasks RCU enabled.
[Wed Jun 26 18:46:19 2024] 	Tracing variant of Tasks RCU enabled.
[Wed Jun 26 18:46:19 2024] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[Wed Jun 26 18:46:19 2024] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[Wed Jun 26 18:46:19 2024] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
[Wed Jun 26 18:46:19 2024] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
[Wed Jun 26 18:46:19 2024] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[Wed Jun 26 18:46:19 2024] GICv3: 256 SPIs implemented
[Wed Jun 26 18:46:19 2024] GICv3: 0 Extended SPIs implemented
[Wed Jun 26 18:46:19 2024] Root IRQ handler: gic_handle_irq
[Wed Jun 26 18:46:19 2024] GICv3: GICv3 features: 16 PPIs
[Wed Jun 26 18:46:19 2024] GICv3: CPU0: found redistributor 0 region 0:0x00000000080a0000
[Wed Jun 26 18:46:19 2024] ITS [mem 0x08080000-0x0809ffff]
[Wed Jun 26 18:46:19 2024] ITS@0x0000000008080000: allocated 8192 Devices @100130000 (indirect, esz 8, psz 64K, shr 1)
[Wed Jun 26 18:46:19 2024] ITS@0x0000000008080000: allocated 8192 Interrupt Collections @100140000 (flat, esz 8, psz 64K, shr 1)
[Wed Jun 26 18:46:19 2024] GICv3: using LPI property table @0x0000000100150000
[Wed Jun 26 18:46:19 2024] GICv3: CPU0: using allocated LPI pending table @0x0000000100170000
[Wed Jun 26 18:46:19 2024] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[Wed Jun 26 18:46:19 2024] arch_timer: cp15 timer(s) running at 62.50MHz (virt).
[Wed Jun 26 18:46:19 2024] clocksource: arch_sys_counter: mask: 0x1ffffffffffffff max_cycles: 0x1cd42e208c, max_idle_ns: 881590405314 ns
[Wed Jun 26 18:46:19 2024] sched_clock: 57 bits at 63MHz, resolution 16ns, wraps every 4398046511096ns
[Wed Jun 26 18:46:19 2024] Console: colour dummy device 80x25
[Wed Jun 26 18:46:19 2024] ACPI: Core revision 20230628
[Wed Jun 26 18:46:19 2024] Calibrating delay loop (skipped), value calculated using timer frequency.. 125.00 BogoMIPS (lpj=62500)
[Wed Jun 26 18:46:19 2024] pid_max: default: 32768 minimum: 301
[Wed Jun 26 18:46:19 2024] LSM: initializing lsm=capability,yama
[Wed Jun 26 18:46:19 2024] Yama: becoming mindful.
[Wed Jun 26 18:46:19 2024] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[Wed Jun 26 18:46:19 2024] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[Wed Jun 26 18:46:19 2024] rcu: Hierarchical SRCU implementation.
[Wed Jun 26 18:46:19 2024] rcu: 	Max phase no-delay instances is 400.
[Wed Jun 26 18:46:19 2024] Platform MSI: ITS@0x8080000 domain created
[Wed Jun 26 18:46:19 2024] PCI/MSI: ITS@0x8080000 domain created
[Wed Jun 26 18:46:19 2024] fsl-mc MSI: ITS@0x8080000 domain created
[Wed Jun 26 18:46:19 2024] Remapping and enabling EFI services.
[Wed Jun 26 18:46:19 2024] smp: Bringing up secondary CPUs ...
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU1
[Wed Jun 26 18:46:19 2024] GICv3: CPU1: found redistributor 1 region 0:0x00000000080c0000
[Wed Jun 26 18:46:19 2024] GICv3: CPU1: using allocated LPI pending table @0x0000000100180000
[Wed Jun 26 18:46:19 2024] CPU1: Booted secondary processor 0x0000000001 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU2
[Wed Jun 26 18:46:19 2024] GICv3: CPU2: found redistributor 2 region 0:0x00000000080e0000
[Wed Jun 26 18:46:19 2024] GICv3: CPU2: using allocated LPI pending table @0x0000000100190000
[Wed Jun 26 18:46:19 2024] CPU2: Booted secondary processor 0x0000000002 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU3
[Wed Jun 26 18:46:19 2024] GICv3: CPU3: found redistributor 3 region 0:0x0000000008100000
[Wed Jun 26 18:46:19 2024] GICv3: CPU3: using allocated LPI pending table @0x00000001001a0000
[Wed Jun 26 18:46:19 2024] CPU3: Booted secondary processor 0x0000000003 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU4
[Wed Jun 26 18:46:19 2024] GICv3: CPU4: found redistributor 4 region 0:0x0000000008120000
[Wed Jun 26 18:46:19 2024] GICv3: CPU4: using allocated LPI pending table @0x00000001001b0000
[Wed Jun 26 18:46:19 2024] CPU4: Booted secondary processor 0x0000000004 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU5
[Wed Jun 26 18:46:19 2024] GICv3: CPU5: found redistributor 5 region 0:0x0000000008140000
[Wed Jun 26 18:46:19 2024] GICv3: CPU5: using allocated LPI pending table @0x00000001001c0000
[Wed Jun 26 18:46:19 2024] CPU5: Booted secondary processor 0x0000000005 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU6
[Wed Jun 26 18:46:19 2024] GICv3: CPU6: found redistributor 6 region 0:0x0000000008160000
[Wed Jun 26 18:46:19 2024] GICv3: CPU6: using allocated LPI pending table @0x00000001001d0000
[Wed Jun 26 18:46:19 2024] CPU6: Booted secondary processor 0x0000000006 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU7
[Wed Jun 26 18:46:19 2024] GICv3: CPU7: found redistributor 7 region 0:0x0000000008180000
[Wed Jun 26 18:46:19 2024] GICv3: CPU7: using allocated LPI pending table @0x00000001001e0000
[Wed Jun 26 18:46:19 2024] CPU7: Booted secondary processor 0x0000000007 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU8
[Wed Jun 26 18:46:19 2024] GICv3: CPU8: found redistributor 8 region 0:0x00000000081a0000
[Wed Jun 26 18:46:19 2024] GICv3: CPU8: using allocated LPI pending table @0x00000001001f0000
[Wed Jun 26 18:46:19 2024] CPU8: Booted secondary processor 0x0000000008 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU9
[Wed Jun 26 18:46:19 2024] GICv3: CPU9: found redistributor 9 region 0:0x00000000081c0000
[Wed Jun 26 18:46:19 2024] GICv3: CPU9: using allocated LPI pending table @0x0000000100200000
[Wed Jun 26 18:46:19 2024] CPU9: Booted secondary processor 0x0000000009 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU10
[Wed Jun 26 18:46:19 2024] GICv3: CPU10: found redistributor a region 0:0x00000000081e0000
[Wed Jun 26 18:46:19 2024] GICv3: CPU10: using allocated LPI pending table @0x0000000100210000
[Wed Jun 26 18:46:19 2024] CPU10: Booted secondary processor 0x000000000a [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU11
[Wed Jun 26 18:46:19 2024] GICv3: CPU11: found redistributor b region 0:0x0000000008200000
[Wed Jun 26 18:46:19 2024] GICv3: CPU11: using allocated LPI pending table @0x0000000100220000
[Wed Jun 26 18:46:19 2024] CPU11: Booted secondary processor 0x000000000b [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU12
[Wed Jun 26 18:46:19 2024] GICv3: CPU12: found redistributor c region 0:0x0000000008220000
[Wed Jun 26 18:46:19 2024] GICv3: CPU12: using allocated LPI pending table @0x0000000100230000
[Wed Jun 26 18:46:19 2024] CPU12: Booted secondary processor 0x000000000c [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU13
[Wed Jun 26 18:46:19 2024] GICv3: CPU13: found redistributor d region 0:0x0000000008240000
[Wed Jun 26 18:46:19 2024] GICv3: CPU13: using allocated LPI pending table @0x0000000100240000
[Wed Jun 26 18:46:19 2024] CPU13: Booted secondary processor 0x000000000d [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU14
[Wed Jun 26 18:46:19 2024] GICv3: CPU14: found redistributor e region 0:0x0000000008260000
[Wed Jun 26 18:46:19 2024] GICv3: CPU14: using allocated LPI pending table @0x0000000100250000
[Wed Jun 26 18:46:19 2024] CPU14: Booted secondary processor 0x000000000e [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU15
[Wed Jun 26 18:46:19 2024] GICv3: CPU15: found redistributor f region 0:0x0000000008280000
[Wed Jun 26 18:46:19 2024] GICv3: CPU15: using allocated LPI pending table @0x0000000100260000
[Wed Jun 26 18:46:19 2024] CPU15: Booted secondary processor 0x000000000f [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU16
[Wed Jun 26 18:46:19 2024] GICv3: CPU16: found redistributor 100 region 0:0x00000000082a0000
[Wed Jun 26 18:46:19 2024] GICv3: CPU16: using allocated LPI pending table @0x0000000100270000
[Wed Jun 26 18:46:19 2024] CPU16: Booted secondary processor 0x0000000100 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU17
[Wed Jun 26 18:46:19 2024] GICv3: CPU17: found redistributor 101 region 0:0x00000000082c0000
[Wed Jun 26 18:46:19 2024] GICv3: CPU17: using allocated LPI pending table @0x0000000100280000
[Wed Jun 26 18:46:19 2024] CPU17: Booted secondary processor 0x0000000101 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU18
[Wed Jun 26 18:46:19 2024] GICv3: CPU18: found redistributor 102 region 0:0x00000000082e0000
[Wed Jun 26 18:46:19 2024] GICv3: CPU18: using allocated LPI pending table @0x0000000100290000
[Wed Jun 26 18:46:19 2024] CPU18: Booted secondary processor 0x0000000102 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU19
[Wed Jun 26 18:46:19 2024] GICv3: CPU19: found redistributor 103 region 0:0x0000000008300000
[Wed Jun 26 18:46:19 2024] GICv3: CPU19: using allocated LPI pending table @0x00000001002a0000
[Wed Jun 26 18:46:19 2024] CPU19: Booted secondary processor 0x0000000103 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU20
[Wed Jun 26 18:46:19 2024] GICv3: CPU20: found redistributor 104 region 0:0x0000000008320000
[Wed Jun 26 18:46:19 2024] GICv3: CPU20: using allocated LPI pending table @0x00000001002b0000
[Wed Jun 26 18:46:19 2024] CPU20: Booted secondary processor 0x0000000104 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU21
[Wed Jun 26 18:46:19 2024] GICv3: CPU21: found redistributor 105 region 0:0x0000000008340000
[Wed Jun 26 18:46:19 2024] GICv3: CPU21: using allocated LPI pending table @0x00000001002c0000
[Wed Jun 26 18:46:19 2024] CPU21: Booted secondary processor 0x0000000105 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU22
[Wed Jun 26 18:46:19 2024] GICv3: CPU22: found redistributor 106 region 0:0x0000000008360000
[Wed Jun 26 18:46:19 2024] GICv3: CPU22: using allocated LPI pending table @0x00000001002d0000
[Wed Jun 26 18:46:19 2024] CPU22: Booted secondary processor 0x0000000106 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU23
[Wed Jun 26 18:46:19 2024] GICv3: CPU23: found redistributor 107 region 0:0x0000000008380000
[Wed Jun 26 18:46:19 2024] GICv3: CPU23: using allocated LPI pending table @0x00000001002e0000
[Wed Jun 26 18:46:19 2024] CPU23: Booted secondary processor 0x0000000107 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU24
[Wed Jun 26 18:46:19 2024] GICv3: CPU24: found redistributor 108 region 0:0x00000000083a0000
[Wed Jun 26 18:46:19 2024] GICv3: CPU24: using allocated LPI pending table @0x00000001002f0000
[Wed Jun 26 18:46:19 2024] CPU24: Booted secondary processor 0x0000000108 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU25
[Wed Jun 26 18:46:19 2024] GICv3: CPU25: found redistributor 109 region 0:0x00000000083c0000
[Wed Jun 26 18:46:19 2024] GICv3: CPU25: using allocated LPI pending table @0x0000000100300000
[Wed Jun 26 18:46:19 2024] CPU25: Booted secondary processor 0x0000000109 [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU26
[Wed Jun 26 18:46:19 2024] GICv3: CPU26: found redistributor 10a region 0:0x00000000083e0000
[Wed Jun 26 18:46:19 2024] GICv3: CPU26: using allocated LPI pending table @0x0000000100310000
[Wed Jun 26 18:46:19 2024] CPU26: Booted secondary processor 0x000000010a [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU27
[Wed Jun 26 18:46:19 2024] GICv3: CPU27: found redistributor 10b region 0:0x0000000008400000
[Wed Jun 26 18:46:19 2024] GICv3: CPU27: using allocated LPI pending table @0x0000000100320000
[Wed Jun 26 18:46:19 2024] CPU27: Booted secondary processor 0x000000010b [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU28
[Wed Jun 26 18:46:19 2024] GICv3: CPU28: found redistributor 10c region 0:0x0000000008420000
[Wed Jun 26 18:46:19 2024] GICv3: CPU28: using allocated LPI pending table @0x0000000100330000
[Wed Jun 26 18:46:19 2024] CPU28: Booted secondary processor 0x000000010c [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU29
[Wed Jun 26 18:46:19 2024] GICv3: CPU29: found redistributor 10d region 0:0x0000000008440000
[Wed Jun 26 18:46:19 2024] GICv3: CPU29: using allocated LPI pending table @0x0000000100340000
[Wed Jun 26 18:46:19 2024] CPU29: Booted secondary processor 0x000000010d [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU30
[Wed Jun 26 18:46:19 2024] GICv3: CPU30: found redistributor 10e region 0:0x0000000008460000
[Wed Jun 26 18:46:19 2024] GICv3: CPU30: using allocated LPI pending table @0x0000000100350000
[Wed Jun 26 18:46:19 2024] CPU30: Booted secondary processor 0x000000010e [0x410fd083]
[Wed Jun 26 18:46:19 2024] Detected PIPT I-cache on CPU31
[Wed Jun 26 18:46:19 2024] GICv3: CPU31: found redistributor 10f region 0:0x0000000008480000
[Wed Jun 26 18:46:19 2024] GICv3: CPU31: using allocated LPI pending table @0x0000000100360000
[Wed Jun 26 18:46:19 2024] CPU31: Booted secondary processor 0x000000010f [0x410fd083]
[Wed Jun 26 18:46:19 2024] smp: Brought up 1 node, 32 CPUs
[Wed Jun 26 18:46:19 2024] SMP: Total of 32 processors activated.
[Wed Jun 26 18:46:19 2024] CPU: All CPU(s) started at EL1
[Wed Jun 26 18:46:19 2024] CPU features: detected: 32-bit EL0 Support
[Wed Jun 26 18:46:19 2024] CPU features: detected: 32-bit EL1 Support
[Wed Jun 26 18:46:19 2024] CPU features: detected: CRC32 instructions
[Wed Jun 26 18:46:19 2024] alternatives: applying system-wide alternatives
[Wed Jun 26 18:46:19 2024] devtmpfs: initialized
[Wed Jun 26 18:46:19 2024] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[Wed Jun 26 18:46:19 2024] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[Wed Jun 26 18:46:19 2024] pinctrl core: initialized pinctrl subsystem
[Wed Jun 26 18:46:19 2024] SMBIOS 3.0.0 present.
[Wed Jun 26 18:46:19 2024] DMI: QEMU QEMU Virtual Machine, BIOS 0.0.0 02/06/2015
[Wed Jun 26 18:46:19 2024] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[Wed Jun 26 18:46:19 2024] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[Wed Jun 26 18:46:19 2024] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[Wed Jun 26 18:46:19 2024] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[Wed Jun 26 18:46:19 2024] audit: initializing netlink subsys (disabled)
[Wed Jun 26 18:46:19 2024] audit: type=2000 audit(0.388:1): state=initialized audit_enabled=0 res=1
[Wed Jun 26 18:46:19 2024] thermal_sys: Registered thermal governor 'fair_share'
[Wed Jun 26 18:46:19 2024] thermal_sys: Registered thermal governor 'bang_bang'
[Wed Jun 26 18:46:19 2024] thermal_sys: Registered thermal governor 'step_wise'
[Wed Jun 26 18:46:19 2024] thermal_sys: Registered thermal governor 'user_space'
[Wed Jun 26 18:46:19 2024] thermal_sys: Registered thermal governor 'power_allocator'
[Wed Jun 26 18:46:19 2024] cpuidle: using governor ladder
[Wed Jun 26 18:46:19 2024] cpuidle: using governor menu
[Wed Jun 26 18:46:19 2024] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[Wed Jun 26 18:46:19 2024] ASID allocator initialised with 65536 entries
[Wed Jun 26 18:46:19 2024] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[Wed Jun 26 18:46:19 2024] Serial: AMBA PL011 UART driver
[Wed Jun 26 18:46:19 2024] Modules: 21440 pages in range for non-PLT usage
[Wed Jun 26 18:46:19 2024] Modules: 512960 pages in range for PLT usage
[Wed Jun 26 18:46:19 2024] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[Wed Jun 26 18:46:19 2024] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
[Wed Jun 26 18:46:19 2024] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
[Wed Jun 26 18:46:19 2024] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
[Wed Jun 26 18:46:19 2024] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[Wed Jun 26 18:46:19 2024] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
[Wed Jun 26 18:46:19 2024] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
[Wed Jun 26 18:46:19 2024] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
[Wed Jun 26 18:46:19 2024] cryptd: max_cpu_qlen set to 1000
[Wed Jun 26 18:46:19 2024] raid6: neonx8   gen()  4365 MB/s
[Wed Jun 26 18:46:19 2024] raid6: neonx4   gen()  3648 MB/s
[Wed Jun 26 18:46:19 2024] raid6: neonx2   gen()  2469 MB/s
[Wed Jun 26 18:46:19 2024] raid6: neonx1   gen()  1394 MB/s
[Wed Jun 26 18:46:19 2024] raid6: int64x8  gen()  1882 MB/s
[Wed Jun 26 18:46:19 2024] raid6: int64x4  gen()  2872 MB/s
[Wed Jun 26 18:46:19 2024] raid6: int64x2  gen()  2201 MB/s
[Wed Jun 26 18:46:19 2024] raid6: int64x1  gen()  2033 MB/s
[Wed Jun 26 18:46:19 2024] raid6: using algorithm neonx8 gen() 4365 MB/s
[Wed Jun 26 18:46:19 2024] raid6: .... xor() 1327 MB/s, rmw enabled
[Wed Jun 26 18:46:19 2024] raid6: using neon recovery algorithm
[Wed Jun 26 18:46:19 2024] ACPI: Added _OSI(Module Device)
[Wed Jun 26 18:46:19 2024] ACPI: Added _OSI(Processor Device)
[Wed Jun 26 18:46:19 2024] ACPI: Added _OSI(3.0 _SCP Extensions)
[Wed Jun 26 18:46:19 2024] ACPI: Added _OSI(Processor Aggregator Device)
[Wed Jun 26 18:46:19 2024] ACPI: 1 ACPI AML tables successfully acquired and loaded
[Wed Jun 26 18:46:19 2024] ACPI: Interpreter enabled
[Wed Jun 26 18:46:19 2024] ACPI: Using GIC for interrupt routing
[Wed Jun 26 18:46:19 2024] ACPI: MCFG table detected, 1 entries
[Wed Jun 26 18:46:19 2024] ARMH0011:00: ttyAMA0 at MMIO 0x9000000 (irq = 12, base_baud = 0) is a SBSA
[Wed Jun 26 18:46:19 2024] printk: legacy console [ttyAMA0] enabled
[Wed Jun 26 18:46:20 2024] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[Wed Jun 26 18:46:20 2024] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[Wed Jun 26 18:46:20 2024] acpi PNP0A08:00: _OSC: platform does not support [LTR]
[Wed Jun 26 18:46:20 2024] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[Wed Jun 26 18:46:20 2024] acpi PNP0A08:00: ECAM area [mem 0x4010000000-0x401fffffff] reserved by PNP0C02:00
[Wed Jun 26 18:46:20 2024] acpi PNP0A08:00: ECAM at [mem 0x4010000000-0x401fffffff] for [bus 00-ff]
[Wed Jun 26 18:46:20 2024] ACPI: Remapped I/O 0x000000003eff0000 to [io  0x0000-0xffff window]
[Wed Jun 26 18:46:20 2024] PCI host bridge to bus 0000:00
[Wed Jun 26 18:46:20 2024] pci_bus 0000:00: root bus resource [mem 0x10000000-0x3efeffff window]
[Wed Jun 26 18:46:20 2024] pci_bus 0000:00: root bus resource [io  0x0000-0xffff window]
[Wed Jun 26 18:46:20 2024] pci_bus 0000:00: root bus resource [mem 0x8000000000-0xffffffffff window]
[Wed Jun 26 18:46:20 2024] pci_bus 0000:00: root bus resource [bus 00-ff]
[Wed Jun 26 18:46:20 2024] pci 0000:00:00.0: [1b36:0008] type 00 class 0x060000 conventional PCI endpoint
[Wed Jun 26 18:46:20 2024] pci 0000:00:01.0: [1af4:1000] type 00 class 0x020000 conventional PCI endpoint
[Wed Jun 26 18:46:20 2024] pci 0000:00:01.0: BAR 0 [io  0x0040-0x005f]
[Wed Jun 26 18:46:20 2024] pci 0000:00:01.0: BAR 4 [mem 0x8000000000-0x8000003fff 64bit pref]
[Wed Jun 26 18:46:20 2024] pci 0000:00:01.0: ROM [mem 0xfffc0000-0xffffffff pref]
[Wed Jun 26 18:46:20 2024] pci 0000:00:02.0: [1af4:1004] type 00 class 0x010000 conventional PCI endpoint
[Wed Jun 26 18:46:20 2024] pci 0000:00:02.0: BAR 0 [io  0x0000-0x003f]
[Wed Jun 26 18:46:20 2024] pci 0000:00:02.0: BAR 1 [mem 0x10042000-0x10042fff]
[Wed Jun 26 18:46:20 2024] pci 0000:00:02.0: BAR 4 [mem 0x8000004000-0x8000007fff 64bit pref]
[Wed Jun 26 18:46:20 2024] pci 0000:00:03.0: [1af4:1054] type 00 class 0x00ff00 conventional PCI endpoint
[Wed Jun 26 18:46:20 2024] pci 0000:00:03.0: BAR 1 [mem 0x10041000-0x10041fff]
[Wed Jun 26 18:46:20 2024] pci 0000:00:03.0: BAR 4 [mem 0x8000008000-0x800000bfff 64bit pref]
[Wed Jun 26 18:46:20 2024] pci 0000:00:04.0: [1af4:1050] type 00 class 0x038000 conventional PCI endpoint
[Wed Jun 26 18:46:20 2024] pci 0000:00:04.0: BAR 1 [mem 0x10040000-0x10040fff]
[Wed Jun 26 18:46:20 2024] pci 0000:00:04.0: BAR 4 [mem 0x800000c000-0x800000ffff 64bit pref]
[Wed Jun 26 18:46:20 2024] pci 0000:00:05.0: [1b36:000d] type 00 class 0x0c0330 PCIe Root Complex Integrated Endpoint
[Wed Jun 26 18:46:20 2024] pci 0000:00:05.0: BAR 0 [mem 0x8000010000-0x8000013fff 64bit]
[Wed Jun 26 18:46:20 2024] pci_bus 0000:00: on NUMA node 0
[Wed Jun 26 18:46:20 2024] pci 0000:00:01.0: ROM [mem 0x10000000-0x1003ffff pref]: assigned
[Wed Jun 26 18:46:20 2024] pci 0000:00:01.0: BAR 4 [mem 0x8000000000-0x8000003fff 64bit pref]: assigned
[Wed Jun 26 18:46:20 2024] pci 0000:00:02.0: BAR 4 [mem 0x8000004000-0x8000007fff 64bit pref]: assigned
[Wed Jun 26 18:46:20 2024] pci 0000:00:03.0: BAR 4 [mem 0x8000008000-0x800000bfff 64bit pref]: assigned
[Wed Jun 26 18:46:20 2024] pci 0000:00:04.0: BAR 4 [mem 0x800000c000-0x800000ffff 64bit pref]: assigned
[Wed Jun 26 18:46:20 2024] pci 0000:00:05.0: BAR 0 [mem 0x8000010000-0x8000013fff 64bit]: assigned
[Wed Jun 26 18:46:20 2024] pci 0000:00:02.0: BAR 1 [mem 0x10040000-0x10040fff]: assigned
[Wed Jun 26 18:46:20 2024] pci 0000:00:03.0: BAR 1 [mem 0x10041000-0x10041fff]: assigned
[Wed Jun 26 18:46:20 2024] pci 0000:00:04.0: BAR 1 [mem 0x10042000-0x10042fff]: assigned
[Wed Jun 26 18:46:20 2024] pci 0000:00:02.0: BAR 0 [io  0x1000-0x103f]: assigned
[Wed Jun 26 18:46:20 2024] pci 0000:00:01.0: BAR 0 [io  0x1040-0x105f]: assigned
[Wed Jun 26 18:46:20 2024] pci_bus 0000:00: resource 4 [mem 0x10000000-0x3efeffff window]
[Wed Jun 26 18:46:20 2024] pci_bus 0000:00: resource 5 [io  0x0000-0xffff window]
[Wed Jun 26 18:46:20 2024] pci_bus 0000:00: resource 6 [mem 0x8000000000-0xffffffffff window]
[Wed Jun 26 18:46:20 2024] ACPI: PCI: Interrupt link GSI0 configured for IRQ 35
[Wed Jun 26 18:46:20 2024] ACPI: PCI: Interrupt link GSI1 configured for IRQ 36
[Wed Jun 26 18:46:20 2024] ACPI: PCI: Interrupt link GSI2 configured for IRQ 37
[Wed Jun 26 18:46:20 2024] ACPI: PCI: Interrupt link GSI3 configured for IRQ 38
[Wed Jun 26 18:46:20 2024] iommu: Default domain type: Translated
[Wed Jun 26 18:46:20 2024] iommu: DMA domain TLB invalidation policy: strict mode
[Wed Jun 26 18:46:20 2024] SCSI subsystem initialized
[Wed Jun 26 18:46:20 2024] libata version 3.00 loaded.
[Wed Jun 26 18:46:20 2024] ACPI: bus type USB registered
[Wed Jun 26 18:46:20 2024] usbcore: registered new interface driver usbfs
[Wed Jun 26 18:46:20 2024] usbcore: registered new interface driver hub
[Wed Jun 26 18:46:20 2024] usbcore: registered new device driver usb
[Wed Jun 26 18:46:20 2024] pps_core: LinuxPPS API ver. 1 registered
[Wed Jun 26 18:46:20 2024] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[Wed Jun 26 18:46:20 2024] PTP clock support registered
[Wed Jun 26 18:46:20 2024] EDAC MC: Ver: 3.0.0
[Wed Jun 26 18:46:20 2024] scmi_core: SCMI protocol bus registered
[Wed Jun 26 18:46:20 2024] efivars: Registered efivars operations
[Wed Jun 26 18:46:20 2024] FPGA manager framework
[Wed Jun 26 18:46:20 2024] Advanced Linux Sound Architecture Driver Initialized.
[Wed Jun 26 18:46:20 2024] NetLabel: Initializing
[Wed Jun 26 18:46:20 2024] NetLabel:  domain hash size = 128
[Wed Jun 26 18:46:20 2024] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[Wed Jun 26 18:46:20 2024] NetLabel:  unlabeled traffic allowed by default
[Wed Jun 26 18:46:20 2024] vgaarb: loaded
[Wed Jun 26 18:46:20 2024] clocksource: Switched to clocksource arch_sys_counter
[Wed Jun 26 18:46:20 2024] VFS: Disk quotas dquot_6.6.0
[Wed Jun 26 18:46:20 2024] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[Wed Jun 26 18:46:20 2024] pnp: PnP ACPI init
[Wed Jun 26 18:46:20 2024] system 00:00: [mem 0x4010000000-0x401fffffff window] could not be reserved
[Wed Jun 26 18:46:20 2024] pnp: PnP ACPI: found 1 devices
[Wed Jun 26 18:46:20 2024] NET: Registered PF_INET protocol family
[Wed Jun 26 18:46:20 2024] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[Wed Jun 26 18:46:20 2024] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[Wed Jun 26 18:46:20 2024] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[Wed Jun 26 18:46:20 2024] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[Wed Jun 26 18:46:20 2024] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[Wed Jun 26 18:46:20 2024] TCP: Hash tables configured (established 131072 bind 65536)
[Wed Jun 26 18:46:20 2024] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[Wed Jun 26 18:46:20 2024] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[Wed Jun 26 18:46:20 2024] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[Wed Jun 26 18:46:20 2024] NET: Registered PF_UNIX/PF_LOCAL protocol family
[Wed Jun 26 18:46:20 2024] RPC: Registered named UNIX socket transport module.
[Wed Jun 26 18:46:20 2024] RPC: Registered udp transport module.
[Wed Jun 26 18:46:20 2024] RPC: Registered tcp transport module.
[Wed Jun 26 18:46:20 2024] RPC: Registered tcp-with-tls transport module.
[Wed Jun 26 18:46:20 2024] RPC: Registered tcp NFSv4.1 backchannel transport module.
[Wed Jun 26 18:46:20 2024] pci 0000:00:05.0: enabling device (0000 -> 0002)
[Wed Jun 26 18:46:20 2024] PCI: CLS 0 bytes, default 64
[Wed Jun 26 18:46:20 2024] Trying to unpack rootfs image as initramfs...
[Wed Jun 26 18:46:20 2024] kvm [1]: HYP mode not available
[Wed Jun 26 18:46:20 2024] Initialise system trusted keyrings
[Wed Jun 26 18:46:20 2024] workingset: timestamp_bits=46 max_order=22 bucket_order=0
[Wed Jun 26 18:46:20 2024] zbud: loaded
[Wed Jun 26 18:46:20 2024] NFS: Registering the id_resolver key type
[Wed Jun 26 18:46:20 2024] Key type id_resolver registered
[Wed Jun 26 18:46:20 2024] Key type id_legacy registered
[Wed Jun 26 18:46:20 2024] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[Wed Jun 26 18:46:20 2024] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[Wed Jun 26 18:46:20 2024] ntfs3: Max link count 4000
[Wed Jun 26 18:46:20 2024] ntfs3: Read-only LZX/Xpress compression included
[Wed Jun 26 18:46:20 2024] SGI XFS with ACLs, security attributes, quota, no debug enabled
[Wed Jun 26 18:46:20 2024] NET: Registered PF_ALG protocol family
[Wed Jun 26 18:46:20 2024] xor: measuring software checksum speed
[Wed Jun 26 18:46:20 2024]    8regs           :  5029 MB/sec
[Wed Jun 26 18:46:20 2024]    32regs          :  5522 MB/sec
[Wed Jun 26 18:46:20 2024]    arm64_neon      :  2864 MB/sec
[Wed Jun 26 18:46:20 2024] xor: using function: 32regs (5522 MB/sec)
[Wed Jun 26 18:46:20 2024] Key type asymmetric registered
[Wed Jun 26 18:46:20 2024] Asymmetric key parser 'x509' registered
[Wed Jun 26 18:46:20 2024] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 241)
[Wed Jun 26 18:46:20 2024] io scheduler mq-deadline registered
[Wed Jun 26 18:46:20 2024] io scheduler kyber registered
[Wed Jun 26 18:46:20 2024] io scheduler bfq registered
[Wed Jun 26 18:46:20 2024] IPMI message handler: version 39.2
[Wed Jun 26 18:46:20 2024] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[Wed Jun 26 18:46:20 2024] ACPI: button: Power Button [PWRB]
[Wed Jun 26 18:46:20 2024] ACPI: \_SB_.PCI0.GSI1: Enabled at IRQ 36
[Wed Jun 26 18:46:20 2024] virtio-pci 0000:00:01.0: enabling device (0000 -> 0003)
[Wed Jun 26 18:46:20 2024] ACPI: \_SB_.PCI0.GSI2: Enabled at IRQ 37
[Wed Jun 26 18:46:20 2024] virtio-pci 0000:00:02.0: enabling device (0005 -> 0007)
[Wed Jun 26 18:46:20 2024] ACPI: \_SB_.PCI0.GSI3: Enabled at IRQ 38
[Wed Jun 26 18:46:20 2024] virtio-pci 0000:00:03.0: enabling device (0000 -> 0002)
[Wed Jun 26 18:46:20 2024] ACPI: \_SB_.PCI0.GSI0: Enabled at IRQ 35
[Wed Jun 26 18:46:20 2024] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[Wed Jun 26 18:46:20 2024] msm_serial: driver initialized
[Wed Jun 26 18:46:20 2024] SPI driver tpm_tis_spi has no spi_device_id for atmel,attpm20p
[Wed Jun 26 18:46:20 2024] ACPI: bus type drm_connector registered
[Wed Jun 26 18:46:20 2024] virtio_scsi virtio1: 32/0/0 default/read/poll queues
[Wed Jun 26 18:46:20 2024] Freeing initrd memory: 8188K
[Wed Jun 26 18:46:20 2024] scsi host0: Virtio SCSI HBA
[Wed Jun 26 18:46:20 2024] scsi 0:0:0:0: Direct-Access     QEMU     QEMU HARDDISK    2.5+ PQ: 0 ANSI: 5
[Wed Jun 26 18:46:20 2024] xhci_hcd 0000:00:05.0: xHCI Host Controller
[Wed Jun 26 18:46:20 2024] xhci_hcd 0000:00:05.0: new USB bus registered, assigned bus number 1
[Wed Jun 26 18:46:20 2024] xhci_hcd 0000:00:05.0: hcc params 0x00087001 hci version 0x100 quirks 0x0000000000000010
[Wed Jun 26 18:46:20 2024] xhci_hcd 0000:00:05.0: xHCI Host Controller
[Wed Jun 26 18:46:20 2024] xhci_hcd 0000:00:05.0: new USB bus registered, assigned bus number 2
[Wed Jun 26 18:46:20 2024] xhci_hcd 0000:00:05.0: Host supports USB 3.0 SuperSpeed
[Wed Jun 26 18:46:20 2024] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.09
[Wed Jun 26 18:46:20 2024] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[Wed Jun 26 18:46:20 2024] usb usb1: Product: xHCI Host Controller
[Wed Jun 26 18:46:20 2024] usb usb1: Manufacturer: Linux 6.9.0-1-aarch64-ARCH xhci-hcd
[Wed Jun 26 18:46:20 2024] usb usb1: SerialNumber: 0000:00:05.0
[Wed Jun 26 18:46:20 2024] hub 1-0:1.0: USB hub found
[Wed Jun 26 18:46:20 2024] hub 1-0:1.0: 4 ports detected
[Wed Jun 26 18:46:20 2024] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[Wed Jun 26 18:46:20 2024] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.09
[Wed Jun 26 18:46:20 2024] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[Wed Jun 26 18:46:20 2024] usb usb2: Product: xHCI Host Controller
[Wed Jun 26 18:46:20 2024] usb usb2: Manufacturer: Linux 6.9.0-1-aarch64-ARCH xhci-hcd
[Wed Jun 26 18:46:20 2024] usb usb2: SerialNumber: 0000:00:05.0
[Wed Jun 26 18:46:20 2024] hub 2-0:1.0: USB hub found
[Wed Jun 26 18:46:20 2024] hub 2-0:1.0: 4 ports detected
[Wed Jun 26 18:46:20 2024] SPI driver max3421-hcd has no spi_device_id for maxim,max3421
[Wed Jun 26 18:46:20 2024] usbcore: registered new interface driver uas
[Wed Jun 26 18:46:20 2024] usbcore: registered new interface driver usb-storage
[Wed Jun 26 18:46:20 2024] usbcore: registered new interface driver ums-alauda
[Wed Jun 26 18:46:20 2024] usbcore: registered new interface driver ums-cypress
[Wed Jun 26 18:46:20 2024] usbcore: registered new interface driver ums-datafab
[Wed Jun 26 18:46:20 2024] usbcore: registered new interface driver ums_eneub6250
[Wed Jun 26 18:46:20 2024] usbcore: registered new interface driver ums-freecom
[Wed Jun 26 18:46:20 2024] usbcore: registered new interface driver ums-isd200
[Wed Jun 26 18:46:20 2024] usbcore: registered new interface driver ums-jumpshot
[Wed Jun 26 18:46:20 2024] usbcore: registered new interface driver ums-karma
[Wed Jun 26 18:46:20 2024] usbcore: registered new interface driver ums-onetouch
[Wed Jun 26 18:46:20 2024] usbcore: registered new interface driver ums-realtek
[Wed Jun 26 18:46:20 2024] usbcore: registered new interface driver ums-sddr09
[Wed Jun 26 18:46:20 2024] usbcore: registered new interface driver ums-sddr55
[Wed Jun 26 18:46:20 2024] usbcore: registered new interface driver ums-usbat
[Wed Jun 26 18:46:20 2024] usbcore: registered new interface driver usbserial_generic
[Wed Jun 26 18:46:20 2024] usbserial: USB Serial support registered for generic
[Wed Jun 26 18:46:20 2024] mousedev: PS/2 mouse device common for all mice
[Wed Jun 26 18:46:20 2024] rtc-efi rtc-efi.0: registered as rtc0
[Wed Jun 26 18:46:20 2024] rtc-efi rtc-efi.0: setting system clock to 2024-06-26T23:46:20 UTC (1719445580)
[Wed Jun 26 18:46:20 2024] device-mapper: uevent: version 1.0.3
[Wed Jun 26 18:46:20 2024] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[Wed Jun 26 18:46:20 2024] sdhci: Secure Digital Host Controller Interface driver
[Wed Jun 26 18:46:20 2024] sdhci: Copyright(c) Pierre Ossman
[Wed Jun 26 18:46:20 2024] Synopsys Designware Multimedia Card Interface Driver
[Wed Jun 26 18:46:20 2024] sdhci-pltfm: SDHCI platform and OF driver helper
[Wed Jun 26 18:46:20 2024] ledtrig-cpu: registered to indicate activity on CPUs
[Wed Jun 26 18:46:20 2024] hid: raw HID events driver (C) Jiri Kosina
[Wed Jun 26 18:46:20 2024] usbcore: registered new interface driver usbhid
[Wed Jun 26 18:46:20 2024] usbhid: USB HID core driver
[Wed Jun 26 18:46:20 2024] hw perfevents: enabled with armv8_pmuv3_0 PMU driver, 7 counters available
[Wed Jun 26 18:46:20 2024] watchdog: Delayed init of the lockup detector failed: -19
[Wed Jun 26 18:46:20 2024] watchdog: Hard watchdog permanently disabled
[Wed Jun 26 18:46:20 2024] Initializing XFRM netlink socket
[Wed Jun 26 18:46:20 2024] NET: Registered PF_INET6 protocol family
[Wed Jun 26 18:46:21 2024] usb 1-1: new full-speed USB device number 2 using xhci_hcd
[Wed Jun 26 18:46:21 2024] sd 0:0:0:0: Attached scsi generic sg0 type 0
[Wed Jun 26 18:46:21 2024] sd 0:0:0:0: Power-on or device reset occurred
[Wed Jun 26 18:46:21 2024] sd 0:0:0:0: [sda] 125829120 512-byte logical blocks: (64.4 GB/60.0 GiB)
[Wed Jun 26 18:46:21 2024] sd 0:0:0:0: [sda] Write Protect is off
[Wed Jun 26 18:46:21 2024] sd 0:0:0:0: [sda] Mode Sense: 63 00 00 08
[Wed Jun 26 18:46:21 2024] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[Wed Jun 26 18:46:21 2024]  sda: sda1 sda2 sda3
[Wed Jun 26 18:46:21 2024] sd 0:0:0:0: [sda] Attached SCSI disk
[Wed Jun 26 18:46:21 2024] Segment Routing with IPv6
[Wed Jun 26 18:46:21 2024] In-situ OAM (IOAM) with IPv6
[Wed Jun 26 18:46:21 2024] mip6: Mobile IPv6
[Wed Jun 26 18:46:21 2024] NET: Registered PF_PACKET protocol family
[Wed Jun 26 18:46:21 2024] Key type dns_resolver registered
[Wed Jun 26 18:46:21 2024] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
[Wed Jun 26 18:46:21 2024] registered taskstats version 1
[Wed Jun 26 18:46:21 2024] Loading compiled-in X.509 certificates
[Wed Jun 26 18:46:21 2024] usb 1-1: New USB device found, idVendor=093a, idProduct=2532, bcdDevice= 1.00
[Wed Jun 26 18:46:21 2024] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[Wed Jun 26 18:46:21 2024] usb 1-1: Product: Gaming Mouse
[Wed Jun 26 18:46:21 2024] usb 1-1: Manufacturer: PixArt
[Wed Jun 26 18:46:21 2024] input: PixArt Gaming Mouse as /devices/pci0000:00/0000:00:05.0/usb1/1-1/1-1:1.0/0003:093A:2532.0001/input/input1
[Wed Jun 26 18:46:21 2024] hid-generic 0003:093A:2532.0001: input,hidraw0: USB HID v1.11 Mouse [PixArt Gaming Mouse] on usb-0000:00:05.0-1/input0
[Wed Jun 26 18:46:21 2024] debug_vm_pgtable: [debug_vm_pgtable         ]: Validating architecture page table helpers
[Wed Jun 26 18:46:21 2024] input: PixArt Gaming Mouse Keyboard as /devices/pci0000:00/0000:00:05.0/usb1/1-1/1-1:1.1/0003:093A:2532.0002/input/input3
[Wed Jun 26 18:46:21 2024] Key type .fscrypt registered
[Wed Jun 26 18:46:21 2024] Key type fscrypt-provisioning registered
[Wed Jun 26 18:46:21 2024] Btrfs loaded, zoned=yes, fsverity=no
[Wed Jun 26 18:46:21 2024] Key type encrypted registered
[Wed Jun 26 18:46:21 2024] hid-generic 0003:093A:2532.0002: input,hiddev96,hidraw1: USB HID v1.11 Keyboard [PixArt Gaming Mouse] on usb-0000:00:05.0-1/input1
[Wed Jun 26 18:46:22 2024] usb 1-2: new low-speed USB device number 3 using xhci_hcd
[Wed Jun 26 18:46:22 2024] usb 1-2: New USB device found, idVendor=1c4f, idProduct=0015, bcdDevice= 1.10
[Wed Jun 26 18:46:22 2024] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[Wed Jun 26 18:46:22 2024] usb 1-2: Product: USB Keyboard
[Wed Jun 26 18:46:22 2024] usb 1-2: Manufacturer: SIGMACH1P
[Wed Jun 26 18:46:22 2024] input: SIGMACH1P USB Keyboard as /devices/pci0000:00/0000:00:05.0/usb1/1-2/1-2:1.0/0003:1C4F:0015.0003/input/input4
[Wed Jun 26 18:46:22 2024] hid-generic 0003:1C4F:0015.0003: input,hidraw2: USB HID v1.10 Keyboard [SIGMACH1P USB Keyboard] on usb-0000:00:05.0-2/input0
[Wed Jun 26 18:46:22 2024] input: SIGMACH1P USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:05.0/usb1/1-2/1-2:1.1/0003:1C4F:0015.0004/input/input5
[Wed Jun 26 18:46:22 2024] input: SIGMACH1P USB Keyboard System Control as /devices/pci0000:00/0000:00:05.0/usb1/1-2/1-2:1.1/0003:1C4F:0015.0004/input/input6
[Wed Jun 26 18:46:22 2024] hid-generic 0003:1C4F:0015.0004: input,hidraw3: USB HID v1.10 Device [SIGMACH1P USB Keyboard] on usb-0000:00:05.0-2/input1
[Wed Jun 26 18:46:22 2024] clk: Disabling unused clocks
[Wed Jun 26 18:46:22 2024] PM: genpd: Disabling unused power domains
[Wed Jun 26 18:46:22 2024] ALSA device list:
[Wed Jun 26 18:46:22 2024]   No soundcards found.
[Wed Jun 26 18:46:22 2024] Freeing unused kernel memory: 8448K
[Wed Jun 26 18:46:22 2024] Run /init as init process
[Wed Jun 26 18:46:22 2024]   with arguments:
[Wed Jun 26 18:46:22 2024]     /init
[Wed Jun 26 18:46:22 2024]   with environment:
[Wed Jun 26 18:46:22 2024]     HOME=/
[Wed Jun 26 18:46:22 2024]     TERM=linux
[Wed Jun 26 18:46:25 2024] hrtimer: interrupt took 2269008 ns
[Wed Jun 26 18:46:25 2024] virtio_crypto virtio2: max_queues: 1, max_cipher_key_len: 64, max_auth_key_len: 512, max_size 0x7fffffffffffffbf
[Wed Jun 26 18:46:25 2024] virtio_crypto virtio2: will run requests pump with realtime priority
[Wed Jun 26 18:46:25 2024] [drm] pci: virtio-gpu-pci detected at 0000:00:04.0
[Wed Jun 26 18:46:25 2024] [drm] features: +virgl +edid -resource_blob -host_visible
[Wed Jun 26 18:46:25 2024] [drm] features: -context_init
[Wed Jun 26 18:46:26 2024] [drm] number of scanouts: 1
[Wed Jun 26 18:46:26 2024] [drm] number of cap sets: 2
[Wed Jun 26 18:46:26 2024] [drm] cap set 0: id 1, max-version 1, max-size 308
[Wed Jun 26 18:46:26 2024] [drm] cap set 1: id 2, max-version 2, max-size 1376
[Wed Jun 26 18:46:26 2024] [drm] Initialized virtio_gpu 0.1.0 0 for 0000:00:04.0 on minor 0
[Wed Jun 26 18:46:26 2024] Console: switching to colour frame buffer device 240x67
[Wed Jun 26 18:46:26 2024] virtio-pci 0000:00:04.0: [drm] fb0: virtio_gpudrmfb frame buffer device
[Wed Jun 26 18:46:26 2024] virtio_crypto virtio2: Registered algo cbc(aes)
[Wed Jun 26 18:46:26 2024] virtio_crypto virtio2: Accelerator device is ready
[Wed Jun 26 18:46:27 2024] EXT4-fs (sda3): mounted filesystem b7d1452f-cf51-4ce4-ad05-fbe5ced9ca00 r/w with ordered data mode. Quota mode: none.
[Wed Jun 26 18:46:28 2024] systemd[1]: systemd 256.1-1-arch-g34ba18b^ running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
[Wed Jun 26 18:46:28 2024] systemd[1]: Detected virtualization qemu.
[Wed Jun 26 18:46:28 2024] systemd[1]: Detected architecture arm64.
[Wed Jun 26 18:46:28 2024] systemd[1]: Hostname set to <archarm>.
[Wed Jun 26 18:46:30 2024] systemd[1]: bpf-restrict-fs: BPF LSM hook not enabled in the kernel, BPF LSM not supported.
[Wed Jun 26 18:46:30 2024] NET: Registered PF_VSOCK protocol family
[Wed Jun 26 18:46:31 2024] systemd[1]: Queued start job for default target Graphical Interface.
[Wed Jun 26 18:46:31 2024] systemd[1]: Created slice Slice /system/dirmngr.
[Wed Jun 26 18:46:32 2024] systemd[1]: Created slice Slice /system/getty.
[Wed Jun 26 18:46:32 2024] systemd[1]: Created slice Slice /system/gpg-agent.
[Wed Jun 26 18:46:32 2024] systemd[1]: Created slice Slice /system/gpg-agent-browser.
[Wed Jun 26 18:46:32 2024] systemd[1]: Created slice Slice /system/gpg-agent-extra.
[Wed Jun 26 18:46:32 2024] systemd[1]: Created slice Slice /system/gpg-agent-ssh.
[Wed Jun 26 18:46:32 2024] systemd[1]: Created slice Slice /system/keyboxd.
[Wed Jun 26 18:46:32 2024] systemd[1]: Created slice Slice /system/modprobe.
[Wed Jun 26 18:46:32 2024] systemd[1]: Created slice Slice /system/serial-getty.
[Wed Jun 26 18:46:32 2024] systemd[1]: Created slice User and Session Slice.
[Wed Jun 26 18:46:32 2024] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[Wed Jun 26 18:46:32 2024] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[Wed Jun 26 18:46:32 2024] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[Wed Jun 26 18:46:32 2024] systemd[1]: Expecting device /dev/disk/by-uuid/6f0eeb89-230c-4a7f-a2b5-8b9f66973113...
[Wed Jun 26 18:46:32 2024] systemd[1]: Expecting device /dev/disk/by-uuid/E2B3-57C0...
[Wed Jun 26 18:46:32 2024] systemd[1]: Expecting device /dev/ttyAMA0...
[Wed Jun 26 18:46:32 2024] systemd[1]: Reached target Local Encrypted Volumes.
[Wed Jun 26 18:46:32 2024] systemd[1]: Reached target Local Integrity Protected Volumes.
[Wed Jun 26 18:46:32 2024] systemd[1]: Reached target Path Units.
[Wed Jun 26 18:46:32 2024] systemd[1]: Reached target Remote File Systems.
[Wed Jun 26 18:46:32 2024] systemd[1]: Reached target Slice Units.
[Wed Jun 26 18:46:32 2024] systemd[1]: Reached target Local Verity Protected Volumes.
[Wed Jun 26 18:46:32 2024] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[Wed Jun 26 18:46:32 2024] systemd[1]: Listening on Process Core Dump Socket.
[Wed Jun 26 18:46:32 2024] systemd[1]: Listening on Credential Encryption/Decryption.
[Wed Jun 26 18:46:32 2024] systemd[1]: Listening on Journal Socket (/dev/log).
[Wed Jun 26 18:46:32 2024] systemd[1]: Listening on Journal Sockets.
[Wed Jun 26 18:46:32 2024] systemd[1]: TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[Wed Jun 26 18:46:32 2024] systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[Wed Jun 26 18:46:32 2024] systemd[1]: Listening on udev Control Socket.
[Wed Jun 26 18:46:32 2024] systemd[1]: Listening on udev Kernel Socket.
[Wed Jun 26 18:46:32 2024] systemd[1]: Mounting Huge Pages File System...
[Wed Jun 26 18:46:32 2024] systemd[1]: Mounting POSIX Message Queue File System...
[Wed Jun 26 18:46:32 2024] systemd[1]: Mounting Kernel Debug File System...
[Wed Jun 26 18:46:32 2024] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
[Wed Jun 26 18:46:32 2024] systemd[1]: Starting Create List of Static Device Nodes...
[Wed Jun 26 18:46:32 2024] systemd[1]: Starting Load Kernel Module configfs...
[Wed Jun 26 18:46:32 2024] systemd[1]: Starting Load Kernel Module dm_mod...
[Wed Jun 26 18:46:32 2024] systemd[1]: Starting Load Kernel Module drm...
[Wed Jun 26 18:46:32 2024] systemd[1]: Starting Load Kernel Module fuse...
[Wed Jun 26 18:46:32 2024] systemd[1]: Starting Load Kernel Module loop...
[Wed Jun 26 18:46:32 2024] systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
[Wed Jun 26 18:46:32 2024] systemd[1]: Starting Load Kernel Modules...
[Wed Jun 26 18:46:32 2024] systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[Wed Jun 26 18:46:32 2024] systemd[1]: Starting Remount Root and Kernel File Systems...
[Wed Jun 26 18:46:32 2024] systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[Wed Jun 26 18:46:32 2024] systemd[1]: Starting Load udev Rules from Credentials...
[Wed Jun 26 18:46:32 2024] systemd[1]: Starting Coldplug All udev Devices...
[Wed Jun 26 18:46:33 2024] fuse: init (API version 7.40)
[Wed Jun 26 18:46:33 2024] systemd[1]: Mounted Huge Pages File System.
[Wed Jun 26 18:46:33 2024] systemd[1]: Mounted POSIX Message Queue File System.
[Wed Jun 26 18:46:33 2024] systemd[1]: Mounted Kernel Debug File System.
[Wed Jun 26 18:46:33 2024] systemd[1]: Finished Create List of Static Device Nodes.
[Wed Jun 26 18:46:33 2024] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[Wed Jun 26 18:46:33 2024] systemd[1]: Finished Load Kernel Module configfs.
[Wed Jun 26 18:46:33 2024] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[Wed Jun 26 18:46:33 2024] systemd[1]: Finished Load Kernel Module dm_mod.
[Wed Jun 26 18:46:33 2024] systemd[1]: modprobe@drm.service: Deactivated successfully.
[Wed Jun 26 18:46:33 2024] systemd[1]: Finished Load Kernel Module drm.
[Wed Jun 26 18:46:33 2024] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[Wed Jun 26 18:46:33 2024] systemd[1]: Finished Load Kernel Module fuse.
[Wed Jun 26 18:46:33 2024] systemd[1]: Finished Load Kernel Modules.
[Wed Jun 26 18:46:33 2024] systemd[1]: Mounting FUSE Control File System...
[Wed Jun 26 18:46:33 2024] systemd[1]: Mounting Kernel Configuration File System...
[Wed Jun 26 18:46:33 2024] loop: module loaded
[Wed Jun 26 18:46:33 2024] systemd[1]: Starting Apply Kernel Variables...
[Wed Jun 26 18:46:33 2024] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
[Wed Jun 26 18:46:33 2024] EXT4-fs (sda3): re-mounted b7d1452f-cf51-4ce4-ad05-fbe5ced9ca00 r/w. Quota mode: none.
[Wed Jun 26 18:46:33 2024] systemd[1]: modprobe@loop.service: Deactivated successfully.
[Wed Jun 26 18:46:33 2024] systemd[1]: Finished Load Kernel Module loop.
[Wed Jun 26 18:46:33 2024] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
[Wed Jun 26 18:46:33 2024] systemd[1]: Finished Remount Root and Kernel File Systems.
[Wed Jun 26 18:46:33 2024] systemd[1]: Finished Load udev Rules from Credentials.
[Wed Jun 26 18:46:33 2024] systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[Wed Jun 26 18:46:33 2024] systemd[1]: Starting Load/Save OS Random Seed...
[Wed Jun 26 18:46:33 2024] systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[Wed Jun 26 18:46:33 2024] systemd[1]: Mounted Kernel Configuration File System.
[Wed Jun 26 18:46:33 2024] systemd[1]: Mounted FUSE Control File System.
[Wed Jun 26 18:46:33 2024] systemd[1]: Finished Apply Kernel Variables.
[Wed Jun 26 18:46:33 2024] systemd[1]: Finished Load/Save OS Random Seed.
[Wed Jun 26 18:46:34 2024] systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
[Wed Jun 26 18:46:34 2024] systemd[1]: Create System Users was skipped because no trigger condition checks were met.
[Wed Jun 26 18:46:34 2024] systemd[1]: Starting Create Static Device Nodes in /dev...
[Wed Jun 26 18:46:34 2024] systemd[1]: Finished Create Static Device Nodes in /dev.
[Wed Jun 26 18:46:34 2024] systemd[1]: Reached target Preparation for Local File Systems.
[Wed Jun 26 18:46:34 2024] systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
[Wed Jun 26 18:46:34 2024] systemd[1]: Entropy Daemon based on the HAVEGE algorithm was skipped because of an unmet condition check (ConditionKernelVersion=<5.6).
[Wed Jun 26 18:46:34 2024] systemd[1]: Starting Journal Service...
[Wed Jun 26 18:46:34 2024] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[Wed Jun 26 18:46:34 2024] systemd-journald[593]: Collecting audit messages is disabled.
[Wed Jun 26 18:46:35 2024] systemd[1]: Started Rule-based Manager for Device Events and Files.
[Wed Jun 26 18:46:35 2024] systemd[1]: Started Journal Service.
[Wed Jun 26 18:46:35 2024] systemd-journald[593]: Received client request to flush runtime journal.
[Wed Jun 26 18:46:35 2024] systemd-journald[593]: File /var/log/journal/782ceb345fdc4a7b841886de210638a9/system.journal corrupted or uncleanly shut down, renaming and replacing.
[Wed Jun 26 18:46:38 2024] virtio_net virtio0 enp0s1: renamed from eth0
[Wed Jun 26 18:46:40 2024] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[Wed Jun 26 18:46:40 2024] Adding 8388604k swap on /dev/sda2.  Priority:-2 extents:1 across:8388604k 
[Wed Jun 26 18:46:50 2024] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[Wed Jun 26 18:46:50 2024] Bridge firewalling registered
[Wed Jun 26 18:47:51 2024] docker0: port 1(vethbd3b6c3) entered blocking state
[Wed Jun 26 18:47:51 2024] docker0: port 1(vethbd3b6c3) entered disabled state
[Wed Jun 26 18:47:51 2024] vethbd3b6c3: entered allmulticast mode
[Wed Jun 26 18:47:51 2024] vethbd3b6c3: entered promiscuous mode
[Wed Jun 26 18:47:55 2024] eth0: renamed from vethc9bdc7e
[Wed Jun 26 18:47:55 2024] docker0: port 1(vethbd3b6c3) entered blocking state
[Wed Jun 26 18:47:55 2024] docker0: port 1(vethbd3b6c3) entered forwarding state
[Wed Jun 26 18:47:56 2024] init: mkdir("/dev/pts", 0755) failed File exists
[Wed Jun 26 18:47:56 2024] init: mount("sysfs", "/sys", "sysfs", 0, NULL) failed Device or resource busy
[Wed Jun 26 18:47:56 2024] init: mount("selinuxfs", "/sys/fs/selinux", "selinuxfs", 0, NULL) failed No such file or directory
[Wed Jun 26 18:47:56 2024] init: mknod("/dev/kmsg", S_IFCHR | 0600, makedev(1, 11)) failed File exists
[Wed Jun 26 18:47:56 2024] init: mknod("/dev/random", S_IFCHR | 0666, makedev(1, 8)) failed Invalid argument
[Wed Jun 26 18:47:56 2024] init: mknod("/dev/urandom", S_IFCHR | 0666, makedev(1, 9)) failed File exists
[Wed Jun 26 18:47:56 2024] init: mknod("/dev/ptmx", S_IFCHR | 0666, makedev(5, 2)) failed File exists
[Wed Jun 26 18:47:56 2024] init: mknod("/dev/null", S_IFCHR | 0666, makedev(1, 3)) failed File exists
[Wed Jun 26 18:47:56 2024] init: init first stage started!
[Wed Jun 26 18:47:56 2024] init: Unable to open /lib/modules, skipping module loading.
[Wed Jun 26 18:47:56 2024] init: [libfs_mgr] ReadFstabFromDt(): failed to read fstab from dt
[Wed Jun 26 18:47:56 2024] init: [libfs_mgr] ReadDefaultFstab(): failed to find device default fstab
[Wed Jun 26 18:47:56 2024] init: Failed to create FirstStageMount failed to read default fstab for first stage mount
[Wed Jun 26 18:47:56 2024] init: Failed to mount required partitions early ...
[Wed Jun 26 18:47:56 2024] init: Skipped setting INIT_AVB_VERSION (not in recovery mode)
[Wed Jun 26 18:47:56 2024] init: init second stage started!
[Wed Jun 26 18:47:56 2024] init: Using Android DT directory /proc/device-tree/firmware/android/
[Wed Jun 26 18:47:56 2024] init: Could not set 'ro.hardware' to 'redroid' while loading .prop filesRead-only property was already set
[Wed Jun 26 18:47:56 2024] init: Setting product property ro.product.brand to 'redroid' (from ro.product.product.brand)
[Wed Jun 26 18:47:56 2024] init: Setting product property ro.product.device to 'redroid_arm64_only' (from ro.product.product.device)
[Wed Jun 26 18:47:56 2024] init: Setting product property ro.product.manufacturer to 'redroid' (from ro.product.product.manufacturer)
[Wed Jun 26 18:47:56 2024] init: Setting product property ro.product.model to 'redroid14_arm64_only' (from ro.product.product.model)
[Wed Jun 26 18:47:56 2024] init: Setting product property ro.product.name to 'redroid_arm64_only' (from ro.product.product.name)
[Wed Jun 26 18:47:56 2024] init: Setting property 'ro.build.fingerprint' to 'redroid/redroid_arm64_only/redroid_arm64_only:14/UD2A.240505.001.W1/eng.frank.20240527.152423:userdebug/test-keys'
[Wed Jun 26 18:47:56 2024] init: Setting property 'ro.product.cpu.abilist' to 'arm64-v8a'
[Wed Jun 26 18:47:56 2024] init: Setting property 'ro.product.cpu.abilist32' to ''
[Wed Jun 26 18:47:56 2024] init: Setting property 'ro.product.cpu.abilist64' to 'arm64-v8a'
[Wed Jun 26 18:47:56 2024] selinux: SELinux: Loaded file context from:
[Wed Jun 26 18:47:56 2024] selinux: 		/system/etc/selinux/plat_file_contexts
[Wed Jun 26 18:47:56 2024] selinux: 		/vendor/etc/selinux/vendor_file_contexts
[Wed Jun 26 18:47:56 2024] init: Running restorecon...
[Wed Jun 26 18:47:56 2024] init: Created socket '/dev/socket/property_service', mode 666, user 0, group 0
[Wed Jun 26 18:47:56 2024] init: SetupMountNamespaces done
[Wed Jun 26 18:47:56 2024] init: Forked subcontext for 'u:r:vendor_init:s0' with pid 8
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/hw/init.rc...
[Wed Jun 26 18:47:56 2024] init: Added '/init.environ.rc' to import list
[Wed Jun 26 18:47:56 2024] init: Added '/system/etc/init/hw/init.usb.rc' to import list
[Wed Jun 26 18:47:56 2024] init: Added '/init.redroid.rc' to import list
[Wed Jun 26 18:47:56 2024] init: Added '/vendor/etc/init/hw/init.redroid.rc' to import list
[Wed Jun 26 18:47:56 2024] init: Added '/system/etc/init/hw/init.usb.configfs.rc' to import list
[Wed Jun 26 18:47:56 2024] init: Added '/system/etc/init/hw/init.zygote64.rc' to import list
[Wed Jun 26 18:47:56 2024] init: Parsing file /init.environ.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/hw/init.usb.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /init.redroid.rc...
[Wed Jun 26 18:47:56 2024] init: Unable to read config file '/init.redroid.rc': open() failed: No such file or directory
[Wed Jun 26 18:47:56 2024] init: Parsing file /vendor/etc/init/hw/init.redroid.rc...
[Wed Jun 26 18:47:56 2024] init: Unable to read config file '/vendor/etc/init/hw/init.redroid.rc': open() failed: No such file or directory
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/hw/init.usb.configfs.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/hw/init.zygote64.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing directory /system/etc/init...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/android.hidl.allocator@1.0-service.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/android.system.suspend-service.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/apexd.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/atrace.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/atrace_userdebug.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/audioserver.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/blank_screen.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/bootanim.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/bootstat-debug.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/bootstat.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/bpfloader.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/cameraserver.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/clean_scratch_files.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/credstore.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/dmesgd.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/drmserver.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/dumpstate.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/flags_health_check.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/gatekeeperd.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/gpuservice.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/gsid.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/heapprofd.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/hwservicemanager.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/idmap2d.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/incidentd.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/init-debug.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/installd.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/keystore2.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/llkd-debuggable.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/llkd.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/lmkd.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/logcatd.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/logd.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/logtagd.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/lpdumpd.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/mdnsd.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/mediaextractor.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/mediametrics.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/mediaserver.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/mtectrl.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/mtpd.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/netd.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/odsign.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/perfetto.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/prng_seeder.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/profcollectd.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/racoon.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/recovery-persist.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/rss_hwm_reset.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/servicemanager.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/simpleperf.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/snapuserd.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/storaged.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/surfaceflinger.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/tombstoned.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/traced_perf.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/uncrypt.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/usbd.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/vold.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/wifi.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system/etc/init/wificond.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /system_ext/etc/init...
[Wed Jun 26 18:47:56 2024] init: Unable to read config file '/system_ext/etc/init': open() failed: No such file or directory
[Wed Jun 26 18:47:56 2024] init: Parsing directory /vendor/etc/init...
[Wed Jun 26 18:47:56 2024] init: Parsing file /vendor/etc/init/android.hardware.audio.service.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /vendor/etc/init/android.hardware.bluetooth@1.1-service.sim.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /vendor/etc/init/android.hardware.gatekeeper@1.0-service.software.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /vendor/etc/init/android.hardware.graphics.allocator@2.0-service.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /vendor/etc/init/android.hardware.graphics.composer@2.1-service.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /vendor/etc/init/android.hardware.health-service.example.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /vendor/etc/init/android.hardware.keymaster@4.1-service.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /vendor/etc/init/android.hardware.thermal@2.0-service.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /vendor/etc/init/boringssl_self_test.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /vendor/etc/init/cas-default.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /vendor/etc/init/init.redroid.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /vendor/etc/init/power-default.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /vendor/etc/init/redroid.c2.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /vendor/etc/init/redroid.common.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /vendor/etc/init/redroid.legacy.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /vendor/etc/init/rild.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /vendor/etc/init/uinputd.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /vendor/etc/init/vncserver.rc...
[Wed Jun 26 18:47:56 2024] init: Parsing file /odm/etc/init...
[Wed Jun 26 18:47:56 2024] init: Unable to read config file '/odm/etc/init': open() failed: No such file or directory
[Wed Jun 26 18:47:56 2024] init: Parsing file /product/etc/init...
[Wed Jun 26 18:47:56 2024] init: Unable to read config file '/product/etc/init': open() failed: No such file or directory
[Wed Jun 26 18:47:56 2024] init: processing action (SetupCgroups) from (<Builtin Action>:0)
[Wed Jun 26 18:47:56 2024] libprocessgroup: Failed to mount controller blkio: Operation not permitted
[Wed Jun 26 18:47:56 2024] libprocessgroup: Failed to setup blkio cgroup
[Wed Jun 26 18:47:56 2024] libprocessgroup: Mounting memcg with memory_recursiveprot failed. Retrying without.
[Wed Jun 26 18:47:56 2024] libprocessgroup: Failed to mount cgroup v2: Device or resource busy
[Wed Jun 26 18:47:56 2024] libprocessgroup: Failed to setup cgroup2 cgroup
[Wed Jun 26 18:47:56 2024] libprocessgroup: Failed to mount controller cpu: Operation not permitted
[Wed Jun 26 18:47:56 2024] libprocessgroup: Failed to setup cpu cgroup
[Wed Jun 26 18:47:56 2024] libprocessgroup: Failed to mount controller cpuset: Operation not permitted
[Wed Jun 26 18:47:56 2024] libprocessgroup: Failed to setup cpuset cgroup
[Wed Jun 26 18:47:56 2024] libprocessgroup: Failed to mount optional controller memory: Operation not permitted
[Wed Jun 26 18:47:56 2024] init: processing action (SetKptrRestrict) from (<Builtin Action>:0)
[Wed Jun 26 18:47:56 2024] init: processing action (TestPerfEventSelinux) from (<Builtin Action>:0)
[Wed Jun 26 18:47:56 2024] init: Permissive SELinux boot, forcing sys.init.perf_lsm_hooks to 1.
[Wed Jun 26 18:47:56 2024] init: processing action (ConnectEarlyStageSnapuserd) from (<Builtin Action>:0)
[Wed Jun 26 18:47:56 2024] init: processing action (early-init) from (/system/etc/init/hw/init.rc:15)
[Wed Jun 26 18:47:56 2024] init: Command 'write /proc/sys/kernel/sysrq 0' action=early-init (/system/etc/init/hw/init.rc:17) took 67ms and succeeded
[Wed Jun 26 18:47:57 2024] init: Command 'symlink ../tun /dev/net/tun' action=early-init (/system/etc/init/hw/init.rc:42) took 0ms and failed: symlink() failed: File exists
[Wed Jun 26 18:47:57 2024] init: starting service 'ueventd'...
[Wed Jun 26 18:47:57 2024] libprocessgroup: SetCgroup::ExecuteForProcess: failed to open /dev/blkio//cgroup.procs: No such file or directory
[Wed Jun 26 18:47:57 2024] libprocessgroup: Failed to apply NormalIoPriority process profile
[Wed Jun 26 18:47:57 2024] init: ... started service 'ueventd' has pid 9
[Wed Jun 26 18:47:57 2024] init: Command 'start ueventd' action=early-init (/system/etc/init/hw/init.rc:71) took 64ms and succeeded
[Wed Jun 26 18:47:57 2024] init: starting service 'apexd-bootstrap'...
[Wed Jun 26 18:47:57 2024] libprocessgroup: SetCgroup::ExecuteForProcess: failed to open /dev/blkio//cgroup.procs: No such file or directory
[Wed Jun 26 18:47:57 2024] libprocessgroup: Failed to apply NormalIoPriority process profile
[Wed Jun 26 18:47:57 2024] init: ... started service 'apexd-bootstrap' has pid 10
[Wed Jun 26 18:47:57 2024] init: SVC_EXEC service 'apexd-bootstrap' pid 10 (uid 0 gid 1000+0 context default) started; waiting...
[Wed Jun 26 18:47:57 2024] ueventd: ueventd started!
[Wed Jun 26 18:47:57 2024] selinux: SELinux: Loaded file context from:
[Wed Jun 26 18:47:57 2024] selinux: 		/system/etc/selinux/plat_file_contexts
[Wed Jun 26 18:47:57 2024] selinux: 		/vendor/etc/selinux/vendor_file_contexts
[Wed Jun 26 18:47:57 2024] ueventd: Parsing file /system/etc/ueventd.rc...
[Wed Jun 26 18:47:57 2024] ueventd: Added '/vendor/etc/ueventd.rc' to import list
[Wed Jun 26 18:47:57 2024] ueventd: Added '/odm/etc/ueventd.rc' to import list
[Wed Jun 26 18:47:57 2024] ueventd: Parsing file /vendor/etc/ueventd.rc...
[Wed Jun 26 18:47:57 2024] ueventd: Unable to read config file '/vendor/etc/ueventd.rc': open() failed: No such file or directory
[Wed Jun 26 18:47:57 2024] ueventd: Parsing file /odm/etc/ueventd.rc...
[Wed Jun 26 18:47:57 2024] ueventd: Unable to read config file '/odm/etc/ueventd.rc': open() failed: No such file or directory
[Wed Jun 26 18:47:57 2024] ueventd: [libfs_mgr] ReadDefaultFstab(): failed to find device default fstab
[Wed Jun 26 18:47:57 2024] apexd: Bootstrap subcommand detected
[Wed Jun 26 18:47:57 2024] apexd: ActivateFlattenedApex
[Wed Jun 26 18:47:57 2024] apexd: Scanning /system/apex
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.adbd onto /apex/com.android.adbd
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.adservices onto /apex/com.android.adservices
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.appsearch onto /apex/com.android.appsearch
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.art onto /apex/com.android.art
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.btservices onto /apex/com.android.btservices
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.configinfrastructure onto /apex/com.android.configinfrastructure
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.conscrypt onto /apex/com.android.conscrypt
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.devicelock onto /apex/com.android.devicelock
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.extservices onto /apex/com.android.extservices
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.healthfitness onto /apex/com.android.healthfitness
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.i18n onto /apex/com.android.i18n
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.ipsec onto /apex/com.android.ipsec
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.media onto /apex/com.android.media
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.media.swcodec onto /apex/com.android.media.swcodec
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.mediaprovider onto /apex/com.android.mediaprovider
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.neuralnetworks onto /apex/com.android.neuralnetworks
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.ondevicepersonalization onto /apex/com.android.ondevicepersonalization
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.os.statsd onto /apex/com.android.os.statsd
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.permission onto /apex/com.android.permission
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.resolv onto /apex/com.android.resolv
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.rkpd onto /apex/com.android.rkpd
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.runtime onto /apex/com.android.runtime
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.scheduling onto /apex/com.android.scheduling
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.sdkext onto /apex/com.android.sdkext
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.tethering onto /apex/com.android.tethering
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.tzdata onto /apex/com.android.tzdata
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.uwb onto /apex/com.android.uwb
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.virt onto /apex/com.android.virt
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.vndk.current onto /apex/com.android.vndk.v34
[Wed Jun 26 18:47:57 2024] apexd: Bind mounting /system/apex/com.android.wifi onto /apex/com.android.wifi
[Wed Jun 26 18:47:57 2024] apexd: Scanning /system_ext/apex
[Wed Jun 26 18:47:57 2024] apexd: Failed to scan /system_ext/apex : Can't open /system_ext/apex for reading : No such file or directory
[Wed Jun 26 18:47:57 2024] apexd: Scanning /product/apex
[Wed Jun 26 18:47:57 2024] apexd: Failed to scan /product/apex : Can't open /product/apex for reading : No such file or directory
[Wed Jun 26 18:47:57 2024] apexd: Scanning /vendor/apex
[Wed Jun 26 18:47:57 2024] apexd: Failed to scan /vendor/apex : Can't open /vendor/apex for reading : No such file or directory
[Wed Jun 26 18:47:57 2024] init: Service 'apexd-bootstrap' (pid 10) exited with status 0 waiting took 0.640000 seconds
[Wed Jun 26 18:47:57 2024] init: Sending signal 9 to service 'apexd-bootstrap' (pid 10) process group...
[Wed Jun 26 18:47:57 2024] libprocessgroup: Successfully killed process cgroup uid 0 pid 10 in 3ms
[Wed Jun 26 18:47:58 2024] init: linkerconfig generated /linkerconfig with mounted APEX modules info
[Wed Jun 26 18:47:58 2024] init: Command 'update_linker_config' action=early-init (/system/etc/init/hw/init.rc:79) took 426ms and succeeded
[Wed Jun 26 18:47:58 2024] init: processing action (early-init) from (/init.environ.rc:2)
[Wed Jun 26 18:47:58 2024] init: processing action (ro.product.debugfs_restrictions.enabled=true && early-init) from (/system/etc/init/init-debug.rc:10)
[Wed Jun 26 18:47:58 2024] init: processing action (early-init) from (/system/etc/init/prng_seeder.rc:5)
[Wed Jun 26 18:47:58 2024] init: starting service 'prng_seeder'...
[Wed Jun 26 18:47:58 2024] init: Created socket '/dev/socket/prng_seeder', mode 666, user 1092, group 1092
[Wed Jun 26 18:47:58 2024] libprocessgroup: SetCgroup::ExecuteForProcess: failed to open /dev/blkio//cgroup.procs: No such file or directory
[Wed Jun 26 18:47:58 2024] libprocessgroup: Failed to apply NormalIoPriority process profile
[Wed Jun 26 18:47:58 2024] init: ... started service 'prng_seeder' has pid 12
[Wed Jun 26 18:47:58 2024] init: Command 'start prng_seeder' action=early-init (/system/etc/init/prng_seeder.rc:6) took 59ms and succeeded
[Wed Jun 26 18:47:58 2024] init: processing action (ro.product.cpu.abilist64=* && early-init) from (/vendor/etc/init/boringssl_self_test.rc:4)
[Wed Jun 26 18:47:58 2024] init: starting service 'boringssl_self_test64_vendor'...
[Wed Jun 26 18:47:58 2024] libprocessgroup: SetCgroup::ExecuteForProcess: failed to open /dev/blkio//cgroup.procs: No such file or directory
[Wed Jun 26 18:47:58 2024] libprocessgroup: Failed to apply NormalIoPriority process profile
[Wed Jun 26 18:47:58 2024] init: ... started service 'boringssl_self_test64_vendor' has pid 13
[Wed Jun 26 18:47:58 2024] init: SVC_EXEC service 'boringssl_self_test64_vendor' pid 13 (uid 0 gid 0+0 context default) started; waiting...
[Wed Jun 26 18:47:58 2024] init: Command 'exec_start boringssl_self_test64_vendor' action=ro.product.cpu.abilist64=* && early-init (/vendor/etc/init/boringssl_self_test.rc:5) took 65ms and succeeded
[Wed Jun 26 18:47:58 2024] prng_seeder: Hanging forever because setup failed: Unable to open hwrng /dev/hw_random

[Wed Jun 26 18:47:58 2024] Caused by:
[Wed Jun 26 18:47:58 2024]     No such file or directory (os error 2)
[Wed Jun 26 18:47:58 2024] init: Service 'boringssl_self_test64_vendor' (pid 13) exited with status 0 waiting took 0.274000 seconds
[Wed Jun 26 18:47:58 2024] init: Sending signal 9 to service 'boringssl_self_test64_vendor' (pid 13) process group...
[Wed Jun 26 18:47:58 2024] libprocessgroup: Successfully killed process cgroup uid 0 pid 13 in 0ms
[Wed Jun 26 18:47:58 2024] init: processing action (early-init) from (/vendor/etc/init/redroid.common.rc:1)
[Wed Jun 26 18:47:58 2024] init: Command 'mount debugfs debugfs /sys/kernel/debug mode=755' action=early-init (/vendor/etc/init/redroid.common.rc:2) took 2ms and failed: mount() failed: Device or resource busy
[Wed Jun 26 18:47:58 2024] init: Command 'chmod 0666 /dev/ptmx' action=early-init (/vendor/etc/init/redroid.common.rc:8) took 2ms and failed: fchmodat() failed: Operation not supported on transport endpoint
[Wed Jun 26 18:47:58 2024] init: starting service 'exec 1 (/bin/rm -rf /dev/input)'...
[Wed Jun 26 18:47:58 2024] libprocessgroup: SetCgroup::ExecuteForProcess: failed to open /dev/blkio//cgroup.procs: No such file or directory
[Wed Jun 26 18:47:58 2024] libprocessgroup: Failed to apply NormalIoPriority process profile
[Wed Jun 26 18:47:58 2024] init: ... started service 'exec 1 (/bin/rm -rf /dev/input)' has pid 14
[Wed Jun 26 18:47:58 2024] init: SVC_EXEC service 'exec 1 (/bin/rm -rf /dev/input)' pid 14 (uid 0 gid 0+0 context default) started; waiting...
[Wed Jun 26 18:47:58 2024] init: Service 'exec 1 (/bin/rm -rf /dev/input)' (pid 14) exited with status 0 waiting took 0.186000 seconds
[Wed Jun 26 18:47:58 2024] init: Sending signal 9 to service 'exec 1 (/bin/rm -rf /dev/input)' (pid 14) process group...
[Wed Jun 26 18:47:58 2024] libprocessgroup: Successfully killed process cgroup uid 0 pid 14 in 0ms
[Wed Jun 26 18:47:58 2024] init: processing action (wait_for_coldboot_done) from (<Builtin Action>:0)
[Wed Jun 26 18:47:58 2024] init: start_waiting_for_property("ro.cold_boot_done", "true"): already set
[Wed Jun 26 18:47:58 2024] init: processing action (SetMmapRndBits) from (<Builtin Action>:0)
[Wed Jun 26 18:47:58 2024] init: processing action (KeychordInit) from (<Builtin Action>:0)
[Wed Jun 26 18:47:58 2024] init: processing action (init) from (/system/etc/init/hw/init.rc:97)
[Wed Jun 26 18:47:58 2024] init: Command 'copy /system/etc/prop.default /dev/urandom' action=init (/system/etc/init/hw/init.rc:102) took 0ms and failed: Could not read input file '/system/etc/prop.default': open() failed: No such file or directory
[Wed Jun 26 18:47:58 2024] init: Command 'symlink /proc/self/fd/0 /dev/stdin' action=init (/system/etc/init/hw/init.rc:104) took 0ms and failed: symlink() failed: File exists
[Wed Jun 26 18:47:58 2024] init: Command 'symlink /proc/self/fd/1 /dev/stdout' action=init (/system/etc/init/hw/init.rc:105) took 0ms and failed: symlink() failed: File exists
[Wed Jun 26 18:47:58 2024] init: Command 'symlink /proc/self/fd/2 /dev/stderr' action=init (/system/etc/init/hw/init.rc:106) took 0ms and failed: symlink() failed: File exists
[Wed Jun 26 18:47:58 2024] init: starting service 'exec 2 (/vendor/bin/binder_alloc /dev/binderfs/binder-control binder hwbinder vndbinder)'...
[Wed Jun 26 18:47:58 2024] init: ... started service 'exec 2 (/vendor/bin/binder_alloc /dev/binderfs/binder-control binder hwbinder vndbinder)' has pid 15
[Wed Jun 26 18:47:58 2024] init: SVC_EXEC service 'exec 2 (/vendor/bin/binder_alloc /dev/binderfs/binder-control binder hwbinder vndbinder)' pid 15 (uid 0 gid 0+0 context default) started; waiting...
[Wed Jun 26 18:47:59 2024] init: Service 'exec 2 (/vendor/bin/binder_alloc /dev/binderfs/binder-control binder hwbinder vndbinder)' (pid 15) exited with status 0 waiting took 0.203000 seconds
[Wed Jun 26 18:47:59 2024] init: Sending signal 9 to service 'exec 2 (/vendor/bin/binder_alloc /dev/binderfs/binder-control binder hwbinder vndbinder)' (pid 15) process group...
[Wed Jun 26 18:47:59 2024] init: Command 'copy /dev/cpuset/cpus /dev/cpuset/foreground/cpus' action=init (/system/etc/init/hw/init.rc:344) took 0ms and failed: Could not read input file '/dev/cpuset/cpus': open() failed: No such file or directory
[Wed Jun 26 18:47:59 2024] init: Command 'copy /dev/cpuset/mems /dev/cpuset/foreground/mems' action=init (/system/etc/init/hw/init.rc:345) took 0ms and failed: Could not read input file '/dev/cpuset/mems': open() failed: No such file or directory
[Wed Jun 26 18:47:59 2024] init: Command 'copy /dev/cpuset/cpus /dev/cpuset/background/cpus' action=init (/system/etc/init/hw/init.rc:347) took 0ms and failed: Could not read input file '/dev/cpuset/cpus': open() failed: No such file or directory
[Wed Jun 26 18:47:59 2024] init: Command 'copy /dev/cpuset/mems /dev/cpuset/background/mems' action=init (/system/etc/init/hw/init.rc:348) took 0ms and failed: Could not read input file '/dev/cpuset/mems': open() failed: No such file or directory
[Wed Jun 26 18:47:59 2024] init: Command 'copy /dev/cpuset/cpus /dev/cpuset/system-background/cpus' action=init (/system/etc/init/hw/init.rc:353) took 0ms and failed: Could not read input file '/dev/cpuset/cpus': open() failed: No such file or directory
[Wed Jun 26 18:47:59 2024] init: Command 'copy /dev/cpuset/mems /dev/cpuset/system-background/mems' action=init (/system/etc/init/hw/init.rc:354) took 0ms and failed: Could not read input file '/dev/cpuset/mems': open() failed: No such file or directory
[Wed Jun 26 18:47:59 2024] init: Command 'copy /dev/cpuset/cpus /dev/cpuset/restricted/cpus' action=init (/system/etc/init/hw/init.rc:359) took 0ms and failed: Could not read input file '/dev/cpuset/cpus': open() failed: No such file or directory
[Wed Jun 26 18:47:59 2024] init: Command 'copy /dev/cpuset/mems /dev/cpuset/restricted/mems' action=init (/system/etc/init/hw/init.rc:360) took 0ms and failed: Could not read input file '/dev/cpuset/mems': open() failed: No such file or directory
[Wed Jun 26 18:47:59 2024] init: Command 'copy /dev/cpuset/cpus /dev/cpuset/top-app/cpus' action=init (/system/etc/init/hw/init.rc:363) took 0ms and failed: Could not read input file '/dev/cpuset/cpus': open() failed: No such file or directory
[Wed Jun 26 18:47:59 2024] init: Command 'copy /dev/cpuset/mems /dev/cpuset/top-app/mems' action=init (/system/etc/init/hw/init.rc:364) took 0ms and failed: Could not read input file '/dev/cpuset/mems': open() failed: No such file or directory
[Wed Jun 26 18:47:59 2024] init: Command 'copy /dev/cpuset/cpus /dev/cpuset/camera-daemon/cpus' action=init (/system/etc/init/hw/init.rc:368) took 0ms and failed: Could not read input file '/dev/cpuset/cpus': open() failed: No such file or directory
[Wed Jun 26 18:47:59 2024] init: Command 'copy /dev/cpuset/mems /dev/cpuset/camera-daemon/mems' action=init (/system/etc/init/hw/init.rc:369) took 0ms and failed: Could not read input file '/dev/cpuset/mems': open() failed: No such file or directory
[Wed Jun 26 18:47:59 2024] init: Command 'symlink /proc/self/fd /dev/fd' action=init (/system/etc/init/hw/init.rc:444) took 0ms and failed: symlink() failed: File exists
[Wed Jun 26 18:47:59 2024] init: Command 'write /dev/cpu_variant:${ro.bionic.2nd_arch} ${ro.bionic.2nd_cpu_variant}' action=init (/system/etc/init/hw/init.rc:455) took 0ms and failed: property 'ro.bionic.2nd_arch' doesn't exist while expanding '/dev/cpu_variant:${ro.bionic.2nd_arch}'
[Wed Jun 26 18:47:59 2024] init: Command 'chmod 0444 /dev/cpu_variant:${ro.bionic.2nd_arch}' action=init (/system/etc/init/hw/init.rc:456) took 0ms and failed: property 'ro.bionic.2nd_arch' doesn't exist while expanding '/dev/cpu_variant:${ro.bionic.2nd_arch}'
[Wed Jun 26 18:47:59 2024] init: starting service 'logd'...
[Wed Jun 26 18:47:59 2024] init: Created socket '/dev/socket/logd', mode 666, user 1036, group 1036
[Wed Jun 26 18:47:59 2024] init: Created socket '/dev/socket/logdr', mode 666, user 1036, group 1036
[Wed Jun 26 18:47:59 2024] init: Created socket '/dev/socket/logdw', mode 222, user 1036, group 1036
[Wed Jun 26 18:47:59 2024] init: failed to set task profiles
[Wed Jun 26 18:47:59 2024] init: ... started service 'logd' has pid 16
[Wed Jun 26 18:47:59 2024] init: Command 'start logd' action=init (/system/etc/init/hw/init.rc:469) took 56ms and succeeded
[Wed Jun 26 18:47:59 2024] init: starting service 'lmkd'...
[Wed Jun 26 18:47:59 2024] init: Created socket '/dev/socket/lmkd', mode 660, user 1000, group 1000
[Wed Jun 26 18:47:59 2024] init: failed to set task profiles
[Wed Jun 26 18:47:59 2024] init: ... started service 'lmkd' has pid 17
[Wed Jun 26 18:47:59 2024] init: starting service 'servicemanager'...
[Wed Jun 26 18:47:59 2024] init: failed to set task profiles
[Wed Jun 26 18:47:59 2024] init: ... started service 'servicemanager' has pid 18
[Wed Jun 26 18:47:59 2024] init: Command 'start servicemanager' action=init (/system/etc/init/hw/init.rc:479) took 51ms and succeeded
[Wed Jun 26 18:47:59 2024] init: starting service 'hwservicemanager'...
[Wed Jun 26 18:47:59 2024] init: failed to set task profiles
[Wed Jun 26 18:47:59 2024] init: ... started service 'hwservicemanager' has pid 19
[Wed Jun 26 18:47:59 2024] init: Command 'start hwservicemanager' action=init (/system/etc/init/hw/init.rc:480) took 54ms and succeeded
[Wed Jun 26 18:47:59 2024] init: Command 'start vndservicemanager' action=init (/system/etc/init/hw/init.rc:481) took 0ms and failed: service vndservicemanager not found
[Wed Jun 26 18:47:59 2024] init: processing action (ro.product.cpu.abilist64=* && init) from (/system/etc/init/hw/init.rc:486)
[Wed Jun 26 18:47:59 2024] init: starting service 'boringssl_self_test64'...
[Wed Jun 26 18:47:59 2024] init: ... started service 'boringssl_self_test64' has pid 20
[Wed Jun 26 18:47:59 2024] init: SVC_EXEC service 'boringssl_self_test64' pid 20 (uid 9999 gid 0+0 context default) started; waiting...
[Wed Jun 26 18:47:59 2024] init: Command 'exec_start boringssl_self_test64' action=ro.product.cpu.abilist64=* && init (/system/etc/init/hw/init.rc:487) took 82ms and succeeded
[Wed Jun 26 18:47:59 2024] logd.auditd: start
[Wed Jun 26 18:47:59 2024] logd.klogd: 100695678375
[Wed Jun 26 18:47:59 2024] logd: Loaded bug_map file: /vendor/etc/selinux/selinux_denial_metadata
[Wed Jun 26 18:47:59 2024] logd: Loaded bug_map file: /system/etc/selinux/bug_map
[Wed Jun 26 18:47:59 2024] servicemanager: Starting sm instance on /dev/binder
[Wed Jun 26 18:47:59 2024] binder_alloc_selftest: STARTED
[Wed Jun 26 18:47:59 2024] init: Service 'boringssl_self_test64' (pid 20) exited with status 0 waiting took 0.389000 seconds
[Wed Jun 26 18:47:59 2024] init: Sending signal 9 to service 'boringssl_self_test64' (pid 20) process group...
[Wed Jun 26 18:47:59 2024] init: processing action (ro.debuggable=1 && init) from (/system/etc/init/hw/init.rc:1314)
[Wed Jun 26 18:47:59 2024] init: starting service 'console'...
[Wed Jun 26 18:48:00 2024] init: ... started service 'console' has pid 29
[Wed Jun 26 18:48:00 2024] init: Command 'start console' action=ro.debuggable=1 && init (/system/etc/init/hw/init.rc:1315) took 73ms and succeeded
[Wed Jun 26 18:48:00 2024] init: processing action (init) from (/system/etc/init/hw/init.usb.rc:27)
[Wed Jun 26 18:48:00 2024] init: processing action (init) from (/system/etc/init/audioserver.rc:58)
[Wed Jun 26 18:48:00 2024] init: processing action (ro.boot.use_redroid_c2=1 && init) from (/vendor/etc/init/redroid.c2.rc:1)
[Wed Jun 26 18:48:00 2024] init: starting service 'exec 3 (/vendor/bin/redroid.c2.sh)'...
[Wed Jun 26 18:48:00 2024] init: ... started service 'exec 3 (/vendor/bin/redroid.c2.sh)' has pid 30
[Wed Jun 26 18:48:00 2024] init: SVC_EXEC service 'exec 3 (/vendor/bin/redroid.c2.sh)' pid 30 (uid 0 gid 0+0 context default) started; waiting...
[Wed Jun 26 18:48:00 2024] init: Command 'exec -- /vendor/bin/redroid.c2.sh' action=ro.boot.use_redroid_c2=1 && init (/vendor/etc/init/redroid.c2.rc:2) took 68ms and succeeded
[Wed Jun 26 18:48:00 2024] init: Service 'exec 3 (/vendor/bin/redroid.c2.sh)' (pid 30) exited with status 0 waiting took 0.738000 seconds
[Wed Jun 26 18:48:00 2024] init: Sending signal 9 to service 'exec 3 (/vendor/bin/redroid.c2.sh)' (pid 30) process group...
[Wed Jun 26 18:48:00 2024] init: processing action (init) from (/vendor/etc/init/redroid.common.rc:60)
[Wed Jun 26 18:48:00 2024] init: processing action (late-init) from (/system/etc/init/hw/init.rc:532)
[Wed Jun 26 18:48:00 2024] init: processing action (late-init) from (/system/etc/init/atrace.rc:3)
[Wed Jun 26 18:48:00 2024] init: Command 'copy /system/etc/ftrace_synthetic_events.conf /sys/kernel/tracing/synthetic_events' action=late-init (/system/etc/init/atrace.rc:294) took 3ms and failed: Could not write to output file '/sys/kernel/tracing/synthetic_events': open() failed: No such file or directory
[Wed Jun 26 18:48:01 2024] init: Command 'copy /system/etc/ftrace_synthetic_events.conf /sys/kernel/debug/tracing/synthetic_events' action=late-init (/system/etc/init/atrace.rc:295) took 0ms and failed: Could not write to output file '/sys/kernel/debug/tracing/synthetic_events': open() failed: No such file or directory
[Wed Jun 26 18:48:01 2024] init: processing action (queue_property_triggers) from (<Builtin Action>:0)
[Wed Jun 26 18:48:01 2024] init: processing action (early-fs) from (/system/etc/init/hw/init.rc:565)
[Wed Jun 26 18:48:01 2024] init: starting service 'vold'...
[Wed Jun 26 18:48:01 2024] init: failed to set task profiles
[Wed Jun 26 18:48:01 2024] init: ... started service 'vold' has pid 33
[Wed Jun 26 18:48:01 2024] init: Command 'start vold' action=early-fs (/system/etc/init/hw/init.rc:567) took 52ms and succeeded
[Wed Jun 26 18:48:01 2024] init: processing action (fs) from (/system/etc/init/logd.rc:29)
[Wed Jun 26 18:48:01 2024] init: processing action (fs) from (/system/etc/init/wifi.rc:25)
[Wed Jun 26 18:48:01 2024] init: processing action (post-fs) from (/system/etc/init/hw/init.rc:569)
[Wed Jun 26 18:48:01 2024] init: starting service 'exec 4 (/system/bin/vdc checkpoint markBootAttempt)'...
[Wed Jun 26 18:48:01 2024] init: ... started service 'exec 4 (/system/bin/vdc checkpoint markBootAttempt)' has pid 34
[Wed Jun 26 18:48:01 2024] init: SVC_EXEC service 'exec 4 (/system/bin/vdc checkpoint markBootAttempt)' pid 34 (uid 1000 gid 1000+0 context default) started; waiting...
[Wed Jun 26 18:48:01 2024] init: Command 'exec - system system -- /system/bin/vdc checkpoint markBootAttempt' action=post-fs (/system/etc/init/hw/init.rc:570) took 72ms and succeeded
[Wed Jun 26 18:48:01 2024] vold: Failed to opendir: No such file or directory
[Wed Jun 26 18:48:01 2024] vold: Failed to open default fstab: No such file or directory
[Wed Jun 26 18:48:01 2024] vold: Error reading configuration... continuing anyways: No such file or directory
Client:
 Version:    26.1.4
 Context:    default
 Debug Mode: false

Server:
 Containers: 1
  Running: 1
  Paused: 0
  Stopped: 0
 Images: 1
 Server Version: 26.1.4
 Storage Driver: overlay2
  Backing Filesystem: extfs
  Supports d_type: true
  Using metacopy: false
  Native Overlay Diff: true
  userxattr: false
 Logging Driver: json-file
 Cgroup Driver: systemd
 Cgroup Version: 2
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog
 Swarm: inactive
 Runtimes: io.containerd.runc.v2 runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: ae71819c4f5e67bb4d5ae76a6b735f29cc25774e.m
 runc version: 
 init version: de40ad0
 Security Options:
  seccomp
   Profile: builtin
  cgroupns
 Kernel Version: 6.9.0-1-aarch64-ARCH
 Operating System: Arch Linux ARM
 OSType: linux
 Architecture: aarch64
 CPUs: 32
 Total Memory: 15.59GiB
 Name: archarm
 ID: d6038f14-982d-48d4-b8bf-06a6e1378d8e
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 Experimental: false
 Insecure Registries:
  127.0.0.0/8
 Live Restore Enabled: false
 Default Address Pools:
   Base: 10.10.0.0/16, Size: 24

bash: line 41: lshw: command not found
total 0
drwxr-xr-x   3 root root        100 Jun 26 18:46 .
drwxr-xr-x  19 root root       3340 Jun 26 18:46 ..
drwxr-xr-x   2 root root         80 Jun 26 18:46 by-path
crw-rw----+  1 root video  226,   0 Jun 26 18:46 card0
crw-rw-rw-   1 root render 226, 128 Jun 26 18:46 renderD128
virtio_gpu dev=0000:00:04.0 unique=0000:00:04.0
virtio_gpu dev=0000:00:04.0 unique=0000:00:04.0
virtio_gpu dev=0000:00:04.0 unique=0000:00:04.0
nodev	binder
Currently running services:
  manager
  vold
-------------------------------------------------------------------------------
DUMP OF SERVICE manager:
--------- 0.004s was the duration of dumpsys manager, ending at: 2024-06-27 01:44:48
-------------------------------------------------------------------------------
DUMP OF SERVICE vold:

*** SERVICE 'vold' DUMP TIMEOUT (10000ms) EXPIRED ***


*** SERVICE 'vold' DUMP TIMEOUT (10000ms) EXPIRED ***

--------- 10.012s was the duration of dumpsys vold, ending at: 2024-06-27 01:44:58
bash: line 38: getenforce: command not found
[dalvik.vm.appimageformat]: [lz4]
[dalvik.vm.dex2oat-Xms]: [64m]
[dalvik.vm.dex2oat-Xmx]: [512m]
[dalvik.vm.dex2oat-max-image-block-size]: [524288]
[dalvik.vm.dex2oat-minidebuginfo]: [true]
[dalvik.vm.dex2oat-resolve-startup-strings]: [true]
[dalvik.vm.dex2oat64.enabled]: [true]
[dalvik.vm.dexopt.secondary]: [true]
[dalvik.vm.dexopt.thermal-cutoff]: [2]
[dalvik.vm.heapgrowthlimit]: [256m]
[dalvik.vm.heapmaxfree]: [32m]
[dalvik.vm.heapminfree]: [8m]
[dalvik.vm.heapsize]: [512m]
[dalvik.vm.heapstartsize]: [16m]
[dalvik.vm.heaptargetutilization]: [0.5]
[dalvik.vm.image-dex2oat-Xms]: [64m]
[dalvik.vm.image-dex2oat-Xmx]: [64m]
[dalvik.vm.isa.arm64.features]: [default]
[dalvik.vm.isa.arm64.variant]: [generic]
[dalvik.vm.lockprof.threshold]: [500]
[dalvik.vm.madvise.artfile.size]: [4294967295]
[dalvik.vm.madvise.odexfile.size]: [104857600]
[dalvik.vm.madvise.vdexfile.size]: [104857600]
[dalvik.vm.minidebuginfo]: [true]
[dalvik.vm.usap_pool_enabled]: [false]
[dalvik.vm.usap_pool_refill_delay_ms]: [3000]
[dalvik.vm.usap_pool_size_max]: [3]
[dalvik.vm.usap_pool_size_min]: [1]
[dalvik.vm.usap_refill_threshold]: [1]
[dalvik.vm.useartservice]: [true]
[dalvik.vm.usejit]: [true]
[debug.atrace.tags.enableflags]: [0]
[debug.renderengine.backend]: [gles]
[debug.sf.nobootanimation]: [1]
[debug.stagefright.c2inputsurface]: [-1]
[debug.stagefright.ccodec]: [4]
[external_storage.casefold.enabled]: [1]
[external_storage.projid.enabled]: [1]
[external_storage.sdcardfs.enabled]: [0]
[gsid.image_installed]: [0]
[init.svc.apexd-bootstrap]: [stopped]
[init.svc.boringssl_self_test64]: [stopped]
[init.svc.boringssl_self_test64_vendor]: [stopped]
[init.svc.console]: [running]
[init.svc.hwservicemanager]: [running]
[init.svc.lmkd]: [running]
[init.svc.logd]: [running]
[init.svc.prng_seeder]: [running]
[init.svc.servicemanager]: [running]
[init.svc.ueventd]: [running]
[init.svc.vold]: [running]
[init.svc_debug_pid.apexd-bootstrap]: []
[init.svc_debug_pid.boringssl_self_test64]: []
[init.svc_debug_pid.boringssl_self_test64_vendor]: []
[init.svc_debug_pid.console]: [29]
[init.svc_debug_pid.hwservicemanager]: [19]
[init.svc_debug_pid.lmkd]: [17]
[init.svc_debug_pid.logd]: [16]
[init.svc_debug_pid.prng_seeder]: [12]
[init.svc_debug_pid.servicemanager]: [18]
[init.svc_debug_pid.ueventd]: [9]
[init.svc_debug_pid.vold]: [33]
[log.tag.libprocessgroup]: [F]
[log.tag.stats_log]: [I]
[logd.ready]: [true]
[net.bt.name]: [Android]
[persist.debug.dalvik.vm.core_platform_api_policy]: [just-warn]
[persist.sys.dalvik.vm.lib.2]: [libart.so]
[persist.sys.disable_rescue]: [true]
[persist.sys.fuse]: [1]
[persist.sys.usb.config]: [adb]
[persist.traced.enable]: [1]
[pm.dexopt.ab-ota]: [speed-profile]
[pm.dexopt.bg-dexopt]: [speed-profile]
[pm.dexopt.boot-after-mainline-update]: [verify]
[pm.dexopt.boot-after-ota]: [verify]
[pm.dexopt.cmdline]: [verify]
[pm.dexopt.first-boot]: [verify]
[pm.dexopt.inactive]: [verify]
[pm.dexopt.install]: [speed-profile]
[pm.dexopt.install-bulk]: [speed-profile]
[pm.dexopt.install-bulk-downgraded]: [verify]
[pm.dexopt.install-bulk-secondary]: [verify]
[pm.dexopt.install-bulk-secondary-downgraded]: [extract]
[pm.dexopt.install-fast]: [skip]
[pm.dexopt.post-boot]: [extract]
[pm.dexopt.shared]: [speed]
[ro.actionable_compatible_property.enabled]: [true]
[ro.adb.secure]: [0]
[ro.allow.mock.location]: [0]
[ro.baseband]: [unknown]
[ro.bionic.2nd_arch]: []
[ro.bionic.2nd_cpu_variant]: []
[ro.bionic.arch]: [arm64]
[ro.bionic.cpu_variant]: [generic]
[ro.board.platform]: []
[ro.boot.hardware]: [redroid]
[ro.boot.use_memfd]: [true]
[ro.boot.use_redroid_c2]: [1]
[ro.bootloader]: [unknown]
[ro.bootmode]: [unknown]
[ro.boottime.apexd-bootstrap]: [98064712980]
[ro.boottime.boringssl_self_test64]: [100515916720]
[ro.boottime.boringssl_self_test64_vendor]: [99282322016]
[ro.boottime.console]: [100948342136]
[ro.boottime.hwservicemanager]: [100442317124]
[ro.boottime.init]: [97000605418]
[ro.boottime.lmkd]: [100338883984]
[ro.boottime.logd]: [100281659064]
[ro.boottime.prng_seeder]: [99212828225]
[ro.boottime.servicemanager]: [100385237269]
[ro.boottime.ueventd]: [97994850276]
[ro.boottime.vold]: [102000621769]
[ro.build.characteristics]: [default]
[ro.build.date]: [Mon May 27 15:22:13 UTC 2024]
[ro.build.date.utc]: [1716823333]
[ro.build.description]: [redroid_arm64_only-userdebug 14 UD2A.240505.001.W1 eng.frank.20240527.152423 test-keys]
[ro.build.display.id]: [redroid_arm64_only-userdebug 14 UD2A.240505.001.W1 eng.frank.20240527.152423 test-keys]
[ro.build.fingerprint]: [redroid/redroid_arm64_only/redroid_arm64_only:14/UD2A.240505.001.W1/eng.frank.20240527.152423:userdebug/test-keys]
[ro.build.flavor]: [redroid_arm64_only-userdebug]
[ro.build.host]: [build1]
[ro.build.id]: [UD2A.240505.001.W1]
[ro.build.product]: [redroid_arm64_only]
[ro.build.tags]: [test-keys]
[ro.build.type]: [userdebug]
[ro.build.user]: [frank]
[ro.build.version.all_codenames]: [REL]
[ro.build.version.base_os]: []
[ro.build.version.codename]: [REL]
[ro.build.version.incremental]: [eng.frank.20240527.152423]
[ro.build.version.known_codenames]: [Base,Base11,Cupcake,Donut,Eclair,Eclair01,EclairMr1,Froyo,Gingerbread,GingerbreadMr1,Honeycomb,HoneycombMr1,HoneycombMr2,IceCreamSandwich,IceCreamSandwichMr1,JellyBean,JellyBeanMr1,JellyBeanMr2,Kitkat,KitkatWatch,Lollipop,LollipopMr1,M,N,NMr1,O,OMr1,P,Q,R,S,Sv2,Tiramisu,UpsideDownCake]
[ro.build.version.min_supported_target_sdk]: [28]
[ro.build.version.preview_sdk]: [0]
[ro.build.version.preview_sdk_fingerprint]: [REL]
[ro.build.version.release]: [14]
[ro.build.version.release_or_codename]: [14]
[ro.build.version.release_or_preview_display]: [14]
[ro.build.version.sdk]: [34]
[ro.build.version.security_patch]: [2024-05-05]
[ro.carrier]: [unknown]
[ro.cold_boot_done]: [true]
[ro.config.alarm_alert]: [Alarm_Classic.ogg]
[ro.config.notification_sound]: [OnTheHunt.ogg]
[ro.config.ringtone]: [Ring_Synth_04.ogg]
[ro.control_privapp_permissions]: [disable]
[ro.cp_system_other_odex]: [0]
[ro.dalvik.vm.enable_uffd_gc]: [false]
[ro.dalvik.vm.native.bridge]: [0]
[ro.debuggable]: [1]
[ro.force.debuggable]: [0]
[ro.gsid.image_running]: [0]
[ro.hardware]: [redroid]
[ro.hwui.use_vulkan]: []
[ro.kernel.version]: [6.9]
[ro.logd.kernel]: [true]
[ro.logd.size.stats]: [64K]
[ro.nnapi.extensions.deny_on_product]: [true]
[ro.odm.build.date]: [Mon May 27 15:22:13 UTC 2024]
[ro.odm.build.date.utc]: [1716823333]
[ro.odm.build.fingerprint]: [redroid/redroid_arm64_only/redroid_arm64_only:14/UD2A.240505.001.W1/frank05271522:userdebug/test-keys]
[ro.odm.build.id]: [UD2A.240505.001.W1]
[ro.odm.build.tags]: [test-keys]
[ro.odm.build.type]: [userdebug]
[ro.odm.build.version.incremental]: [eng.frank.20240527.152423]
[ro.odm.build.version.release]: [14]
[ro.odm.build.version.release_or_codename]: [14]
[ro.odm.build.version.sdk]: [34]
[ro.odm.product.cpu.abilist]: [arm64-v8a]
[ro.odm.product.cpu.abilist32]: []
[ro.odm.product.cpu.abilist64]: [arm64-v8a]
[ro.opengles.version]: [196610]
[ro.postinstall.fstab.prefix]: [/system]
[ro.product.board]: []
[ro.product.brand]: [redroid]
[ro.product.build.date]: [Mon May 27 15:22:13 UTC 2024]
[ro.product.build.date.utc]: [1716823333]
[ro.product.build.fingerprint]: [redroid/redroid_arm64_only/redroid_arm64_only:14/UD2A.240505.001.W1/frank05271522:userdebug/test-keys]
[ro.product.build.id]: [UD2A.240505.001.W1]
[ro.product.build.tags]: [test-keys]
[ro.product.build.type]: [userdebug]
[ro.product.build.version.incremental]: [eng.frank.20240527.152423]
[ro.product.build.version.release]: [14]
[ro.product.build.version.release_or_codename]: [14]
[ro.product.build.version.sdk]: [34]
[ro.product.cpu.abi]: [arm64-v8a]
[ro.product.cpu.abilist]: [arm64-v8a]
[ro.product.cpu.abilist32]: []
[ro.product.cpu.abilist64]: [arm64-v8a]
[ro.product.cpu.pagesize.max]: [65536]
[ro.product.debugfs_restrictions.enabled]: [true]
[ro.product.device]: [redroid_arm64_only]
[ro.product.first_api_level]: [34]
[ro.product.locale]: [en-US]
[ro.product.manufacturer]: [redroid]
[ro.product.model]: [redroid14_arm64_only]
[ro.product.name]: [redroid_arm64_only]
[ro.product.odm.brand]: [redroid]
[ro.product.odm.device]: [redroid_arm64_only]
[ro.product.odm.manufacturer]: [redroid]
[ro.product.odm.model]: [redroid14_arm64_only]
[ro.product.odm.name]: [redroid_arm64_only]
[ro.product.product.brand]: [redroid]
[ro.product.product.device]: [redroid_arm64_only]
[ro.product.product.manufacturer]: [redroid]
[ro.product.product.model]: [redroid14_arm64_only]
[ro.product.product.name]: [redroid_arm64_only]
[ro.product.system.brand]: [redroid]
[ro.product.system.device]: [redroid_arm64_only]
[ro.product.system.manufacturer]: [redroid]
[ro.product.system.model]: [redroid14_arm64_only]
[ro.product.system.name]: [redroid_arm64_only]
[ro.product.system_ext.brand]: [redroid]
[ro.product.system_ext.device]: [redroid_arm64_only]
[ro.product.system_ext.manufacturer]: [redroid]
[ro.product.system_ext.model]: [redroid14_arm64_only]
[ro.product.system_ext.name]: [redroid_arm64_only]
[ro.product.vendor.brand]: [redroid]
[ro.product.vendor.device]: [redroid_arm64_only]
[ro.product.vendor.manufacturer]: [redroid]
[ro.product.vendor.model]: [redroid14_arm64_only]
[ro.product.vendor.name]: [redroid_arm64_only]
[ro.product.vendor_dlkm.brand]: [redroid]
[ro.product.vendor_dlkm.device]: [redroid_arm64_only]
[ro.product.vendor_dlkm.manufacturer]: [redroid]
[ro.product.vendor_dlkm.model]: [redroid14_arm64_only]
[ro.product.vendor_dlkm.name]: [redroid_arm64_only]
[ro.product.vndk.version]: [34]
[ro.property_service.version]: [2]
[ro.radio.noril]: [yes]
[ro.recovery.usb.adb.pid]: [D001]
[ro.recovery.usb.fastboot.pid]: [4EE0]
[ro.recovery.usb.vid]: [18D1]
[ro.revision]: [0]
[ro.secure]: [1]
[ro.sf.lcd_density]: [320]
[ro.system.build.date]: [Mon May 27 15:22:13 UTC 2024]
[ro.system.build.date.utc]: [1716823333]
[ro.system.build.fingerprint]: [redroid/redroid_arm64_only/redroid_arm64_only:14/UD2A.240505.001.W1/frank05271522:userdebug/test-keys]
[ro.system.build.id]: [UD2A.240505.001.W1]
[ro.system.build.tags]: [test-keys]
[ro.system.build.type]: [userdebug]
[ro.system.build.version.incremental]: [eng.frank.20240527.152423]
[ro.system.build.version.release]: [14]
[ro.system.build.version.release_or_codename]: [14]
[ro.system.build.version.sdk]: [34]
[ro.system.product.cpu.abilist]: [arm64-v8a]
[ro.system.product.cpu.abilist32]: []
[ro.system.product.cpu.abilist64]: [arm64-v8a]
[ro.system_ext.build.date]: [Mon May 27 15:22:13 UTC 2024]
[ro.system_ext.build.date.utc]: [1716823333]
[ro.system_ext.build.fingerprint]: [redroid/redroid_arm64_only/redroid_arm64_only:14/UD2A.240505.001.W1/frank05271522:userdebug/test-keys]
[ro.system_ext.build.id]: [UD2A.240505.001.W1]
[ro.system_ext.build.tags]: [test-keys]
[ro.system_ext.build.type]: [userdebug]
[ro.system_ext.build.version.incremental]: [eng.frank.20240527.152423]
[ro.system_ext.build.version.release]: [14]
[ro.system_ext.build.version.release_or_codename]: [14]
[ro.system_ext.build.version.sdk]: [34]
[ro.treble.enabled]: [true]
[ro.vendor.api_level]: [34]
[ro.vendor.build.date]: [Mon May 27 15:22:13 UTC 2024]
[ro.vendor.build.date.utc]: [1716823333]
[ro.vendor.build.fingerprint]: [redroid/redroid_arm64_only/redroid_arm64_only:14/UD2A.240505.001.W1/frank05271522:userdebug/test-keys]
[ro.vendor.build.id]: [UD2A.240505.001.W1]
[ro.vendor.build.security_patch]: []
[ro.vendor.build.tags]: [test-keys]
[ro.vendor.build.type]: [userdebug]
[ro.vendor.build.version.incremental]: [eng.frank.20240527.152423]
[ro.vendor.build.version.release]: [14]
[ro.vendor.build.version.release_or_codename]: [14]
[ro.vendor.build.version.sdk]: [34]
[ro.vendor.product.cpu.abilist]: [arm64-v8a]
[ro.vendor.product.cpu.abilist32]: []
[ro.vendor.product.cpu.abilist64]: [arm64-v8a]
[ro.vendor_dlkm.build.date]: [Mon May 27 15:22:13 UTC 2024]
[ro.vendor_dlkm.build.date.utc]: [1716823333]
[ro.vendor_dlkm.build.fingerprint]: [redroid/redroid_arm64_only/redroid_arm64_only:14/UD2A.240505.001.W1/frank05271522:userdebug/test-keys]
[ro.vendor_dlkm.build.id]: [UD2A.240505.001.W1]
[ro.vendor_dlkm.build.tags]: [test-keys]
[ro.vendor_dlkm.build.type]: [userdebug]
[ro.vendor_dlkm.build.version.incremental]: [eng.frank.20240527.152423]
[ro.vendor_dlkm.build.version.release]: [14]
[ro.vendor_dlkm.build.version.release_or_codename]: [14]
[ro.vendor_dlkm.build.version.sdk]: [34]
[ro.vndk.version]: [34]
[ro.wifi.channels]: []
[ro.zygote]: [zygote64]
[security.perf_harden]: [1]
[sys.init.perf_lsm_hooks]: [1]
[sys.lmk.reportkills]: [1]
[sys.usb.configfs]: [0]
[sys.wifitracing.started]: [0]
[tombstoned.max_tombstone_count]: [50]
[
    {
        "Id": "sha256:0595157f43bf3f0f20f3a1264220ced72fa5f1ed4385a1a6d3ebe059a5629700",
        "RepoTags": [
            "redroid/redroid:14.0.0_64only-latest"
        ],
        "RepoDigests": [
            "redroid/redroid@sha256:0a611199ba2e0b5d60af39b3327a517f6407231f4352114ed3bd3cbfe2be69aa"
        ],
        "Parent": "",
        "Comment": "",
        "Created": "2024-05-27T16:35:45.060714617Z",
        "DockerVersion": "",
        "Author": "Ziyang Zhou <ziyang.zhou@outlook.com>",
        "Config": {
            "Hostname": "",
            "Domainname": "",
            "User": "",
            "AttachStdin": false,
            "AttachStdout": false,
            "AttachStderr": false,
            "Tty": false,
            "OpenStdin": false,
            "StdinOnce": false,
            "Env": null,
            "Cmd": null,
            "Image": "",
            "Volumes": null,
            "WorkingDir": "",
            "Entrypoint": [
                "/init",
                "qemu=1",
                "androidboot.hardware=redroid"
            ],
            "OnBuild": null,
            "Labels": {
                "io.buildah.version": "1.33.1"
            }
        },
        "Architecture": "arm64",
        "Os": "linux",
        "Size": 1589424012,
        "GraphDriver": {
            "Data": {
                "MergedDir": "/var/lib/docker/overlay2/c501b0b61aaedd9888882b55abde3f424a2250a9c4546a4e9a41d018f04fbf1c/merged",
                "UpperDir": "/var/lib/docker/overlay2/c501b0b61aaedd9888882b55abde3f424a2250a9c4546a4e9a41d018f04fbf1c/diff",
                "WorkDir": "/var/lib/docker/overlay2/c501b0b61aaedd9888882b55abde3f424a2250a9c4546a4e9a41d018f04fbf1c/work"
            },
            "Name": "overlay2"
        },
        "RootFS": {
            "Type": "layers",
            "Layers": [
                "sha256:2cf13fc966edb94bf8776a3bcecba859dd53cd2cdbcffccb501d4bf80163fc80"
            ]
        },
        "Metadata": {
            "LastTagTime": "0001-01-01T00:00:00Z"
        }
    }
]
--------- beginning of main
06-26 23:47:59.767    17    17 I lowmemorykiller: Using psi monitors for memory pressure detection
06-26 23:47:59.774    17    17 I lowmemorykiller: Process polling is supported
06-26 23:47:59.793    17    17 I lowmemorykiller: Process reaper initialized with 2 threads in the pool
--------- beginning of kernel
06-26 23:46:19.149     0     0 I         : Booting Linux on physical CPU 0x0000000000 [0x410fd083]
06-26 23:46:19.149     0     0 I         : Linux version 6.9.0-1-aarch64-ARCH (tacokoneko@archarm) (gcc (GCC) 14.1.1 20240507, GNU ld (GNU Binutils) 2.42.0) #2 SMP PREEMPT_DYNAMIC Wed Jun 26 15:54:36 CDT 2024
06-26 23:46:19.149     0     0 I efi     : EFI v2.7 by EDK II
06-26 23:46:19.149     0     0 I efi     : SMBIOS 3.0=0x43bed0000 MEMATTR=0x43a83a018 ACPI 2.0=0x438430018 INITRD=0x43842ff18 RNG=0x43843fd18 MEMRESERVE=0x43842ff98
06-26 23:46:19.149     0     0 I random  : crng init done
06-26 23:46:19.149     0     0 I ACPI    : Early table checksum verification disabled
06-26 23:46:19.149     0     0 I ACPI    : RSDP 0x0000000438430018 000024 (v02 BOCHS )
06-26 23:46:19.149     0     0 I ACPI    : XSDT 0x000000043843FE98 00006C (v01 BOCHS  BXPC     00000001      01000013)
06-26 23:46:19.149     0     0 I ACPI    : FACP 0x000000043843FA98 000114 (v06 BOCHS  BXPC     00000001 BXPC 00000001)
06-26 23:46:19.149     0     0 I ACPI    : DSDT 0x0000000438437518 0017CE (v02 BOCHS  BXPC     00000001 BXPC 00000001)
06-26 23:46:19.149     0     0 I ACPI    : APIC 0x000000043843D898 000A68 (v04 BOCHS  BXPC     00000001 BXPC 00000001)
06-26 23:46:19.149     0     0 I ACPI    : PPTT 0x000000043843E998 0002B8 (v02 BOCHS  BXPC     00000001 BXPC 00000001)
06-26 23:46:19.149     0     0 I ACPI    : GTDT 0x000000043843F818 000060 (v02 BOCHS  BXPC     00000001 BXPC 00000001)
06-26 23:46:19.149     0     0 I ACPI    : MCFG 0x000000043843FF98 00003C (v01 BOCHS  BXPC     00000001 BXPC 00000001)
06-26 23:46:19.149     0     0 I ACPI    : SPCR 0x000000043843F918 000050 (v02 BOCHS  BXPC     00000001 BXPC 00000001)
06-26 23:46:19.149     0     0 I ACPI    : DBG2 0x000000043843F998 000057 (v00 BOCHS  BXPC     00000001 BXPC 00000001)
06-26 23:46:19.149     0     0 I ACPI    : IORT 0x000000043843FC18 000080 (v03 BOCHS  BXPC     00000001 BXPC 00000001)
06-26 23:46:19.149     0     0 I ACPI    : BGRT 0x000000043843FA18 000038 (v01 INTEL  EDK2     00000002      01000013)
06-26 23:46:19.149     0     0 I ACPI    : SPCR: console: pl011,mmio32,0x9000000,9600
06-26 23:46:19.149     0     0 I Zone ranges:  
06-26 23:46:19.149     0     0 I         : DMA      [mem 0x0000000040000000-0x00000000ffffffff]
06-26 23:46:19.149     0     0 I         : DMA32    empty
06-26 23:46:19.149     0     0 I         : Normal   [mem 0x0000000100000000-0x000000043fffffff]
06-26 23:46:19.149     0     0 I         : Movable zone start for each node
06-26 23:46:19.149     0     0 I         : Early memory node ranges
06-26 23:46:19.149     0     0 I node   0: [mem 0x0000000040000000-0x000000043843ffff]
06-26 23:46:19.149     0     0 I node   0: [mem 0x0000000438440000-0x000000043872ffff]
06-26 23:46:19.149     0     0 I node   0: [mem 0x0000000438730000-0x000000043bbfffff]
06-26 23:46:19.149     0     0 I node   0: [mem 0x000000043bc00000-0x000000043bfdffff]
06-26 23:46:19.149     0     0 I node   0: [mem 0x000000043bfe0000-0x000000043fffffff]
06-26 23:46:19.149     0     0 I         : Initmem setup node 0 [mem 0x0000000040000000-0x000000043fffffff]
06-26 23:46:19.149     0     0 I cma     : Reserved 64 MiB at 0x00000000fc000000 on node -1
06-26 23:46:19.149     0     0 I psci    : probing for conduit method from ACPI.
06-26 23:46:19.149     0     0 I psci    : PSCIv1.1 detected in firmware.
06-26 23:46:19.149     0     0 I psci    : Using standard PSCI v0.2 function IDs
06-26 23:46:19.149     0     0 I psci    : Trusted OS migration not required
06-26 23:46:19.149     0     0 I psci    : SMC Calling Convention v1.0
06-26 23:46:19.149     0     0 I percpu  : Embedded 24 pages/cpu s59880 r8192 d30232 u98304
06-26 23:46:19.149     0     0 D pcpu-alloc: s59880 r8192 d30232 u98304 alloc=24*4096
06-26 23:46:19.149     0     0 D pcpu-alloc: [0] 00 [0] 01 [0] 02 [0] 03 [0] 04 [0] 05 [0] 06 [0] 07
06-26 23:46:19.149     0     0 D pcpu-alloc: [0] 08 [0] 09 [0] 10 [0] 11 [0] 12 [0] 13 [0] 14 [0] 15
06-26 23:46:19.149     0     0 D pcpu-alloc: [0] 16 [0] 17 [0] 18 [0] 19 [0] 20 [0] 21 [0] 22 [0] 23
06-26 23:46:19.149     0     0 D pcpu-alloc: [0] 24 [0] 25 [0] 26 [0] 27 [0] 28 [0] 29 [0] 30 [0] 31
06-26 23:46:19.149     0     0 I         : Detected PIPT I-cache on CPU0
06-26 23:46:19.149     0     0 I CPU features: detected: GIC system register CPU interface
06-26 23:46:19.149     0     0 I CPU features: detected: Spectre-v2
06-26 23:46:19.149     0     0 I CPU features: detected: Spectre-v4
06-26 23:46:19.149     0     0 I CPU features: detected: Spectre-BHB
06-26 23:46:19.149     0     0 I CPU features: detected: ARM erratum 1742098
06-26 23:46:19.149     0     0 I CPU features: detected: ARM errata 1165522, 1319367, or 1530923
06-26 23:46:19.149     0     0 I alternatives: applying boot alternatives
06-26 23:46:19.149     0     0 I         : Kernel command line: root=UUID=b7d1452f-cf51-4ce4-ad05-fbe5ced9ca00 rw initrd=\initramfs-linux.img
06-26 23:46:19.149     0     0 I         : Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
06-26 23:46:19.149     0     0 I         : Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
06-26 23:46:19.149     0     0 I         : Built 1 zonelists, mobility grouping on.  Total pages: 4128768
06-26 23:46:19.149     0     0 I mem auto-init: stack:off, heap alloc:off, heap free:off
06-26 23:46:19.149     0     0 I         : software IO TLB: area num 32.
06-26 23:46:19.149     0     0 I         : software IO TLB: mapped [mem 0x00000000f8000000-0x00000000fc000000] (64MB)
06-26 23:46:19.149     0     0 I Memory  : 16262220K/16777216K available (20032K kernel code, 4598K rwdata, 11008K rodata, 8448K init, 998K bss, 449460K reserved, 65536K cma-reserved)
06-26 23:46:19.149     0     0 I SLUB    : HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
06-26 23:46:19.149     0     0 I Dynamic Preempt: full
06-26 23:46:19.149     0     0 I rcu     : Preemptible hierarchical RCU implementation.
06-26 23:46:19.149     0     0 I rcu     : RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=32.
06-26 23:46:19.149     0     0 I         : Trampoline variant of Tasks RCU enabled.
06-26 23:46:19.149     0     0 I         : Tracing variant of Tasks RCU enabled.
06-26 23:46:19.149     0     0 I rcu     : RCU calculated value of scheduler-enlistment delay is 100 jiffies.
06-26 23:46:19.149     0     0 I rcu     : Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
06-26 23:46:19.149     0     0 I RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
06-26 23:46:19.149     0     0 I         : RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
06-26 23:46:19.149     0     0 I NR_IRQS : 64, nr_irqs: 64, preallocated irqs: 0
06-26 23:46:19.149     0     0 I GICv3   : 256 SPIs implemented
06-26 23:46:19.149     0     0 I GICv3   : 0 Extended SPIs implemented
06-26 23:46:19.149     0     0 I         : Root IRQ handler: gic_handle_irq
06-26 23:46:19.149     0     0 I GICv3   : GICv3 features: 16 PPIs
06-26 23:46:19.149     0     0 I GICv3   : CPU0: found redistributor 0 region 0:0x00000000080a0000
06-26 23:46:19.149     0     0 I         : ITS [mem 0x08080000-0x0809ffff]
06-26 23:46:19.149     0     0 I ITS@0x0000000008080000: allocated 8192 Devices @100130000 (indirect, esz 8, psz 64K, shr 1)
06-26 23:46:19.149     0     0 I ITS@0x0000000008080000: allocated 8192 Interrupt Collections @100140000 (flat, esz 8, psz 64K, shr 1)
06-26 23:46:19.149     0     0 I GICv3   : using LPI property table @0x0000000100150000
06-26 23:46:19.149     0     0 I GICv3   : CPU0: using allocated LPI pending table @0x0000000100170000
06-26 23:46:19.149     0     0 I rcu     : srcu_init: Setting srcu_struct sizes based on contention.
06-26 23:46:19.149     0     0 I arch_timer: cp15 timer(s) running at 62.50MHz (virt).
06-26 23:46:19.149     0     0 I clocksource: arch_sys_counter: mask: 0x1ffffffffffffff max_cycles: 0x1cd42e208c, max_idle_ns: 881590405314 ns
06-26 23:46:19.149     0     0 I sched_clock: 57 bits at 63MHz, resolution 16ns, wraps every 4398046511096ns
06-26 23:46:19.161     0     0 I Console : colour dummy device 80x25
06-26 23:46:19.162     0     0 I ACPI    : Core revision 20230628
06-26 23:46:19.165     0     0 I         : Calibrating delay loop (skipped), value calculated using timer frequency.. 125.00 BogoMIPS (lpj=62500)
06-26 23:46:19.165     0     0 I pid_max : default: 32768 minimum: 301
06-26 23:46:19.167     0     0 I LSM     : initializing lsm=capability,yama
06-26 23:46:19.167     0     0 I Yama    : becoming mindful.
06-26 23:46:19.171     0     0 I         : Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
06-26 23:46:19.171     0     0 I         : Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
06-26 23:46:19.208     0     0 I rcu     : Hierarchical SRCU implementation.
06-26 23:46:19.208     0     0 I rcu     : Max phase no-delay instances is 400.
06-26 23:46:19.214     0     0 I Platform MSI: ITS@0x8080000 domain created
06-26 23:46:19.215     0     0 I PCI/MSI : ITS@0x8080000 domain created
06-26 23:46:19.215     0     0 I fsl-mc MSI: ITS@0x8080000 domain created
06-26 23:46:19.216     0     0 I         : Remapping and enabling EFI services.
06-26 23:46:19.226     0     0 I smp     : Bringing up secondary CPUs ...
06-26 23:46:19.229     0     0 I         : Detected PIPT I-cache on CPU1
06-26 23:46:19.230     0     0 I GICv3   : CPU1: found redistributor 1 region 0:0x00000000080c0000
06-26 23:46:19.230     0     0 I GICv3   : CPU1: using allocated LPI pending table @0x0000000100180000
06-26 23:46:19.230     0     0 I CPU1    : Booted secondary processor 0x0000000001 [0x410fd083]
06-26 23:46:19.235     0     0 I         : Detected PIPT I-cache on CPU2
06-26 23:46:19.235     0     0 I GICv3   : CPU2: found redistributor 2 region 0:0x00000000080e0000
06-26 23:46:19.235     0     0 I GICv3   : CPU2: using allocated LPI pending table @0x0000000100190000
06-26 23:46:19.236     0     0 I CPU2    : Booted secondary processor 0x0000000002 [0x410fd083]
06-26 23:46:19.237     0     0 I         : Detected PIPT I-cache on CPU3
06-26 23:46:19.237     0     0 I GICv3   : CPU3: found redistributor 3 region 0:0x0000000008100000
06-26 23:46:19.238     0     0 I GICv3   : CPU3: using allocated LPI pending table @0x00000001001a0000
06-26 23:46:19.238     0     0 I CPU3    : Booted secondary processor 0x0000000003 [0x410fd083]
06-26 23:46:19.240     0     0 I         : Detected PIPT I-cache on CPU4
06-26 23:46:19.240     0     0 I GICv3   : CPU4: found redistributor 4 region 0:0x0000000008120000
06-26 23:46:19.240     0     0 I GICv3   : CPU4: using allocated LPI pending table @0x00000001001b0000
06-26 23:46:19.241     0     0 I CPU4    : Booted secondary processor 0x0000000004 [0x410fd083]
06-26 23:46:19.242     0     0 I         : Detected PIPT I-cache on CPU5
06-26 23:46:19.242     0     0 I GICv3   : CPU5: found redistributor 5 region 0:0x0000000008140000
06-26 23:46:19.243     0     0 I GICv3   : CPU5: using allocated LPI pending table @0x00000001001c0000
06-26 23:46:19.243     0     0 I CPU5    : Booted secondary processor 0x0000000005 [0x410fd083]
06-26 23:46:19.245     0     0 I         : Detected PIPT I-cache on CPU6
06-26 23:46:19.245     0     0 I GICv3   : CPU6: found redistributor 6 region 0:0x0000000008160000
06-26 23:46:19.246     0     0 I GICv3   : CPU6: using allocated LPI pending table @0x00000001001d0000
06-26 23:46:19.246     0     0 I CPU6    : Booted secondary processor 0x0000000006 [0x410fd083]
06-26 23:46:19.248     0     0 I         : Detected PIPT I-cache on CPU7
06-26 23:46:19.248     0     0 I GICv3   : CPU7: found redistributor 7 region 0:0x0000000008180000
06-26 23:46:19.248     0     0 I GICv3   : CPU7: using allocated LPI pending table @0x00000001001e0000
06-26 23:46:19.249     0     0 I CPU7    : Booted secondary processor 0x0000000007 [0x410fd083]
06-26 23:46:19.251     0     0 I         : Detected PIPT I-cache on CPU8
06-26 23:46:19.251     0     0 I GICv3   : CPU8: found redistributor 8 region 0:0x00000000081a0000
06-26 23:46:19.251     0     0 I GICv3   : CPU8: using allocated LPI pending table @0x00000001001f0000
06-26 23:46:19.252     0     0 I CPU8    : Booted secondary processor 0x0000000008 [0x410fd083]
06-26 23:46:19.254     0     0 I         : Detected PIPT I-cache on CPU9
06-26 23:46:19.254     0     0 I GICv3   : CPU9: found redistributor 9 region 0:0x00000000081c0000
06-26 23:46:19.254     0     0 I GICv3   : CPU9: using allocated LPI pending table @0x0000000100200000
06-26 23:46:19.255     0     0 I CPU9    : Booted secondary processor 0x0000000009 [0x410fd083]
06-26 23:46:19.257     0     0 I         : Detected PIPT I-cache on CPU10
06-26 23:46:19.257     0     0 I GICv3   : CPU10: found redistributor a region 0:0x00000000081e0000
06-26 23:46:19.257     0     0 I GICv3   : CPU10: using allocated LPI pending table @0x0000000100210000
06-26 23:46:19.258     0     0 I CPU10   : Booted secondary processor 0x000000000a [0x410fd083]
06-26 23:46:19.260     0     0 I         : Detected PIPT I-cache on CPU11
06-26 23:46:19.260     0     0 I GICv3   : CPU11: found redistributor b region 0:0x0000000008200000
06-26 23:46:19.260     0     0 I GICv3   : CPU11: using allocated LPI pending table @0x0000000100220000
06-26 23:46:19.261     0     0 I CPU11   : Booted secondary processor 0x000000000b [0x410fd083]
06-26 23:46:19.263     0     0 I         : Detected PIPT I-cache on CPU12
06-26 23:46:19.263     0     0 I GICv3   : CPU12: found redistributor c region 0:0x0000000008220000
06-26 23:46:19.263     0     0 I GICv3   : CPU12: using allocated LPI pending table @0x0000000100230000
06-26 23:46:19.265     0     0 I CPU12   : Booted secondary processor 0x000000000c [0x410fd083]
06-26 23:46:19.266     0     0 I         : Detected PIPT I-cache on CPU13
06-26 23:46:19.266     0     0 I GICv3   : CPU13: found redistributor d region 0:0x0000000008240000
06-26 23:46:19.267     0     0 I GICv3   : CPU13: using allocated LPI pending table @0x0000000100240000
06-26 23:46:19.268     0     0 I CPU13   : Booted secondary processor 0x000000000d [0x410fd083]
06-26 23:46:19.270     0     0 I         : Detected PIPT I-cache on CPU14
06-26 23:46:19.270     0     0 I GICv3   : CPU14: found redistributor e region 0:0x0000000008260000
06-26 23:46:19.270     0     0 I GICv3   : CPU14: using allocated LPI pending table @0x0000000100250000
06-26 23:46:19.272     0     0 I CPU14   : Booted secondary processor 0x000000000e [0x410fd083]
06-26 23:46:19.274     0     0 I         : Detected PIPT I-cache on CPU15
06-26 23:46:19.274     0     0 I GICv3   : CPU15: found redistributor f region 0:0x0000000008280000
06-26 23:46:19.274     0     0 I GICv3   : CPU15: using allocated LPI pending table @0x0000000100260000
06-26 23:46:19.275     0     0 I CPU15   : Booted secondary processor 0x000000000f [0x410fd083]
06-26 23:46:19.277     0     0 I         : Detected PIPT I-cache on CPU16
06-26 23:46:19.277     0     0 I GICv3   : CPU16: found redistributor 100 region 0:0x00000000082a0000
06-26 23:46:19.278     0     0 I GICv3   : CPU16: using allocated LPI pending table @0x0000000100270000
06-26 23:46:19.279     0     0 I CPU16   : Booted secondary processor 0x0000000100 [0x410fd083]
06-26 23:46:19.281     0     0 I         : Detected PIPT I-cache on CPU17
06-26 23:46:19.281     0     0 I GICv3   : CPU17: found redistributor 101 region 0:0x00000000082c0000
06-26 23:46:19.281     0     0 I GICv3   : CPU17: using allocated LPI pending table @0x0000000100280000
06-26 23:46:19.283     0     0 I CPU17   : Booted secondary processor 0x0000000101 [0x410fd083]
06-26 23:46:19.285     0     0 I         : Detected PIPT I-cache on CPU18
06-26 23:46:19.285     0     0 I GICv3   : CPU18: found redistributor 102 region 0:0x00000000082e0000
06-26 23:46:19.285     0     0 I GICv3   : CPU18: using allocated LPI pending table @0x0000000100290000
06-26 23:46:19.287     0     0 I CPU18   : Booted secondary processor 0x0000000102 [0x410fd083]
06-26 23:46:19.289     0     0 I         : Detected PIPT I-cache on CPU19
06-26 23:46:19.289     0     0 I GICv3   : CPU19: found redistributor 103 region 0:0x0000000008300000
06-26 23:46:19.289     0     0 I GICv3   : CPU19: using allocated LPI pending table @0x00000001002a0000
06-26 23:46:19.291     0     0 I CPU19   : Booted secondary processor 0x0000000103 [0x410fd083]
06-26 23:46:19.293     0     0 I         : Detected PIPT I-cache on CPU20
06-26 23:46:19.293     0     0 I GICv3   : CPU20: found redistributor 104 region 0:0x0000000008320000
06-26 23:46:19.293     0     0 I GICv3   : CPU20: using allocated LPI pending table @0x00000001002b0000
06-26 23:46:19.296     0     0 I CPU20   : Booted secondary processor 0x0000000104 [0x410fd083]
06-26 23:46:19.298     0     0 I         : Detected PIPT I-cache on CPU21
06-26 23:46:19.298     0     0 I GICv3   : CPU21: found redistributor 105 region 0:0x0000000008340000
06-26 23:46:19.298     0     0 I GICv3   : CPU21: using allocated LPI pending table @0x00000001002c0000
06-26 23:46:19.300     0     0 I CPU21   : Booted secondary processor 0x0000000105 [0x410fd083]
06-26 23:46:19.302     0     0 I         : Detected PIPT I-cache on CPU22
06-26 23:46:19.302     0     0 I GICv3   : CPU22: found redistributor 106 region 0:0x0000000008360000
06-26 23:46:19.302     0     0 I GICv3   : CPU22: using allocated LPI pending table @0x00000001002d0000
06-26 23:46:19.305     0     0 I CPU22   : Booted secondary processor 0x0000000106 [0x410fd083]
06-26 23:46:19.306     0     0 I         : Detected PIPT I-cache on CPU23
06-26 23:46:19.306     0     0 I GICv3   : CPU23: found redistributor 107 region 0:0x0000000008380000
06-26 23:46:19.307     0     0 I GICv3   : CPU23: using allocated LPI pending table @0x00000001002e0000
06-26 23:46:19.309     0     0 I CPU23   : Booted secondary processor 0x0000000107 [0x410fd083]
06-26 23:46:19.314     0     0 I         : Detected PIPT I-cache on CPU24
06-26 23:46:19.314     0     0 I GICv3   : CPU24: found redistributor 108 region 0:0x00000000083a0000
06-26 23:46:19.314     0     0 I GICv3   : CPU24: using allocated LPI pending table @0x00000001002f0000
06-26 23:46:19.317     0     0 I CPU24   : Booted secondary processor 0x0000000108 [0x410fd083]
06-26 23:46:19.319     0     0 I         : Detected PIPT I-cache on CPU25
06-26 23:46:19.319     0     0 I GICv3   : CPU25: found redistributor 109 region 0:0x00000000083c0000
06-26 23:46:19.319     0     0 I GICv3   : CPU25: using allocated LPI pending table @0x0000000100300000
06-26 23:46:19.321     0     0 I CPU25   : Booted secondary processor 0x0000000109 [0x410fd083]
06-26 23:46:19.323     0     0 I         : Detected PIPT I-cache on CPU26
06-26 23:46:19.324     0     0 I GICv3   : CPU26: found redistributor 10a region 0:0x00000000083e0000
06-26 23:46:19.324     0     0 I GICv3   : CPU26: using allocated LPI pending table @0x0000000100310000
06-26 23:46:19.326     0     0 I CPU26   : Booted secondary processor 0x000000010a [0x410fd083]
06-26 23:46:19.328     0     0 I         : Detected PIPT I-cache on CPU27
06-26 23:46:19.329     0     0 I GICv3   : CPU27: found redistributor 10b region 0:0x0000000008400000
06-26 23:46:19.329     0     0 I GICv3   : CPU27: using allocated LPI pending table @0x0000000100320000
06-26 23:46:19.332     0     0 I CPU27   : Booted secondary processor 0x000000010b [0x410fd083]
06-26 23:46:19.334     0     0 I         : Detected PIPT I-cache on CPU28
06-26 23:46:19.334     0     0 I GICv3   : CPU28: found redistributor 10c region 0:0x0000000008420000
06-26 23:46:19.335     0     0 I GICv3   : CPU28: using allocated LPI pending table @0x0000000100330000
06-26 23:46:19.337     0     0 I CPU28   : Booted secondary processor 0x000000010c [0x410fd083]
06-26 23:46:19.340     0     0 I         : Detected PIPT I-cache on CPU29
06-26 23:46:19.340     0     0 I GICv3   : CPU29: found redistributor 10d region 0:0x0000000008440000
06-26 23:46:19.340     0     0 I GICv3   : CPU29: using allocated LPI pending table @0x0000000100340000
06-26 23:46:19.343     0     0 I CPU29   : Booted secondary processor 0x000000010d [0x410fd083]
06-26 23:46:19.345     0     0 I         : Detected PIPT I-cache on CPU30
06-26 23:46:19.345     0     0 I GICv3   : CPU30: found redistributor 10e region 0:0x0000000008460000
06-26 23:46:19.346     0     0 I GICv3   : CPU30: using allocated LPI pending table @0x0000000100350000
06-26 23:46:19.349     0     0 I CPU30   : Booted secondary processor 0x000000010e [0x410fd083]
06-26 23:46:19.351     0     0 I         : Detected PIPT I-cache on CPU31
06-26 23:46:19.351     0     0 I GICv3   : CPU31: found redistributor 10f region 0:0x0000000008480000
06-26 23:46:19.351     0     0 I GICv3   : CPU31: using allocated LPI pending table @0x0000000100360000
06-26 23:46:19.355     0     0 I CPU31   : Booted secondary processor 0x000000010f [0x410fd083]
06-26 23:46:19.356     0     0 I smp     : Brought up 1 node, 32 CPUs
06-26 23:46:19.356     0     0 I SMP     : Total of 32 processors activated.
06-26 23:46:19.356     0     0 I         : CPU: All CPU(s) started at EL1
06-26 23:46:19.356     0     0 I CPU features: detected: 32-bit EL0 Support
06-26 23:46:19.356     0     0 I CPU features: detected: 32-bit EL1 Support
06-26 23:46:19.356     0     0 I CPU features: detected: CRC32 instructions
06-26 23:46:19.389     0     0 I alternatives: applying system-wide alternatives
06-26 23:46:19.458     0     0 I devtmpfs: initialized
06-26 23:46:19.480     0     0 I clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
06-26 23:46:19.481     0     0 I         : futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
06-26 23:46:19.488     0     0 I pinctrl core: initialized pinctrl subsystem
06-26 23:46:19.496     0     0 I         : SMBIOS 3.0.0 present.
06-26 23:46:19.496     0     0 I DMI     : QEMU QEMU Virtual Machine, BIOS 0.0.0 02/06/2015
06-26 23:46:19.651     0     0 I NET     : Registered PF_NETLINK/PF_ROUTE protocol family
06-26 23:46:19.670     0     0 I DMA     : preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
06-26 23:46:19.671     0     0 I DMA     : preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
06-26 23:46:19.672     0     0 I DMA     : preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
06-26 23:46:19.673     0     0 I audit   : initializing netlink subsys (disabled)
01-01 00:00:00.388    16    16 W auditd  : type=2000 audit(0.0:1): state=initialized audit_enabled=0 res=1
06-26 23:46:19.682     0     0 I thermal_sys: Registered thermal governor 'fair_share'
06-26 23:46:19.682     0     0 I thermal_sys: Registered thermal governor 'bang_bang'
06-26 23:46:19.682     0     0 I thermal_sys: Registered thermal governor 'step_wise'
06-26 23:46:19.682     0     0 I thermal_sys: Registered thermal governor 'user_space'
06-26 23:46:19.682     0     0 I thermal_sys: Registered thermal governor 'power_allocator'
06-26 23:46:19.682     0     0 I cpuidle : using governor ladder
06-26 23:46:19.683     0     0 I cpuidle : using governor menu
06-26 23:46:19.684     0     0 I hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
06-26 23:46:19.690     0     0 I         : ASID allocator initialised with 65536 entries
06-26 23:46:19.693     0     0 I acpiphp : ACPI Hot Plug PCI Controller Driver version: 0.5
06-26 23:46:19.696     0     0 I Serial  : AMBA PL011 UART driver
06-26 23:46:19.698     0     0 I Modules : 21440 pages in range for non-PLT usage
06-26 23:46:19.698     0     0 I Modules : 512960 pages in range for PLT usage
06-26 23:46:19.704     0     0 I HugeTLB : registered 1.00 GiB page size, pre-allocated 0 pages
06-26 23:46:19.704     0     0 I HugeTLB : 0 KiB vmemmap can be freed for a 1.00 GiB page
06-26 23:46:19.704     0     0 I HugeTLB : registered 32.0 MiB page size, pre-allocated 0 pages
06-26 23:46:19.704     0     0 I HugeTLB : 0 KiB vmemmap can be freed for a 32.0 MiB page
06-26 23:46:19.704     0     0 I HugeTLB : registered 2.00 MiB page size, pre-allocated 0 pages
06-26 23:46:19.704     0     0 I HugeTLB : 0 KiB vmemmap can be freed for a 2.00 MiB page
06-26 23:46:19.704     0     0 I HugeTLB : registered 64.0 KiB page size, pre-allocated 0 pages
06-26 23:46:19.704     0     0 I HugeTLB : 0 KiB vmemmap can be freed for a 64.0 KiB page
06-26 23:46:19.708     0     0 I cryptd  : max_cpu_qlen set to 1000
06-26 23:46:19.730     0     0 I raid6   : neonx8   gen()  4365 MB/s
06-26 23:46:19.747     0     0 I raid6   : neonx4   gen()  3648 MB/s
06-26 23:46:19.765     0     0 I raid6   : neonx2   gen()  2469 MB/s
06-26 23:46:19.782     0     0 I raid6   : neonx1   gen()  1394 MB/s
06-26 23:46:19.800     0     0 I raid6   : int64x8  gen()  1882 MB/s
06-26 23:46:19.821     0     0 I raid6   : int64x4  gen()  2872 MB/s
06-26 23:46:19.839     0     0 I raid6   : int64x2  gen()  2201 MB/s
06-26 23:46:19.856     0     0 I raid6   : int64x1  gen()  2033 MB/s
06-26 23:46:19.856     0     0 I raid6   : using algorithm neonx8 gen() 4365 MB/s
06-26 23:46:19.874     0     0 I raid6   : .... xor() 1327 MB/s, rmw enabled
06-26 23:46:19.874     0     0 I raid6   : using neon recovery algorithm
06-26 23:46:19.878     0     0 I ACPI    : Added _OSI(Module Device)
06-26 23:46:19.878     0     0 I ACPI    : Added _OSI(Processor Device)
06-26 23:46:19.878     0     0 I ACPI    : Added _OSI(3.0 _SCP Extensions)
06-26 23:46:19.878     0     0 I ACPI    : Added _OSI(Processor Aggregator Device)
06-26 23:46:19.891     0     0 I ACPI    : 1 ACPI AML tables successfully acquired and loaded
06-26 23:46:19.903     0     0 I ACPI    : Interpreter enabled
06-26 23:46:19.903     0     0 I ACPI    : Using GIC for interrupt routing
06-26 23:46:19.903     0     0 I ACPI    : MCFG table detected, 1 entries
06-26 23:46:19.957     0     0 I ARMH0011: 00: ttyAMA0 at MMIO 0x9000000 (irq = 12, base_baud = 0) is a SBSA
06-26 23:46:19.958     0     0 I printk  : legacy console [ttyAMA0] enabled
06-26 23:46:20.072     0     0 I ACPI    : PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
06-26 23:46:20.074     0     0 I acpi PNP0A08: 00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
06-26 23:46:20.078     0     0 I acpi PNP0A08: 00: _OSC: platform does not support [LTR]
06-26 23:46:20.079     0     0 I acpi PNP0A08: 00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
06-26 23:46:20.083     0     0 I acpi PNP0A08: 00: ECAM area [mem 0x4010000000-0x401fffffff] reserved by PNP0C02:00
06-26 23:46:20.084     0     0 I acpi PNP0A08: 00: ECAM at [mem 0x4010000000-0x401fffffff] for [bus 00-ff]
06-26 23:46:20.085     0     0 I ACPI    : Remapped I/O 0x000000003eff0000 to [io  0x0000-0xffff window]
06-26 23:46:20.090     0     0 I         : PCI host bridge to bus 0000:00
06-26 23:46:20.090     0     0 I pci_bus 0000: 00: root bus resource [mem 0x10000000-0x3efeffff window]
06-26 23:46:20.091     0     0 I pci_bus 0000: 00: root bus resource [io  0x0000-0xffff window]
06-26 23:46:20.091     0     0 I pci_bus 0000: 00: root bus resource [mem 0x8000000000-0xffffffffff window]
06-26 23:46:20.091     0     0 I pci_bus 0000: 00: root bus resource [bus 00-ff]
06-26 23:46:20.094     0     0 I pci 0000: 00:00.0: [1b36:0008] type 00 class 0x060000 conventional PCI endpoint
06-26 23:46:20.099     0     0 I pci 0000: 00:01.0: [1af4:1000] type 00 class 0x020000 conventional PCI endpoint
06-26 23:46:20.100     0     0 I pci 0000: 00:01.0: BAR 0 [io  0x0040-0x005f]
06-26 23:46:20.100     0     0 I pci 0000: 00:01.0: BAR 4 [mem 0x8000000000-0x8000003fff 64bit pref]
06-26 23:46:20.101     0     0 I pci 0000: 00:01.0: ROM [mem 0xfffc0000-0xffffffff pref]
06-26 23:46:20.102     0     0 I pci 0000: 00:02.0: [1af4:1004] type 00 class 0x010000 conventional PCI endpoint
06-26 23:46:20.103     0     0 I pci 0000: 00:02.0: BAR 0 [io  0x0000-0x003f]
06-26 23:46:20.104     0     0 I pci 0000: 00:02.0: BAR 1 [mem 0x10042000-0x10042fff]
06-26 23:46:20.107     0     0 I pci 0000: 00:02.0: BAR 4 [mem 0x8000004000-0x8000007fff 64bit pref]
06-26 23:46:20.109     0     0 I pci 0000: 00:03.0: [1af4:1054] type 00 class 0x00ff00 conventional PCI endpoint
06-26 23:46:20.110     0     0 I pci 0000: 00:03.0: BAR 1 [mem 0x10041000-0x10041fff]
06-26 23:46:20.110     0     0 I pci 0000: 00:03.0: BAR 4 [mem 0x8000008000-0x800000bfff 64bit pref]
06-26 23:46:20.111     0     0 I pci 0000: 00:04.0: [1af4:1050] type 00 class 0x038000 conventional PCI endpoint
06-26 23:46:20.113     0     0 I pci 0000: 00:04.0: BAR 1 [mem 0x10040000-0x10040fff]
06-26 23:46:20.117     0     0 I pci 0000: 00:04.0: BAR 4 [mem 0x800000c000-0x800000ffff 64bit pref]
06-26 23:46:20.120     0     0 I pci 0000: 00:05.0: [1b36:000d] type 00 class 0x0c0330 PCIe Root Complex Integrated Endpoint
06-26 23:46:20.120     0     0 I pci 0000: 00:05.0: BAR 0 [mem 0x8000010000-0x8000013fff 64bit]
06-26 23:46:20.122     0     0 D pci_bus 0000: 00: on NUMA node 0
06-26 23:46:20.123     0     0 I pci 0000: 00:01.0: ROM [mem 0x10000000-0x1003ffff pref]: assigned
06-26 23:46:20.124     0     0 I pci 0000: 00:01.0: BAR 4 [mem 0x8000000000-0x8000003fff 64bit pref]: assigned
06-26 23:46:20.125     0     0 I pci 0000: 00:02.0: BAR 4 [mem 0x8000004000-0x8000007fff 64bit pref]: assigned
06-26 23:46:20.125     0     0 I pci 0000: 00:03.0: BAR 4 [mem 0x8000008000-0x800000bfff 64bit pref]: assigned
06-26 23:46:20.126     0     0 I pci 0000: 00:04.0: BAR 4 [mem 0x800000c000-0x800000ffff 64bit pref]: assigned
06-26 23:46:20.127     0     0 I pci 0000: 00:05.0: BAR 0 [mem 0x8000010000-0x8000013fff 64bit]: assigned
06-26 23:46:20.127     0     0 I pci 0000: 00:02.0: BAR 1 [mem 0x10040000-0x10040fff]: assigned
06-26 23:46:20.128     0     0 I pci 0000: 00:03.0: BAR 1 [mem 0x10041000-0x10041fff]: assigned
06-26 23:46:20.128     0     0 I pci 0000: 00:04.0: BAR 1 [mem 0x10042000-0x10042fff]: assigned
06-26 23:46:20.129     0     0 I pci 0000: 00:02.0: BAR 0 [io  0x1000-0x103f]: assigned
06-26 23:46:20.130     0     0 I pci 0000: 00:01.0: BAR 0 [io  0x1040-0x105f]: assigned
06-26 23:46:20.131     0     0 I pci_bus 0000: 00: resource 4 [mem 0x10000000-0x3efeffff window]
06-26 23:46:20.132     0     0 I pci_bus 0000: 00: resource 5 [io  0x0000-0xffff window]
06-26 23:46:20.132     0     0 I pci_bus 0000: 00: resource 6 [mem 0x8000000000-0xffffffffff window]
06-26 23:46:20.134     0     0 I ACPI    : PCI: Interrupt link GSI0 configured for IRQ 35
06-26 23:46:20.134     0     0 I ACPI    : PCI: Interrupt link GSI1 configured for IRQ 36
06-26 23:46:20.135     0     0 I ACPI    : PCI: Interrupt link GSI2 configured for IRQ 37
06-26 23:46:20.135     0     0 I ACPI    : PCI: Interrupt link GSI3 configured for IRQ 38
06-26 23:46:20.141     0     0 I iommu   : Default domain type: Translated
06-26 23:46:20.141     0     0 I iommu   : DMA domain TLB invalidation policy: strict mode
06-26 23:46:20.154     0     0 I         : SCSI subsystem initialized
06-26 23:46:20.156     0     0 D         : libata version 3.00 loaded.
06-26 23:46:20.157     0     0 I ACPI    : bus type USB registered
06-26 23:46:20.158     0     0 I usbcore : registered new interface driver usbfs
06-26 23:46:20.159     0     0 I usbcore : registered new interface driver hub
06-26 23:46:20.159     0     0 I usbcore : registered new device driver usb
06-26 23:46:20.161     0     0 I pps_core: LinuxPPS API ver. 1 registered
06-26 23:46:20.161     0     0 I pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
06-26 23:46:20.162     0     0 I         : PTP clock support registered
06-26 23:46:20.163     0     0 I EDAC MC : Ver: 3.0.0
06-26 23:46:20.166     0     0 I scmi_core: SCMI protocol bus registered
06-26 23:46:20.168     0     0 I efivars : Registered efivars operations
06-26 23:46:20.172     0     0 I         : FPGA manager framework
06-26 23:46:20.173     0     0 I         : Advanced Linux Sound Architecture Driver Initialized.
06-26 23:46:20.186     0     0 I NetLabel: Initializing
06-26 23:46:20.187     0     0 I NetLabel: domain hash size = 128
06-26 23:46:20.187     0     0 I NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
06-26 23:46:20.188     0     0 I NetLabel: unlabeled traffic allowed by default
06-26 23:46:20.190     0     0 I vgaarb  : loaded
06-26 23:46:20.196     0     0 I clocksource: Switched to clocksource arch_sys_counter
06-26 23:46:20.199     0     0 I VFS     : Disk quotas dquot_6.6.0
06-26 23:46:20.200     0     0 I VFS     : Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
06-26 23:46:20.204     0     0 I pnp     : PnP ACPI init
06-26 23:46:20.207     0     0 I system 00: 00: [mem 0x4010000000-0x401fffffff window] could not be reserved
06-26 23:46:20.208     0     0 I pnp     : PnP ACPI: found 1 devices
06-26 23:46:20.237     0     0 I NET     : Registered PF_INET protocol family
06-26 23:46:20.240     0     0 I         : IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
06-26 23:46:20.252     0     0 I         : tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
06-26 23:46:20.253     0     0 I         : Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
06-26 23:46:20.253     0     0 I         : TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
06-26 23:46:20.254     0     0 I         : TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
06-26 23:46:20.256     0     0 I TCP     : Hash tables configured (established 131072 bind 65536)
06-26 23:46:20.258     0     0 I         : MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
06-26 23:46:20.259     0     0 I         : UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
06-26 23:46:20.260     0     0 I         : UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
06-26 23:46:20.263     0     0 I NET     : Registered PF_UNIX/PF_LOCAL protocol family
06-26 23:46:20.267     0     0 I RPC     : Registered named UNIX socket transport module.
06-26 23:46:20.267     0     0 I RPC     : Registered udp transport module.
06-26 23:46:20.268     0     0 I RPC     : Registered tcp transport module.
06-26 23:46:20.268     0     0 I RPC     : Registered tcp-with-tls transport module.
06-26 23:46:20.268     0     0 I RPC     : Registered tcp NFSv4.1 backchannel transport module.
06-26 23:46:20.269     0     0 I pci 0000: 00:05.0: enabling device (0000 -> 0002)
06-26 23:46:20.270     0     0 I PCI     : CLS 0 bytes, default 64
06-26 23:46:20.274     0     0 I         : Trying to unpack rootfs image as initramfs...
06-26 23:46:20.284     0     0 I kvm [1] : HYP mode not available
06-26 23:46:20.295     0     0 I         : Initialise system trusted keyrings
06-26 23:46:20.298     0     0 I workingset: timestamp_bits=46 max_order=22 bucket_order=0
06-26 23:46:20.300     0     0 I zbud    : loaded
06-26 23:46:20.306     0     0 I NFS     : Registering the id_resolver key type
06-26 23:46:20.307     0     0 I         : Key type id_resolver registered
06-26 23:46:20.308     0     0 I         : Key type id_legacy registered
06-26 23:46:20.310     0     0 I nfs4filelayout_init: NFSv4 File Layout Driver Registering...
06-26 23:46:20.312     0     0 I nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
06-26 23:46:20.314     0     0 I ntfs3   : Max link count 4000
06-26 23:46:20.315     0     0 I ntfs3   : Read-only LZX/Xpress compression included
06-26 23:46:20.320     0     0 I         : SGI XFS with ACLs, security attributes, quota, no debug enabled
06-26 23:46:20.376     0     0 I NET     : Registered PF_ALG protocol family
06-26 23:46:20.377     0     0 I xor     : measuring software checksum speed
06-26 23:46:20.380     0     0 I 8regs   : 5029 MB/sec
06-26 23:46:20.382     0     0 I 32regs  : 5522 MB/sec
06-26 23:46:20.386     0     0 I arm64_neon: 2864 MB/sec
06-26 23:46:20.386     0     0 I xor     : using function: 32regs (5522 MB/sec)
06-26 23:46:20.387     0     0 I         : Key type asymmetric registered
06-26 23:46:20.387     0     0 I         : Asymmetric key parser 'x509' registered
06-26 23:46:20.388     0     0 I         : Block layer SCSI generic (bsg) driver version 0.4 loaded (major 241)
06-26 23:46:20.390     0     0 I         : io scheduler mq-deadline registered
06-26 23:46:20.391     0     0 I         : io scheduler kyber registered
06-26 23:46:20.391     0     0 I         : io scheduler bfq registered
06-26 23:46:20.425     0     0 I         : IPMI message handler: version 39.2
06-26 23:46:20.430     0     0 I input   : Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
06-26 23:46:20.432     0     0 I ACPI    : button: Power Button [PWRB]
06-26 23:46:20.480     0     0 I ACPI    : \_SB_.PCI0.GSI1: Enabled at IRQ 36
06-26 23:46:20.481     0     0 I virtio-pci 0000: 00:01.0: enabling device (0000 -> 0003)
06-26 23:46:20.487     0     0 I ACPI    : \_SB_.PCI0.GSI2: Enabled at IRQ 37
06-26 23:46:20.488     0     0 I virtio-pci 0000: 00:02.0: enabling device (0005 -> 0007)
06-26 23:46:20.492     0     0 I ACPI    : \_SB_.PCI0.GSI3: Enabled at IRQ 38
06-26 23:46:20.493     0     0 I virtio-pci 0000: 00:03.0: enabling device (0000 -> 0002)
06-26 23:46:20.497     0     0 I ACPI    : \_SB_.PCI0.GSI0: Enabled at IRQ 35
06-26 23:46:20.505     0     0 I Serial  : 8250/16550 driver, 4 ports, IRQ sharing enabled
06-26 23:46:20.514     0     0 I msm_serial: driver initialized
06-26 23:46:20.518     0     0 W         : SPI driver tpm_tis_spi has no spi_device_id for atmel,attpm20p
06-26 23:46:20.520     0     0 I ACPI    : bus type drm_connector registered
06-26 23:46:20.554     0     0 I virtio_scsi virtio1: 32/0/0 default/read/poll queues
06-26 23:46:20.568     0     0 I         : Freeing initrd memory: 8188K
06-26 23:46:20.579     0     0 I scsi host0: Virtio SCSI HBA
06-26 23:46:20.604     0     0 I scsi 0  : 0:0:0: Direct-Access     QEMU     QEMU HARDDISK    2.5+ PQ: 0 ANSI: 5
06-26 23:46:20.619     0     0 I xhci_hcd 0000: 00:05.0: xHCI Host Controller
06-26 23:46:20.621     0     0 I xhci_hcd 0000: 00:05.0: new USB bus registered, assigned bus number 1
06-26 23:46:20.626     0     0 I xhci_hcd 0000: 00:05.0: hcc params 0x00087001 hci version 0x100 quirks 0x0000000000000010
06-26 23:46:20.631     0     0 I xhci_hcd 0000: 00:05.0: xHCI Host Controller
06-26 23:46:20.632     0     0 I xhci_hcd 0000: 00:05.0: new USB bus registered, assigned bus number 2
06-26 23:46:20.633     0     0 I xhci_hcd 0000: 00:05.0: Host supports USB 3.0 SuperSpeed
06-26 23:46:20.640     0     0 I usb1    : New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.09
06-26 23:46:20.640     0     0 I usb1    : New USB device strings: Mfr=3, Product=2, SerialNumber=1
06-26 23:46:20.640     0     0 I usb1    : Product: xHCI Host Controller
06-26 23:46:20.640     0     0 I usb1    : Manufacturer: Linux 6.9.0-1-aarch64-ARCH xhci-hcd
06-26 23:46:20.641     0     0 I usb1    : SerialNumber: 0000:00:05.0
06-26 23:46:20.645     0     0 I hub 1-0 : 1.0: USB hub found
06-26 23:46:20.646     0     0 I hub 1-0 : 1.0: 4 ports detected
06-26 23:46:20.651     0     0 I usb2    : We don't know the algorithms for LPM for this host, disabling LPM.
06-26 23:46:20.653     0     0 I usb2    : New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.09
06-26 23:46:20.654     0     0 I usb2    : New USB device strings: Mfr=3, Product=2, SerialNumber=1
06-26 23:46:20.655     0     0 I usb2    : Product: xHCI Host Controller
06-26 23:46:20.656     0     0 I usb2    : Manufacturer: Linux 6.9.0-1-aarch64-ARCH xhci-hcd
06-26 23:46:20.656     0     0 I usb2    : SerialNumber: 0000:00:05.0
06-26 23:46:20.658     0     0 I hub 2-0 : 1.0: USB hub found
06-26 23:46:20.659     0     0 I hub 2-0 : 1.0: 4 ports detected
06-26 23:46:20.662     0     0 W         : SPI driver max3421-hcd has no spi_device_id for maxim,max3421
06-26 23:46:20.664     0     0 I usbcore : registered new interface driver uas
06-26 23:46:20.665     0     0 I usbcore : registered new interface driver usb-storage
06-26 23:46:20.665     0     0 I usbcore : registered new interface driver ums-alauda
06-26 23:46:20.666     0     0 I usbcore : registered new interface driver ums-cypress
06-26 23:46:20.667     0     0 I usbcore : registered new interface driver ums-datafab
06-26 23:46:20.667     0     0 I usbcore : registered new interface driver ums_eneub6250
06-26 23:46:20.668     0     0 I usbcore : registered new interface driver ums-freecom
06-26 23:46:20.668     0     0 I usbcore : registered new interface driver ums-isd200
06-26 23:46:20.669     0     0 I usbcore : registered new interface driver ums-jumpshot
06-26 23:46:20.670     0     0 I usbcore : registered new interface driver ums-karma
06-26 23:46:20.670     0     0 I usbcore : registered new interface driver ums-onetouch
06-26 23:46:20.671     0     0 I usbcore : registered new interface driver ums-realtek
06-26 23:46:20.672     0     0 I usbcore : registered new interface driver ums-sddr09
06-26 23:46:20.672     0     0 I usbcore : registered new interface driver ums-sddr55
06-26 23:46:20.673     0     0 I usbcore : registered new interface driver ums-usbat
06-26 23:46:20.674     0     0 I usbcore : registered new interface driver usbserial_generic
06-26 23:46:20.675     0     0 I usbserial: USB Serial support registered for generic
06-26 23:46:20.679     0     0 I mousedev: PS/2 mouse device common for all mice
06-26 23:46:20.686     0     0 I rtc-efi.0: registered as rtc0
06-26 23:46:20.687     0     0 I rtc-efi.0: setting system clock to 2024-06-26T23:46:20 UTC (1719445580)
06-26 23:46:20.694     0     0 I device-mapper: uevent: version 1.0.3
06-26 23:46:20.695     0     0 I device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
06-26 23:46:20.702     0     0 I sdhci   : Secure Digital Host Controller Interface driver
06-26 23:46:20.702     0     0 I sdhci   : Copyright(c) Pierre Ossman
06-26 23:46:20.704     0     0 I         : Synopsys Designware Multimedia Card Interface Driver
06-26 23:46:20.706     0     0 I sdhci-pltfm: SDHCI platform and OF driver helper
06-26 23:46:20.716     0     0 I ledtrig-cpu: registered to indicate activity on CPUs
06-26 23:46:20.720     0     0 I hid     : raw HID events driver (C) Jiri Kosina
06-26 23:46:20.721     0     0 I usbcore : registered new interface driver usbhid
06-26 23:46:20.721     0     0 I usbhid  : USB HID core driver
06-26 23:46:20.734     0     0 I hw perfevents: enabled with armv8_pmuv3_0 PMU driver, 7 counters available
06-26 23:46:20.737     0     0 I watchdog: Delayed init of the lockup detector failed: -19
06-26 23:46:20.738     0     0 I watchdog: Hard watchdog permanently disabled
06-26 23:46:20.751     0     0 I         : Initializing XFRM netlink socket
06-26 23:46:20.751     0     0 I NET     : Registered PF_INET6 protocol family
06-26 23:46:21.187     0     0 I usb 1-1 : new full-speed USB device number 2 using xhci_hcd
06-26 23:46:21.193     0     0 I sd 0    : 0:0:0: Attached scsi generic sg0 type 0
06-26 23:46:21.196     0     0 W sd 0    : 0:0:0: Power-on or device reset occurred
06-26 23:46:21.200     0     0 I sd 0    : 0:0:0: [sda] 125829120 512-byte logical blocks: (64.4 GB/60.0 GiB)
06-26 23:46:21.203     0     0 I sd 0    : 0:0:0: [sda] Write Protect is off
06-26 23:46:21.205     0     0 D sd 0    : 0:0:0: [sda] Mode Sense: 63 00 00 08
06-26 23:46:21.205     0     0 I sd 0    : 0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
06-26 23:46:21.236     0     0 I sda     : sda1 sda2 sda3
06-26 23:46:21.239     0     0 I sd 0    : 0:0:0: [sda] Attached SCSI disk
06-26 23:46:21.299     0     0 I         : Segment Routing with IPv6
06-26 23:46:21.300     0     0 I         : In-situ OAM (IOAM) with IPv6
06-26 23:46:21.301     0     0 I mip6    : Mobile IPv6
06-26 23:46:21.301     0     0 I NET     : Registered PF_PACKET protocol family
06-26 23:46:21.302     0     0 I         : Key type dns_resolver registered
06-26 23:46:21.334     0     0 I Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
06-26 23:46:21.345     0     0 I         : registered taskstats version 1
06-26 23:46:21.349     0     0 I         : Loading compiled-in X.509 certificates
06-26 23:46:21.351     0     0 I usb 1-1 : New USB device found, idVendor=093a, idProduct=2532, bcdDevice= 1.00
06-26 23:46:21.351     0     0 I usb 1-1 : New USB device strings: Mfr=1, Product=2, SerialNumber=0
06-26 23:46:21.351     0     0 I usb 1-1 : Product: Gaming Mouse
06-26 23:46:21.351     0     0 I usb 1-1 : Manufacturer: PixArt
06-26 23:46:21.366     0     0 I input   : PixArt Gaming Mouse as /devices/pci0000:00/0000:00:05.0/usb1/1-1/1-1:1.0/0003:093A:2532.0001/input/input1
06-26 23:46:21.368     0     0 I hid-generic 0003: 093A:2532.0001: input,hidraw0: USB HID v1.11 Mouse [PixArt Gaming Mouse] on usb-0000:00:05.0-1/input0
06-26 23:46:21.374     0     0 I debug_vm_pgtable: [debug_vm_pgtable         ]: Validating architecture page table helpers
06-26 23:46:21.378     0     0 I input   : PixArt Gaming Mouse Keyboard as /devices/pci0000:00/0000:00:05.0/usb1/1-1/1-1:1.1/0003:093A:2532.0002/input/input3
06-26 23:46:21.380     0     0 I         : Key type .fscrypt registered
06-26 23:46:21.381     0     0 I         : Key type fscrypt-provisioning registered
06-26 23:46:21.388     0     0 I         : Btrfs loaded, zoned=yes, fsverity=no
06-26 23:46:21.395     0     0 I         : Key type encrypted registered
06-26 23:46:21.434     0     0 I hid-generic 0003: 093A:2532.0002: input,hiddev96,hidraw1: USB HID v1.11 Keyboard [PixArt Gaming Mouse] on usb-0000:00:05.0-1/input1
06-26 23:46:22.123     0     0 I usb 1-2 : new low-speed USB device number 3 using xhci_hcd
06-26 23:46:22.269     0     0 I usb 1-2 : New USB device found, idVendor=1c4f, idProduct=0015, bcdDevice= 1.10
06-26 23:46:22.269     0     0 I usb 1-2 : New USB device strings: Mfr=1, Product=2, SerialNumber=0
06-26 23:46:22.270     0     0 I usb 1-2 : Product: USB Keyboard
06-26 23:46:22.270     0     0 I usb 1-2 : Manufacturer: SIGMACH1P
06-26 23:46:22.282     0     0 I input   : SIGMACH1P USB Keyboard as /devices/pci0000:00/0000:00:05.0/usb1/1-2/1-2:1.0/0003:1C4F:0015.0003/input/input4
06-26 23:46:22.337     0     0 I hid-generic 0003: 1C4F:0015.0003: input,hidraw2: USB HID v1.10 Keyboard [SIGMACH1P USB Keyboard] on usb-0000:00:05.0-2/input0
06-26 23:46:22.345     0     0 I input   : SIGMACH1P USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:05.0/usb1/1-2/1-2:1.1/0003:1C4F:0015.0004/input/input5
06-26 23:46:22.398     0     0 I input   : SIGMACH1P USB Keyboard System Control as /devices/pci0000:00/0000:00:05.0/usb1/1-2/1-2:1.1/0003:1C4F:0015.0004/input/input6
06-26 23:46:22.399     0     0 I hid-generic 0003: 1C4F:0015.0004: input,hidraw3: USB HID v1.10 Device [SIGMACH1P USB Keyboard] on usb-0000:00:05.0-2/input1
06-26 23:46:22.422     0     0 I clk     : Disabling unused clocks
06-26 23:46:22.423     0     0 I PM      : genpd: Disabling unused power domains
06-26 23:46:22.424     0     0 I         : ALSA device list:
06-26 23:46:22.425     0     0 I         : No soundcards found.
06-26 23:46:22.805     0     0 I         : Freeing unused kernel memory: 8448K
06-26 23:46:22.808     0     0 I         : Run /init as init process
06-26 23:46:22.809     0     0 D with arguments:  
06-26 23:46:22.809     0     0 D         : /init
06-26 23:46:22.809     0     0 D with environment:  
06-26 23:46:22.809     0     0 D         : HOME=/
06-26 23:46:22.809     0     0 D         : TERM=linux
06-26 23:46:25.593     0     0 W hrtimer : interrupt took 2269008 ns
06-26 23:46:25.812     0     0 I virtio_crypto virtio2: max_queues: 1, max_cipher_key_len: 64, max_auth_key_len: 512, max_size 0x7fffffffffffffbf
06-26 23:46:25.828     0     0 I virtio_crypto virtio2: will run requests pump with realtime priority
06-26 23:46:25.989     0     0 I [drm] pci: virtio-gpu-pci detected at 0000:00:04.0
06-26 23:46:25.993     0     0 I [drm] features: +virgl +edid -resource_blob -host_visible
06-26 23:46:25.993     0     0 I [drm] features: -context_init
06-26 23:46:26.001     0     0 I         : [drm] number of scanouts: 1
06-26 23:46:26.002     0     0 I         : [drm] number of cap sets: 2
06-26 23:46:26.021     0     0 I         : [drm] cap set 0: id 1, max-version 1, max-size 308
06-26 23:46:26.023     0     0 I         : [drm] cap set 1: id 2, max-version 2, max-size 1376
06-26 23:46:26.043     0     0 I         : [drm] Initialized virtio_gpu 0.1.0 0 for 0000:00:04.0 on minor 0
06-26 23:46:26.266     0     0 I Console : switching to colour frame buffer device 240x67
06-26 23:46:26.304     0     0 I virtio-pci 0000: 00:04.0: [drm] fb0: virtio_gpudrmfb frame buffer device
06-26 23:46:26.349     0     0 I virtio_crypto virtio2: Registered algo cbc(aes)
06-26 23:46:26.351     0     0 I virtio_crypto virtio2: Accelerator device is ready
06-26 23:46:27.680     0     0 I EXT4-fs (sda3): mounted filesystem b7d1452f-cf51-4ce4-ad05-fbe5ced9ca00 r/w with ordered data mode. Quota mode: none.
06-26 23:46:28.492     0     0 I systemd[1]: systemd 256.1-1-arch-g34ba18b^ running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
06-26 23:46:28.499     0     0 I systemd[1]: Detected virtualization qemu.
06-26 23:46:28.500     0     0 I systemd[1]: Detected architecture arm64.
06-26 23:46:28.513     0     0 I systemd[1]: Hostname set to <archarm>.
06-26 23:46:30.115     0     0 I systemd[1]: bpf-restrict-fs: BPF LSM hook not enabled in the kernel, BPF LSM not supported.
06-26 23:46:30.887     0     0 I NET     : Registered PF_VSOCK protocol family
06-26 23:46:31.829     0     0 I systemd[1]: Queued start job for default target Graphical Interface.
06-26 23:46:31.997     0     0 I systemd[1]: Created slice Slice /system/dirmngr.
06-26 23:46:32.007     0     0 I systemd[1]: Created slice Slice /system/getty.
06-26 23:46:32.023     0     0 I systemd[1]: Created slice Slice /system/gpg-agent.
06-26 23:46:32.030     0     0 I systemd[1]: Created slice Slice /system/gpg-agent-browser.
06-26 23:46:32.038     0     0 I systemd[1]: Created slice Slice /system/gpg-agent-extra.
06-26 23:46:32.046     0     0 I systemd[1]: Created slice Slice /system/gpg-agent-ssh.
06-26 23:46:32.054     0     0 I systemd[1]: Created slice Slice /system/keyboxd.
06-26 23:46:32.062     0     0 I systemd[1]: Created slice Slice /system/modprobe.
06-26 23:46:32.069     0     0 I systemd[1]: Created slice Slice /system/serial-getty.
06-26 23:46:32.076     0     0 I systemd[1]: Created slice User and Session Slice.
06-26 23:46:32.083     0     0 I systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
06-26 23:46:32.087     0     0 I systemd[1]: Started Forward Password Requests to Wall Directory Watch.
06-26 23:46:32.098     0     0 I systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
06-26 23:46:32.104     0     0 I systemd[1]: Expecting device /dev/disk/by-uuid/6f0eeb89-230c-4a7f-a2b5-8b9f66973113...
06-26 23:46:32.108     0     0 I systemd[1]: Expecting device /dev/disk/by-uuid/E2B3-57C0...
06-26 23:46:32.111     0     0 I systemd[1]: Expecting device /dev/ttyAMA0...
06-26 23:46:32.114     0     0 I systemd[1]: Reached target Local Encrypted Volumes.
06-26 23:46:32.117     0     0 I systemd[1]: Reached target Local Integrity Protected Volumes.
06-26 23:46:32.120     0     0 I systemd[1]: Reached target Path Units.
06-26 23:46:32.123     0     0 I systemd[1]: Reached target Remote File Systems.
06-26 23:46:32.126     0     0 I systemd[1]: Reached target Slice Units.
06-26 23:46:32.129     0     0 I systemd[1]: Reached target Local Verity Protected Volumes.
06-26 23:46:32.134     0     0 I systemd[1]: Listening on Device-mapper event daemon FIFOs.
06-26 23:46:32.149     0     0 I systemd[1]: Listening on Process Core Dump Socket.
06-26 23:46:32.158     0     0 I systemd[1]: Listening on Credential Encryption/Decryption.
06-26 23:46:32.163     0     0 I systemd[1]: Listening on Journal Socket (/dev/log).
06-26 23:46:32.167     0     0 I systemd[1]: Listening on Journal Sockets.
06-26 23:46:32.171     0     0 I systemd[1]: TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
06-26 23:46:32.174     0     0 I systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
06-26 23:46:32.177     0     0 I systemd[1]: Listening on udev Control Socket.
06-26 23:46:32.181     0     0 I systemd[1]: Listening on udev Kernel Socket.
06-26 23:46:32.209     0     0 I systemd[1]: Mounting Huge Pages File System...
06-26 23:46:32.233     0     0 I systemd[1]: Mounting POSIX Message Queue File System...
06-26 23:46:32.256     0     0 I systemd[1]: Mounting Kernel Debug File System...
06-26 23:46:32.263     0     0 I systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
06-26 23:46:32.301     0     0 I systemd[1]: Starting Create List of Static Device Nodes...
06-26 23:46:32.346     0     0 I systemd[1]: Starting Load Kernel Module configfs...
06-26 23:46:32.392     0     0 I systemd[1]: Starting Load Kernel Module dm_mod...
06-26 23:46:32.444     0     0 I systemd[1]: Starting Load Kernel Module drm...
06-26 23:46:32.511     0     0 I systemd[1]: Starting Load Kernel Module fuse...
06-26 23:46:32.557     0     0 I systemd[1]: Starting Load Kernel Module loop...
06-26 23:46:32.565     0     0 I systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
06-26 23:46:32.660     0     0 I systemd[1]: Starting Load Kernel Modules...
06-26 23:46:32.664     0     0 I systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
06-26 23:46:32.824     0     0 I systemd[1]: Starting Remount Root and Kernel File Systems...
06-26 23:46:32.840     0     0 I systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
06-26 23:46:32.924     0     0 I systemd[1]: Starting Load udev Rules from Credentials...
06-26 23:46:32.979     0     0 I systemd[1]: Starting Coldplug All udev Devices...
06-26 23:46:33.048     0     0 I fuse    : init (API version 7.40)
06-26 23:46:33.075     0     0 I systemd[1]: Mounted Huge Pages File System.
06-26 23:46:33.095     0     0 I systemd[1]: Mounted POSIX Message Queue File System.
06-26 23:46:33.102     0     0 I systemd[1]: Mounted Kernel Debug File System.
06-26 23:46:33.126     0     0 I systemd[1]: Finished Create List of Static Device Nodes.
06-26 23:46:33.159     0     0 I systemd[1]: modprobe@configfs.service: Deactivated successfully.
06-26 23:46:33.169     0     0 I systemd[1]: Finished Load Kernel Module configfs.
06-26 23:46:33.182     0     0 I systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
06-26 23:46:33.211     0     0 I systemd[1]: Finished Load Kernel Module dm_mod.
06-26 23:46:33.235     0     0 I systemd[1]: modprobe@drm.service: Deactivated successfully.
06-26 23:46:33.243     0     0 I systemd[1]: Finished Load Kernel Module drm.
06-26 23:46:33.279     0     0 I systemd[1]: modprobe@fuse.service: Deactivated successfully.
06-26 23:46:33.290     0     0 I systemd[1]: Finished Load Kernel Module fuse.
06-26 23:46:33.303     0     0 I systemd[1]: Finished Load Kernel Modules.
06-26 23:46:33.350     0     0 I systemd[1]: Mounting FUSE Control File System...
06-26 23:46:33.389     0     0 I systemd[1]: Mounting Kernel Configuration File System...
06-26 23:46:33.411     0     0 I loop    : module loaded
06-26 23:46:33.436     0     0 I systemd[1]: Starting Apply Kernel Variables...
06-26 23:46:33.464     0     0 I systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
06-26 23:46:33.479     0     0 I EXT4-fs (sda3): re-mounted b7d1452f-cf51-4ce4-ad05-fbe5ced9ca00 r/w. Quota mode: none.
06-26 23:46:33.497     0     0 I systemd[1]: modprobe@loop.service: Deactivated successfully.
06-26 23:46:33.505     0     0 I systemd[1]: Finished Load Kernel Module loop.
06-26 23:46:33.515     0     0 I systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
06-26 23:46:33.538     0     0 I systemd[1]: Finished Remount Root and Kernel File Systems.
06-26 23:46:33.555     0     0 I systemd[1]: Finished Load udev Rules from Credentials.
06-26 23:46:33.597     0     0 I systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
06-26 23:46:33.624     0     0 I systemd[1]: Starting Load/Save OS Random Seed...
06-26 23:46:33.628     0     0 I systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
06-26 23:46:33.707     0     0 I systemd[1]: Mounted Kernel Configuration File System.
06-26 23:46:33.719     0     0 I systemd[1]: Mounted FUSE Control File System.
06-26 23:46:33.846     0     0 I systemd[1]: Finished Apply Kernel Variables.
06-26 23:46:33.955     0     0 I systemd[1]: Finished Load/Save OS Random Seed.
06-26 23:46:34.118     0     0 I systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
06-26 23:46:34.128     0     0 I systemd[1]: Create System Users was skipped because no trigger condition checks were met.
06-26 23:46:34.141     0     0 I systemd[1]: Starting Create Static Device Nodes in /dev...
06-26 23:46:34.558     0     0 I systemd[1]: Finished Create Static Device Nodes in /dev.
06-26 23:46:34.563     0     0 I systemd[1]: Reached target Preparation for Local File Systems.
06-26 23:46:34.567     0     0 I systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
06-26 23:46:34.571     0     0 I systemd[1]: Entropy Daemon based on the HAVEGE algorithm was skipped because of an unmet condition check (ConditionKernelVersion=<5.6).
06-26 23:46:34.621     0     0 I systemd[1]: Starting Journal Service...
06-26 23:46:34.643     0     0 I systemd[1]: Starting Rule-based Manager for Device Events and Files...
06-26 23:46:34.968     0     0 I systemd-journald[593]: Collecting audit messages is disabled.
06-26 23:46:35.443     0     0 I systemd[1]: Started Rule-based Manager for Device Events and Files.
06-26 23:46:35.469     0     0 I systemd[1]: Started Journal Service.
06-26 23:46:35.970     0     0 I systemd-journald[593]: Received client request to flush runtime journal.
06-26 23:46:35.979     0     0 W systemd-journald[593]: File /var/log/journal/782ceb345fdc4a7b841886de210638a9/system.journal corrupted or uncleanly shut down, renaming and replacing.
06-26 23:46:38.022     0     0 I         : virtio_net virtio0 enp0s1: renamed from eth0
06-26 23:46:40.127     0     0 W FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
06-26 23:46:40.184     0     0 I         : Adding 8388604k swap on /dev/sda2.  Priority:-2 extents:1 across:8388604k
06-26 23:46:50.747     0     0 I bridge  : filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
06-26 23:46:50.783     0     0 I         : Bridge firewalling registered
06-26 23:47:51.733     0     0 I docker0 : port 1(vethbd3b6c3) entered blocking state
06-26 23:47:51.737     0     0 I docker0 : port 1(vethbd3b6c3) entered disabled state
06-26 23:47:51.739     0     0 I vethbd3b6c3: entered allmulticast mode
06-26 23:47:51.745     0     0 I vethbd3b6c3: entered promiscuous mode
06-26 23:47:55.334     0     0 I eth0    : renamed from vethc9bdc7e
06-26 23:47:55.344     0     0 I docker0 : port 1(vethbd3b6c3) entered blocking state
06-26 23:47:55.345     0     0 I docker0 : port 1(vethbd3b6c3) entered forwarding state
06-26 23:47:56.052     0     0 E init    : mkdir("/dev/pts", 0755) failed File exists
06-26 23:47:56.053     0     0 E init    : mount("sysfs", "/sys", "sysfs", 0, NULL) failed Device or resource busy
06-26 23:47:56.056     0     0 E init    : mount("selinuxfs", "/sys/fs/selinux", "selinuxfs", 0, NULL) failed No such file or directory
06-26 23:47:56.058     0     0 E init    : mknod("/dev/kmsg", S_IFCHR | 0600, makedev(1, 11)) failed File exists
06-26 23:47:56.060     0     0 E init    : mknod("/dev/random", S_IFCHR | 0666, makedev(1, 8)) failed Invalid argument
06-26 23:47:56.062     0     0 E init    : mknod("/dev/urandom", S_IFCHR | 0666, makedev(1, 9)) failed File exists
06-26 23:47:56.064     0     0 E init    : mknod("/dev/ptmx", S_IFCHR | 0666, makedev(5, 2)) failed File exists
06-26 23:47:56.066     0     0 E init    : mknod("/dev/null", S_IFCHR | 0666, makedev(1, 3)) failed File exists
06-26 23:47:56.068     0     0 I init    : init first stage started!
06-26 23:47:56.072     0     0 I init    : Unable to open /lib/modules, skipping module loading.
06-26 23:47:56.082     0     0 I init    : [libfs_mgr] ReadFstabFromDt(): failed to read fstab from dt
06-26 23:47:56.086     0     0 I init    : [libfs_mgr] ReadDefaultFstab(): failed to find device default fstab
06-26 23:47:56.088     0     0 E init    : Failed to create FirstStageMount failed to read default fstab for first stage mount
06-26 23:47:56.091     0     0 E init    : Failed to mount required partitions early ...
06-26 23:47:56.092     0     0 I init    : Skipped setting INIT_AVB_VERSION (not in recovery mode)
06-26 23:47:56.259     0     0 I init    : init second stage started!
06-26 23:47:56.407     0     0 I init    : Using Android DT directory /proc/device-tree/firmware/android/
06-26 23:47:56.429     0     0 E init    : Could not set 'ro.hardware' to 'redroid' while loading .prop filesRead-only property was already set
06-26 23:47:56.434     0     0 I init    : Setting product property ro.product.brand to 'redroid' (from ro.product.product.brand)
06-26 23:47:56.437     0     0 I init    : Setting product property ro.product.device to 'redroid_arm64_only' (from ro.product.product.device)
06-26 23:47:56.439     0     0 I init    : Setting product property ro.product.manufacturer to 'redroid' (from ro.product.product.manufacturer)
06-26 23:47:56.442     0     0 I init    : Setting product property ro.product.model to 'redroid14_arm64_only' (from ro.product.product.model)
06-26 23:47:56.444     0     0 I init    : Setting product property ro.product.name to 'redroid_arm64_only' (from ro.product.product.name)
06-26 23:47:56.447     0     0 I init    : Setting property 'ro.build.fingerprint' to 'redroid/redroid_arm64_only/redroid_arm64_only:14/UD2A.240505.001.W1/eng.frank.20240527.152423:userdebug/test-keys'
06-26 23:47:56.452     0     0 I init    : Setting property 'ro.product.cpu.abilist' to 'arm64-v8a'
06-26 23:47:56.454     0     0 I init    : Setting property 'ro.product.cpu.abilist32' to ''
06-26 23:47:56.455     0     0 I init    : Setting property 'ro.product.cpu.abilist64' to 'arm64-v8a'
06-26 23:47:56.474     0     0 I selinux : SELinux: Loaded file context from:
06-26 23:47:56.475     0     0 I selinux : /system/etc/selinux/plat_file_contexts
06-26 23:47:56.476     0     0 I selinux : /vendor/etc/selinux/vendor_file_contexts
06-26 23:47:56.478     0     0 I init    : Running restorecon...
06-26 23:47:56.493     0     0 I init    : Created socket '/dev/socket/property_service', mode 666, user 0, group 0
06-26 23:47:56.523     0     0 I init    : SetupMountNamespaces done
06-26 23:47:56.536     0     0 I init    : Forked subcontext for 'u:r:vendor_init:s0' with pid 8
06-26 23:47:56.542     0     0 I init    : Parsing file /system/etc/init/hw/init.rc...
06-26 23:47:56.547     0     0 I init    : Added '/init.environ.rc' to import list
06-26 23:47:56.549     0     0 I init    : Added '/system/etc/init/hw/init.usb.rc' to import list
06-26 23:47:56.551     0     0 I init    : Added '/init.redroid.rc' to import list
06-26 23:47:56.552     0     0 I init    : Added '/vendor/etc/init/hw/init.redroid.rc' to import list
06-26 23:47:56.554     0     0 I init    : Added '/system/etc/init/hw/init.usb.configfs.rc' to import list
06-26 23:47:56.557     0     0 I init    : Added '/system/etc/init/hw/init.zygote64.rc' to import list
06-26 23:47:56.584     0     0 I init    : Parsing file /init.environ.rc...
06-26 23:47:56.587     0     0 I init    : Parsing file /system/etc/init/hw/init.usb.rc...
06-26 23:47:56.591     0     0 I init    : Parsing file /init.redroid.rc...
06-26 23:47:56.593     0     0 I init    : Unable to read config file '/init.redroid.rc': open() failed: No such file or directory
06-26 23:47:56.595     0     0 I init    : Parsing file /vendor/etc/init/hw/init.redroid.rc...
06-26 23:47:56.597     0     0 I init    : Unable to read config file '/vendor/etc/init/hw/init.redroid.rc': open() failed: No such file or directory
06-26 23:47:56.600     0     0 I init    : Parsing file /system/etc/init/hw/init.usb.configfs.rc...
06-26 23:47:56.604     0     0 I init    : Parsing file /system/etc/init/hw/init.zygote64.rc...
06-26 23:47:56.608     0     0 I init    : Parsing directory /system/etc/init...
06-26 23:47:56.612     0     0 I init    : Parsing file /system/etc/init/android.hidl.allocator@1.0-service.rc...
06-26 23:47:56.615     0     0 I init    : Parsing file /system/etc/init/android.system.suspend-service.rc...
06-26 23:47:56.618     0     0 I init    : Parsing file /system/etc/init/apexd.rc...
06-26 23:47:56.620     0     0 I init    : Parsing file /system/etc/init/atrace.rc...
06-26 23:47:56.627     0     0 I init    : Parsing file /system/etc/init/atrace_userdebug.rc...
06-26 23:47:56.629     0     0 I init    : Parsing file /system/etc/init/audioserver.rc...
06-26 23:47:56.632     0     0 I init    : Parsing file /system/etc/init/blank_screen.rc...
06-26 23:47:56.634     0     0 I init    : Parsing file /system/etc/init/bootanim.rc...
06-26 23:47:56.636     0     0 I init    : Parsing file /system/etc/init/bootstat-debug.rc...
06-26 23:47:56.638     0     0 I init    : Parsing file /system/etc/init/bootstat.rc...
06-26 23:47:56.641     0     0 I init    : Parsing file /system/etc/init/bpfloader.rc...
06-26 23:47:56.644     0     0 I init    : Parsing file /system/etc/init/cameraserver.rc...
06-26 23:47:56.646     0     0 I init    : Parsing file /system/etc/init/clean_scratch_files.rc...
06-26 23:47:56.649     0     0 I init    : Parsing file /system/etc/init/credstore.rc...
06-26 23:47:56.651     0     0 I init    : Parsing file /system/etc/init/dmesgd.rc...
06-26 23:47:56.653     0     0 I init    : Parsing file /system/etc/init/drmserver.rc...
06-26 23:47:56.655     0     0 I init    : Parsing file /system/etc/init/dumpstate.rc...
06-26 23:47:56.657     0     0 I init    : Parsing file /system/etc/init/flags_health_check.rc...
06-26 23:47:56.660     0     0 I init    : Parsing file /system/etc/init/gatekeeperd.rc...
06-26 23:47:56.662     0     0 I init    : Parsing file /system/etc/init/gpuservice.rc...
06-26 23:47:56.664     0     0 I init    : Parsing file /system/etc/init/gsid.rc...
06-26 23:47:56.666     0     0 I init    : Parsing file /system/etc/init/heapprofd.rc...
06-26 23:47:56.669     0     0 I init    : Parsing file /system/etc/init/hwservicemanager.rc...
06-26 23:47:56.672     0     0 I init    : Parsing file /system/etc/init/idmap2d.rc...
06-26 23:47:56.674     0     0 I init    : Parsing file /system/etc/init/incidentd.rc...
06-26 23:47:56.676     0     0 I init    : Parsing file /system/etc/init/init-debug.rc...
06-26 23:47:56.679     0     0 I init    : Parsing file /system/etc/init/installd.rc...
06-26 23:47:56.682     0     0 I init    : Parsing file /system/etc/init/keystore2.rc...
06-26 23:47:56.684     0     0 I init    : Parsing file /system/etc/init/llkd-debuggable.rc...
06-26 23:47:56.687     0     0 I init    : Parsing file /system/etc/init/llkd.rc...
06-26 23:47:56.690     0     0 I init    : Parsing file /system/etc/init/lmkd.rc...
06-26 23:47:56.694     0     0 I init    : Parsing file /system/etc/init/logcatd.rc...
06-26 23:47:56.697     0     0 I init    : Parsing file /system/etc/init/logd.rc...
06-26 23:47:56.699     0     0 I init    : Parsing file /system/etc/init/logtagd.rc...
06-26 23:47:56.701     0     0 I init    : Parsing file /system/etc/init/lpdumpd.rc...
06-26 23:47:56.704     0     0 I init    : Parsing file /system/etc/init/mdnsd.rc...
06-26 23:47:56.706     0     0 I init    : Parsing file /system/etc/init/mediaextractor.rc...
06-26 23:47:56.708     0     0 I init    : Parsing file /system/etc/init/mediametrics.rc...
06-26 23:47:56.711     0     0 I init    : Parsing file /system/etc/init/mediaserver.rc...
06-26 23:47:56.714     0     0 I init    : Parsing file /system/etc/init/mtectrl.rc...
06-26 23:47:56.717     0     0 I init    : Parsing file /system/etc/init/mtpd.rc...
06-26 23:47:56.719     0     0 I init    : Parsing file /system/etc/init/netd.rc...
06-26 23:47:56.721     0     0 I init    : Parsing file /system/etc/init/odsign.rc...
06-26 23:47:56.724     0     0 I init    : Parsing file /system/etc/init/perfetto.rc...
06-26 23:47:56.728     0     0 I init    : Parsing file /system/etc/init/prng_seeder.rc...
06-26 23:47:56.731     0     0 I init    : Parsing file /system/etc/init/profcollectd.rc...
06-26 23:47:56.734     0     0 I init    : Parsing file /system/etc/init/racoon.rc...
06-26 23:47:56.737     0     0 I init    : Parsing file /system/etc/init/recovery-persist.rc...
06-26 23:47:56.740     0     0 I init    : Parsing file /system/etc/init/rss_hwm_reset.rc...
06-26 23:47:56.743     0     0 I init    : Parsing file /system/etc/init/servicemanager.rc...
06-26 23:47:56.746     0     0 I init    : Parsing file /system/etc/init/simpleperf.rc...
06-26 23:47:56.749     0     0 I init    : Parsing file /system/etc/init/snapuserd.rc...
06-26 23:47:56.753     0     0 I init    : Parsing file /system/etc/init/storaged.rc...
06-26 23:47:56.757     0     0 I init    : Parsing file /system/etc/init/surfaceflinger.rc...
06-26 23:47:56.760     0     0 I init    : Parsing file /system/etc/init/tombstoned.rc...
06-26 23:47:56.763     0     0 I init    : Parsing file /system/etc/init/traced_perf.rc...
06-26 23:47:56.767     0     0 I init    : Parsing file /system/etc/init/uncrypt.rc...
06-26 23:47:56.771     0     0 I init    : Parsing file /system/etc/init/usbd.rc...
06-26 23:47:56.774     0     0 I init    : Parsing file /system/etc/init/vold.rc...
06-26 23:47:56.777     0     0 I init    : Parsing file /system/etc/init/wifi.rc...
06-26 23:47:56.782     0     0 I init    : Parsing file /system/etc/init/wificond.rc...
06-26 23:47:56.785     0     0 I init    : Parsing file /system_ext/etc/init...
06-26 23:47:56.787     0     0 I init    : Unable to read config file '/system_ext/etc/init': open() failed: No such file or directory
06-26 23:47:56.790     0     0 I init    : Parsing directory /vendor/etc/init...
06-26 23:47:56.793     0     0 I init    : Parsing file /vendor/etc/init/android.hardware.audio.service.rc...
06-26 23:47:56.797     0     0 I init    : Parsing file /vendor/etc/init/android.hardware.bluetooth@1.1-service.sim.rc...
06-26 23:47:56.800     0     0 I init    : Parsing file /vendor/etc/init/android.hardware.gatekeeper@1.0-service.software.rc...
06-26 23:47:56.804     0     0 I init    : Parsing file /vendor/etc/init/android.hardware.graphics.allocator@2.0-service.rc...
06-26 23:47:56.809     0     0 I init    : Parsing file /vendor/etc/init/android.hardware.graphics.composer@2.1-service.rc...
06-26 23:47:56.812     0     0 I init    : Parsing file /vendor/etc/init/android.hardware.health-service.example.rc...
06-26 23:47:56.816     0     0 I init    : Parsing file /vendor/etc/init/android.hardware.keymaster@4.1-service.rc...
06-26 23:47:56.819     0     0 I init    : Parsing file /vendor/etc/init/android.hardware.thermal@2.0-service.rc...
06-26 23:47:56.822     0     0 I init    : Parsing file /vendor/etc/init/boringssl_self_test.rc...
06-26 23:47:56.825     0     0 I init    : Parsing file /vendor/etc/init/cas-default.rc...
06-26 23:47:56.828     0     0 I init    : Parsing file /vendor/etc/init/init.redroid.rc...
06-26 23:47:56.830     0     0 I init    : Parsing file /vendor/etc/init/power-default.rc...
06-26 23:47:56.833     0     0 I init    : Parsing file /vendor/etc/init/redroid.c2.rc...
06-26 23:47:56.838     0     0 I init    : Parsing file /vendor/etc/init/redroid.common.rc...
06-26 23:47:56.841     0     0 I init    : Parsing file /vendor/etc/init/redroid.legacy.rc...
06-26 23:47:56.844     0     0 I init    : Parsing file /vendor/etc/init/rild.rc...
06-26 23:47:56.847     0     0 I init    : Parsing file /vendor/etc/init/uinputd.rc...
06-26 23:47:56.849     0     0 I init    : Parsing file /vendor/etc/init/vncserver.rc...
06-26 23:47:56.852     0     0 I init    : Parsing file /odm/etc/init...
06-26 23:47:56.853     0     0 I init    : Unable to read config file '/odm/etc/init': open() failed: No such file or directory
06-26 23:47:56.855     0     0 I init    : Parsing file /product/etc/init...
06-26 23:47:56.857     0     0 I init    : Unable to read config file '/product/etc/init': open() failed: No such file or directory
06-26 23:47:56.865     0     0 I init    : processing action (SetupCgroups) from (<Builtin Action>:0)
06-26 23:47:59.780     0     0 I logd    : Loaded bug_map file: /vendor/etc/selinux/selinux_denial_metadata
06-26 23:47:59.786     0     0 I logd    : Loaded bug_map file: /system/etc/selinux/bug_map
06-26 23:47:59.789     0     0 I servicemanager: Starting sm instance on /dev/binder
06-26 23:47:59.795     0     0 I binder_alloc_selftest: STARTED
06-26 23:47:59.940     0     0 I init    : Service 'boringssl_self_test64' (pid 20) exited with status 0 waiting took 0.389000 seconds
06-26 23:47:59.944     0     0 I init    : Sending signal 9 to service 'boringssl_self_test64' (pid 20) process group...
06-26 23:47:59.954     0     0 I init    : processing action (ro.debuggable=1 && init) from (/system/etc/init/hw/init.rc:1314)
06-26 23:47:59.960     0     0 I init    : starting service 'console'...
06-26 23:48:00.028     0     0 I init    : ... started service 'console' has pid 29
06-26 23:48:00.031     0     0 I init    : Command 'start console' action=ro.debuggable=1 && init (/system/etc/init/hw/init.rc:1315) took 73ms and succeeded
06-26 23:48:00.036     0     0 I init    : processing action (init) from (/system/etc/init/hw/init.usb.rc:27)
06-26 23:48:00.041     0     0 I init    : processing action (init) from (/system/etc/init/audioserver.rc:58)
06-26 23:48:00.049     0     0 I init    : processing action (ro.boot.use_redroid_c2=1 && init) from (/vendor/etc/init/redroid.c2.rc:1)
06-26 23:48:00.056     0     0 I init    : starting service 'exec 3 (/vendor/bin/redroid.c2.sh)'...
06-26 23:48:00.109     0     0 I init    : ... started service 'exec 3 (/vendor/bin/redroid.c2.sh)' has pid 30
06-26 23:48:00.115     0     0 I init    : SVC_EXEC service 'exec 3 (/vendor/bin/redroid.c2.sh)' pid 30 (uid 0 gid 0+0 context default) started; waiting...
06-26 23:48:00.121     0     0 I init    : Command 'exec -- /vendor/bin/redroid.c2.sh' action=ro.boot.use_redroid_c2=1 && init (/vendor/etc/init/redroid.c2.rc:2) took 68ms and succeeded
06-26 23:48:00.815     0     0 I init    : Service 'exec 3 (/vendor/bin/redroid.c2.sh)' (pid 30) exited with status 0 waiting took 0.738000 seconds
06-26 23:48:00.819     0     0 I init    : Sending signal 9 to service 'exec 3 (/vendor/bin/redroid.c2.sh)' (pid 30) process group...
06-26 23:48:00.825     0     0 I init    : processing action (init) from (/vendor/etc/init/redroid.common.rc:60)
06-26 23:48:00.881     0     0 I init    : processing action (late-init) from (/system/etc/init/hw/init.rc:532)
06-26 23:48:00.887     0     0 I init    : processing action (late-init) from (/system/etc/init/atrace.rc:3)
06-26 23:48:00.994     0     0 I init    : Command 'copy /system/etc/ftrace_synthetic_events.conf /sys/kernel/tracing/synthetic_events' action=late-init (/system/etc/init/atrace.rc:294) took 3ms and failed: Could not write to output file '/sys/kernel/tracing/synthetic_events': open() failed: No such file or directory
06-26 23:48:01.001     0     0 I init    : Command 'copy /system/etc/ftrace_synthetic_events.conf /sys/kernel/debug/tracing/synthetic_events' action=late-init (/system/etc/init/atrace.rc:295) took 0ms and failed: Could not write to output file '/sys/kernel/debug/tracing/synthetic_events': open() failed: No such file or directory
06-26 23:48:01.011     0     0 I init    : processing action (queue_property_triggers) from (<Builtin Action>:0)
06-26 23:48:01.015     0     0 I init    : processing action (early-fs) from (/system/etc/init/hw/init.rc:565)
06-26 23:48:01.019     0     0 I init    : starting service 'vold'...
06-26 23:48:01.063     0     0 E init    : failed to set task profiles
06-26 23:48:01.068     0     0 I init    : ... started service 'vold' has pid 33
06-26 23:48:01.070     0     0 I init    : Command 'start vold' action=early-fs (/system/etc/init/hw/init.rc:567) took 52ms and succeeded
06-26 23:48:01.074     0     0 I init    : processing action (fs) from (/system/etc/init/logd.rc:29)
06-26 23:48:01.080     0     0 I init    : processing action (fs) from (/system/etc/init/wifi.rc:25)
06-26 23:48:01.085     0     0 I init    : processing action (post-fs) from (/system/etc/init/hw/init.rc:569)
06-26 23:48:01.091     0     0 I init    : starting service 'exec 4 (/system/bin/vdc checkpoint markBootAttempt)'...
06-26 23:48:01.151     0     0 I init    : ... started service 'exec 4 (/system/bin/vdc checkpoint markBootAttempt)' has pid 34
06-26 23:48:01.155     0     0 I init    : SVC_EXEC service 'exec 4 (/system/bin/vdc checkpoint markBootAttempt)' pid 34 (uid 1000 gid 1000+0 context default) started; waiting...
06-26 23:48:01.161     0     0 I init    : Command 'exec - system system -- /system/bin/vdc checkpoint markBootAttempt' action=post-fs (/system/etc/init/hw/init.rc:570) took 72ms and succeeded
--------- beginning of system
06-26 23:48:01.919    33    33 I vold    : Vold 3.0 (the awakening) firing up
06-26 23:48:01.925    33    33 D vold    : Detected support for: ext4 f2fs vfat
06-26 23:48:01.967    33    33 E vold    : Failed to opendir: No such file or directory
06-26 23:48:01.851     0     0 E vold    : Failed to opendir: No such file or directory
06-26 23:48:01.986    33    33 I vold    : [libfs_mgr] ReadDefaultFstab(): failed to find device default fstab
06-26 23:48:01.987    33    33 E vold    : Failed to open default fstab: No such file or directory
06-26 23:48:01.871     0     0 E vold    : Failed to open default fstab: No such file or directory
06-26 23:48:01.990    33    33 E vold    : Error reading configuration... continuing anyways: No such file or directory
06-26 23:48:01.874     0     0 E vold    : Error reading configuration... continuing anyways: No such file or directory
06-27 01:29:23.728     0     0 I logd    : logdr: UID=0 GID=0 PID=54 n tail=0 logMask=99 pid=0 start=0ns deadline=0ns
Architecture:                         aarch64
CPU op-mode(s):                       32-bit, 64-bit
Byte Order:                           Little Endian
CPU(s):                               32
On-line CPU(s) list:                  0-31
Vendor ID:                            ARM
BIOS Vendor ID:                       QEMU
Model name:                           Cortex-A72
BIOS Model name:                      virt-8.2  CPU @ 2.0GHz
BIOS CPU family:                      1
Model:                                3
Thread(s) per core:                   1
Core(s) per socket:                   32
Socket(s):                            1
Stepping:                             r0p3
BogoMIPS:                             125.00
Flags:                                fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid
Vulnerability Gather data sampling:   Not affected
Vulnerability Itlb multihit:          Not affected
Vulnerability L1tf:                   Not affected
Vulnerability Mds:                    Not affected
Vulnerability Meltdown:               Not affected
Vulnerability Mmio stale data:        Not affected
Vulnerability Reg file data sampling: Not affected
Vulnerability Retbleed:               Not affected
Vulnerability Spec rstack overflow:   Not affected
Vulnerability Spec store bypass:      Vulnerable
Vulnerability Spectre v1:             Mitigation; __user pointer sanitization
Vulnerability Spectre v2:             Vulnerable
Vulnerability Srbds:                  Not affected
Vulnerability Tsx async abort:        Not affected
************** ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
5: eth0@if6: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default 
    link/ether 02:42:0a:0a:00:02 brd ff:ff:ff:ff:ff:ff link-netnsid 0
    inet 10.10.0.2/24 brd 10.10.0.255 scope global eth0
       valid_lft forever preferred_lft forever
************** ip rule
0:	from all lookup local 
32766:	from all lookup main 
32767:	from all lookup default 

************** ip r show table eth0
USER             PID    PPID        VSZ    RSS WCHAN            ADDR S NAME                       
root               1       0   10920936  10432 ep_poll             0 S init
root               8       1   10811532   6912 do_poll.constprop.0 0 S init
root               9       1   10899852   6880 do_poll.constprop.0 0 S ueventd
prng_seeder       12       1   10937056   5852 futex_wait_queue    0 S prng_seeder
logd              16       1   10911968   5632 sigsuspend.isra.0   0 S logd
lmkd              17       1   10916852   3328 ep_poll             0 S lmkd
system            18       1   10838548   7140 0                   0 R servicemanager
system            19       1   10876052   5112 binder_selftest_alloc 0 D hwservicemanager
shell             29       1   10882560   2816 wait_woken          0 S sh
root              33       1   10970352   7420 binder_selftest_alloc 0 D vold
system            34       1   10896096   3840 futex_wait_queue    0 S vdc
root              48       0   10872292   4352 0                   0 R ps
Linux archarm 6.9.0-1-aarch64-ARCH #2 SMP PREEMPT_DYNAMIC Wed Jun 26 15:54:36 CDT 2024 aarch64 GNU/Linux
libva info: VA-API version 1.21.0
libva info: Trying to open /vendor/lib64/dri/virtio_gpu_drv_video.so
libva info: Found init function __vaDriverInit_1_20
libva info: va_openDriver() returns 0
Trying display: drm
vainfo: VA-API version: 1.21 (libva 2.21.0)
vainfo: Driver version: Mesa Gallium driver 24.0.8 for virgl (AMD Radeon RX 5700 XT (radeonsi, navi10, LLVM 17.0.6...)
vainfo: Supported config attributes per profile/entrypoint pair
VAProfileNone/VAEntrypointVideoProc
    VAConfigAttribRTFormat                 : VA_RT_FORMAT_YUV420
                                             VA_RT_FORMAT_YUV444
                                             VA_RT_FORMAT_YUV400
                                             VA_RT_FORMAT_YUV420_10
                                             VA_RT_FORMAT_RGB32
                                             VA_RT_FORMAT_RGBP
                                             VA_RT_FORMAT_YUV420_10BPP

@robertkirkman
Copy link
Author

robertkirkman commented Jun 27, 2024

I made a further observation, while watching htop within QEMU while trying to boot redroid:

  • Working redroid instances (outside of the emulator) also have all the same kernel messages including errors, but they print more beyond this, while within QEMU it gets stuck
  • /system/bin/servicemanager is using a lot of emulated CPU, but it continues to even after a very long time and no further kernel messages print, for much longer than any task in Arch Linux ARM takes, even intensive ones
    image

@robertkirkman
Copy link
Author

robertkirkman commented Jun 27, 2024

And finally, the reason why userspace emulation isn't sufficient is because it doesn't work on certain specific apps. One example is Termux. The aarch64 build of Termux does not work within amd64 redroid that has a userspace ARM emulator, so, the ultimate goal here is run the aarch64 build of Termux on amd64 hardware

@robertkirkman
Copy link
Author

robertkirkman commented Jun 27, 2024

Actually, it really was just loading! This time, I waited for 7 hours and it finally progressed past that part and booted fully, now I am able to connect with scrcpy and use redroid inside the full system emulator! After fully booting, the CPU performance in redroid is indeed about 50% the speed of a Galaxy S III. That is sufficient for my needs.

However it would be really nice to be able to have similar GPU performance to everything else, by getting surfaceflinger to utilize the same virtio GPU that the Arch Linux ARM Xorg is able to. But, unfortunately that might be very difficult, because I see this in the output from qemu-system-aarch64 if I try to use androidboot.redroid_gpu_mode=host, and the scrcpy viewport shows a black screen with some artifacts (software rendering mode androidboot.redroid_gpu_mode=guest works though)

qemu-system-aarch64 output when trying to connect surfaceflinger to the virtio GPU
gl_version 46 - core profile enabled
GLSL feature level 460
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
vrend_check_no_error: context error reported 6 "RenderThread" Unknown 1282
context 6 failed to dispatch COPY_TRANSFER3D: 22
vrend_decode_ctx_submit_cmd: context error reported 6 "RenderThread" Illegal command buffer 917549
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
vrend_check_no_error: context error reported 12 "RenderThread" Unknown 1282
context 12 failed to dispatch COPY_TRANSFER3D: 22
vrend_decode_ctx_submit_cmd: context error reported 12 "RenderThread" Illegal command buffer 917549
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
vrend_check_no_error: context error reported 3 "surfaceflinger" Unknown 1282
context 3 failed to dispatch COPY_TRANSFER3D: 22
vrend_decode_ctx_submit_cmd: context error reported 3 "surfaceflinger" Illegal command buffer 917549
failed to create fence sync object
failed to create fence sync object
vrend_check_no_error: context error reported 15 "Xorg" Unknown 1282
context 15 failed to dispatch COPY_TRANSFER3D: 22
vrend_decode_ctx_submit_cmd: context error reported 15 "Xorg" Illegal command buffer 917549
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object
failed to create fence sync object

Also, if Xorg is running in the KMS+DRM viewport (the QEMU SDL window) when I try to launch redroid with host gpu mode, Xorg freezes. I guess this might indicate it is a bug with QEMU or the virtio driver itself. virtio-gpu-gl-pci does not require CPU virtualization to be enabled. It works with Xorg even with QEMU in CPU emulation mode.

Here is a copy of everything from the .tgz file when redroid booted successfully but has a black screen in gpu host mode (huge paste) https://defuse.ca/b/cjECnfsiwzRQJoP4ebeX8g

After the 7 hours have passed, kernel log messages begin printing quickly again and redroid becomes possible to connect to using scrcpy soon after. It looks to me like there is one spot in the boot process that takes much longer than everything else to run inside QEMU, but it works ok when finished.

In gpu guest mode, it is now working pretty good after I wait the time for it to boot, so I will use that for now.

@robertkirkman robertkirkman changed the title Redroid does not work when docker is within the full system emulator qemu-system-aarch64 Redroid does not work with a virtio host GPU when docker is within the full system emulator qemu-system-aarch64 Jun 27, 2024
@robertkirkman
Copy link
Author

robertkirkman commented Jun 27, 2024

To summarize:

  • The logs I posted first are from the long time it freezes during boot
  • The logs I posted second are from after hours passed and it booted, with redroid set to host GPU mode, and scrcpy has a black screen, which looks like this:

image

  • When I set redroid to guest GPU mode, and wait the hours for it to boot, scrcpy works and redroid works as a fully functioning aarch64 android on amd64 hardware, which will be enough for me, though at 5 to 10 FPS. The Xorg of the Arch Linux ARM which runs the docker service mostly runs at 60 FPS since it can utilize the virtio GPU.

@zhouziyang
Copy link
Member

Well, the full system emulation is strongly not recommended (painfully slow w/ compatibility issues). How about native bridge (redroid already bundle this since redroid11)? Try a arm64 native platform if native bridge not suffice.

@robertkirkman
Copy link
Author

robertkirkman commented Jun 27, 2024

I will post a screenshot of the result I achieved that is the reason why I use this. When I tried the native bridge redroid, it was unable to reproduce this screenshot. The full system emulator causes this to work though.
(Termux is one of the actual apps I need, and I need it to be the aarch64 version of Termux specifically. That's the reason why I need this method)

image

@zhouziyang
Copy link
Member

Why not just use Termux for x86_64?

BTW, I believe the full system emulation is painfully slow, but should not that slow (you wait about 7 hours to boot redroid?). Again, strongly recommend native arm64 platform if native bridge not suffice.

@robertkirkman
Copy link
Author

Yeah, actually you're right, I think I will figure out a different way because this way is too slow.

@robertkirkman robertkirkman closed this as not planned Won't fix, can't repro, duplicate, stale Aug 20, 2024
@robertkirkman
Copy link
Author

GitHub Actions Arm Runner github/roadmap#955 might help me when it is available

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants