Jump to content

Emby seems to hang up complete server (linux)


Marc0
Go to solution Solved by Marc0,

Recommended Posts

Update: 

The server is up for the past 6 hours and no hangup yet....

Besides the change to the BETA docker image, I also stopped the 15 min library update.

I do this which a script that calls a URL in the EMBY server. Letting Radarr/Sonarr handle this doesn't seems to work for me since the library scan is never trigger by Radarr and Sonarr.

I use the following script (this is the Sonarr version). This is also triggered by Sonarr but this will work, For some reason the build-in EMBY trigger in Sonarr does not do it for me.

 

Spoiler
#!/bin/bash

NOW=$(date +"%d-%m-%Y %H:%M")
LOG_FILE="/logging/sonarrDV/emby_scan.txt"
TMP_FILE="/tmp/tmp_emby_sonarrDV.txt"
DL_FILE="/scripts/dl_sonarr.txt"
EMBY_HOST="192.168.xxx.xxx"
EMBY_PORT="8097"
EMBY_SONARR_APIKEY="xyz123"

if [ "${sonarr_eventtype}" != "" ]; then
  if [ "${sonarr_eventtype}" == "ApplicationUpdate" ] || [ "${sonarr_eventtype}" == "Grab" ] || [ "${sonarr_eventtype}" == "HealthIssue" ] || [ "${sonarr_eventtype}" == "Test" ]; then
    (echo "$NOW - [Emby Library Scan] Sonarr Event Type is ${sonarr_eventtype}, exiting."; cat $LOG_FILE) > $TMP_FILE; mv $TMP_FILE $LOG_FILE
    exit
  fi
  
  (echo "$NOW - [Emby Library Scan] Sonarr Event Type is ${sonarr_eventtype}, updating Emby Library for ${sonarr_series_title} - ${sonarr_episodefile_episodetitles}."; cat $LOG_FILE) > $TMP_FILE; mv $TMP_FILE $LOG_FILE
  if [ "${sonarr_eventtype}" == "Download" ]; then
    echo "${sonarr_series_title} - ${sonarr_episodefile_episodetitles}" >> $DL_FILE
  fi
  
  curl --data '' http://$EMBY_HOST:$EMBY_PORT/Emby/Library/Refresh?api_key=$EMBY_SONARR_APIKEY
  
else
  (echo "$NOW - [Emby Library Scan] Sonarr Event Type is empty for ${sonarr_series_title} - ${sonarr_episodefile_episodetitles}."; cat $LOG_FILE) > $TMP_FILE; mv $TMP_FILE $LOG_FILE
  
fi

# write a status file with date of last run.  Helps troubleshoot that cron task is running.
echo "$(basename $0) last run was at $(date)" > /logging/sonarrDV/_$(basename $0)_lastrun.txt

 

 

Edited by Marc0
Link to comment
Share on other sites

Just now, Q-Droid said:

Whe RTM is working you don't need triggers, adding the files is the trigger. 

Can you help me what RTM is?  *read the manual?

Edited by Marc0
Link to comment
Share on other sites

Just now, Marc0 said:

Can you help me what RTM is?  *read the manual?

Oh Real time monitoring right?

 

That is not working for me guess.... The iNotify  seems not to be notice, since I have my files on a SMB-share on Sinology.

 

Link to comment
Share on other sites

Q-Droid

Okay. Yeah, RTM doesn't work on network shares. 

So you can try to get the *arr triggers to work or slowly introduce external ones but using a different method? I don't know what different options might be available for this. 

 

Link to comment
Share on other sites

1 minute ago, Q-Droid said:

Okay. Yeah, RTM doesn't work on network shares. 

So you can try to get the *arr triggers to work or slowly introduce external ones but using a different method? I don't know what different options might be available for this. 

 

External ones? What is that?

And a different method is my script, right?

What external "ones" are available? Or do you know?

Link to comment
Share on other sites

Q-Droid

And again, you haven't posted a syslog to see why emby is getting shutdown, not crashing, along with your other apps. So far this looks like a systemwide problem even if emby might be the cause. 

 

Link to comment
Share on other sites

4 minutes ago, Q-Droid said:

And again, you haven't posted a syslog to see why emby is getting shutdown, not crashing, along with your other apps. So far this looks like a systemwide problem even if emby might be the cause. 

 

I can do so, I think you want me "dmesg" right? As syslog is a protocol to push logs round.

Link to comment
Share on other sites

Docker containers

CONTAINER ID   IMAGE                           COMMAND                  CREATED         STATUS                 PORTS                                                                                                      NAMES
276a64154128   emby/embyserver:beta            "/init"                  9 hours ago     Up 6 hours             1900/udp, 7359/udp, 0.0.0.0:8097->8096/tcp, :::8097->8096/tcp, 0.0.0.0:8921->8920/tcp, :::8921->8920/tcp   emby
dc18fce67083   bitnami/mariadb:latest          "/opt/bitnami/script…"   23 hours ago    Up 9 hours             3306/tcp                                                                                                   scripts_mysql_1
3ecf034c8ec2   lscr.io/linuxserver/swag        "/init"                  3 days ago      Up 9 hours             0.0.0.0:80->80/tcp, :::80->80/tcp, 0.0.0.0:443->443/tcp, :::443->443/tcp                                   swag
bd74d2c72f50   phpmyadmin:apache               "/docker-entrypoint.…"   6 days ago      Up 9 hours             0.0.0.0:9999->80/tcp, :::9999->80/tcp                                                                      scripts_phpmyadmin_1
7821cbb50747   wordpress:5.7.2                 "docker-entrypoint.s…"   9 days ago      Up 9 hours             0.0.0.0:8080->80/tcp, :::8080->80/tcp                                                                      scripts_wordpress_1
5c74606dc557   portainer/portainer-ce:latest   "/portainer"             12 days ago     Up 9 hours             0.0.0.0:8000->8000/tcp, :::8000->8000/tcp, 0.0.0.0:9000->9000/tcp, :::9000->9000/tcp, 9443/tcp             portainer
68e49b90d0a4   netdata/netdata:stable          "/usr/sbin/run.sh"       2 weeks ago     Up 9 hours (healthy)   0.0.0.0:19999->19999/tcp, :::19999->19999/tcp                                                              netdata
648fedbe6c89   containrrr/watchtower           "/watchtower"            3 weeks ago     Up 9 hours             8080/tcp                                                                                                   watchtower
fa4b9395cf33   vpnserver-uruk                  "ovpn_run"               14 months ago   Up 9 hours             0.0.0.0:11944->1194/udp, :::11944->1194/udp                                                                vpnserver-uruk

 

Link to comment
Share on other sites

Dmesg

[    0.012913] ACPI: FACS 0x000000007A2E6080 000040
[    0.012916] ACPI: APIC 0x000000007A210D10 0000BC (v04 INTEL  NUC8i5BE 00000057 AMI  00010013)
[    0.012920] ACPI: FPDT 0x000000007A210DD0 000044 (v01 INTEL  NUC8i5BE 00000057 AMI  00010013)
[    0.012924] ACPI: FIDT 0x000000007A210E18 00009C (v01 INTEL  NUC8i5BE 00000057 AMI  00010013)
[    0.012928] ACPI: MCFG 0x000000007A210EB8 00003C (v01 INTEL  NUC8i5BE 00000057 MSFT 00000097)
[    0.012932] ACPI: SSDT 0x000000007A210EF8 001B1C (v02 INTEL  NUC8i5BE 00000057 INTL 20160527)
[    0.012936] ACPI: SSDT 0x000000007A212A18 0031C6 (v02 INTEL  NUC8i5BE 00000057 INTL 20160527)
[    0.012940] ACPI: HPET 0x000000007A215BE0 000038 (v01 INTEL  NUC8i5BE 00000057      01000013)
[    0.012943] ACPI: SSDT 0x000000007A215C18 000FAE (v02 INTEL  NUC8i5BE 00000057 INTL 20160527)
[    0.012947] ACPI: SSDT 0x000000007A216BC8 003048 (v02 INTEL  NUC8i5BE 00000057 INTL 20160527)
[    0.012951] ACPI: UEFI 0x000000007A219C10 000042 (v01 INTEL  NUC8i5BE 00000057      01000013)
[    0.012955] ACPI: LPIT 0x000000007A219C58 000094 (v01 INTEL  NUC8i5BE 00000057      01000013)
[    0.012959] ACPI: SSDT 0x000000007A219CF0 0027DE (v02 INTEL  NUC8i5BE 00000057 INTL 20160527)
[    0.012963] ACPI: SSDT 0x000000007A21C4D0 0008B8 (v02 INTEL  NUC8i5BE 00000057 INTL 20160527)
[    0.012967] ACPI: DBGP 0x000000007A21CD88 000034 (v01 INTEL  NUC8i5BE 00000057      01000013)
[    0.012971] ACPI: DBG2 0x000000007A21CDC0 000054 (v00 INTEL  NUC8i5BE 00000057      01000013)
[    0.012974] ACPI: SSDT 0x000000007A21CE18 000144 (v02 INTEL  NUC8i5BE 00000057 INTL 20160527)
[    0.012978] ACPI: NHLT 0x000000007A21CF60 00002D (v00 INTEL  NUC8i5BE 00000057      01000013)
[    0.012982] ACPI: TPM2 0x000000007A21CF90 000034 (v04 INTEL  NUC8i5BE 00000057 AMI  00000000)
[    0.012986] ACPI: DMAR 0x000000007A21CFC8 0000A8 (v01 INTEL  NUC8i5BE 00000057      01000013)
[    0.012990] ACPI: WSMT 0x000000007A21D070 000028 (v01 INTEL  NUC8i5BE 00000057 AMI  00010013)
[    0.012993] ACPI: Reserving FACP table memory at [mem 0x7a210bf8-0x7a210d0b]
[    0.012995] ACPI: Reserving DSDT table memory at [mem 0x7a1d2200-0x7a210bf6]
[    0.012997] ACPI: Reserving FACS table memory at [mem 0x7a2e6080-0x7a2e60bf]
[    0.012998] ACPI: Reserving APIC table memory at [mem 0x7a210d10-0x7a210dcb]
[    0.012999] ACPI: Reserving FPDT table memory at [mem 0x7a210dd0-0x7a210e13]
[    0.013000] ACPI: Reserving FIDT table memory at [mem 0x7a210e18-0x7a210eb3]
[    0.013002] ACPI: Reserving MCFG table memory at [mem 0x7a210eb8-0x7a210ef3]
[    0.013003] ACPI: Reserving SSDT table memory at [mem 0x7a210ef8-0x7a212a13]
[    0.013004] ACPI: Reserving SSDT table memory at [mem 0x7a212a18-0x7a215bdd]
[    0.013005] ACPI: Reserving HPET table memory at [mem 0x7a215be0-0x7a215c17]
[    0.013007] ACPI: Reserving SSDT table memory at [mem 0x7a215c18-0x7a216bc5]
[    0.013008] ACPI: Reserving SSDT table memory at [mem 0x7a216bc8-0x7a219c0f]
[    0.013009] ACPI: Reserving UEFI table memory at [mem 0x7a219c10-0x7a219c51]
[    0.013011] ACPI: Reserving LPIT table memory at [mem 0x7a219c58-0x7a219ceb]
[    0.013012] ACPI: Reserving SSDT table memory at [mem 0x7a219cf0-0x7a21c4cd]
[    0.013013] ACPI: Reserving SSDT table memory at [mem 0x7a21c4d0-0x7a21cd87]
[    0.013015] ACPI: Reserving DBGP table memory at [mem 0x7a21cd88-0x7a21cdbb]
[    0.013016] ACPI: Reserving DBG2 table memory at [mem 0x7a21cdc0-0x7a21ce13]
[    0.013017] ACPI: Reserving SSDT table memory at [mem 0x7a21ce18-0x7a21cf5b]
[    0.013019] ACPI: Reserving NHLT table memory at [mem 0x7a21cf60-0x7a21cf8c]
[    0.013020] ACPI: Reserving TPM2 table memory at [mem 0x7a21cf90-0x7a21cfc3]
[    0.013021] ACPI: Reserving DMAR table memory at [mem 0x7a21cfc8-0x7a21d06f]
[    0.013023] ACPI: Reserving WSMT table memory at [mem 0x7a21d070-0x7a21d097]
[    0.013212] No NUMA configuration found
[    0.013213] Faking a node at [mem 0x0000000000000000-0x000000047dffffff]
[    0.013218] NODE_DATA(0) allocated [mem 0x47dffc000-0x47dffffff]
[    0.013257] Zone ranges:
[    0.013258]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.013261]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.013263]   Normal   [mem 0x0000000100000000-0x000000047dffffff]
[    0.013265] Movable zone start for each node
[    0.013266] Early memory node ranges
[    0.013267]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.013269]   node   0: [mem 0x0000000000100000-0x0000000079d4dfff]
[    0.013270]   node   0: [mem 0x000000007ac0e000-0x000000007ac0efff]
[    0.013272]   node   0: [mem 0x0000000100000000-0x000000047dffffff]
[    0.013275] Initmem setup node 0 [mem 0x0000000000001000-0x000000047dffffff]
[    0.013281] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.013332] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.018485] On node 0, zone DMA32: 3776 pages in unavailable ranges
[    0.051830] On node 0, zone Normal: 21489 pages in unavailable ranges
[    0.051926] On node 0, zone Normal: 8192 pages in unavailable ranges
[    0.051951] Reserving Intel graphics memory at [mem 0x7c000000-0x7fffffff]
[    0.052386] ACPI: PM-Timer IO Port: 0x1808
[    0.052394] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.052396] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.052397] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.052399] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.052400] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.052401] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.052402] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.052403] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.052458] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.052462] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.052464] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.052469] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.052471] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.052475] TSC deadline timer available
[    0.052477] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.052505] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.052508] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.052511] PM: hibernation: Registered nosave memory: [mem 0x79d4e000-0x7a1b8fff]
[    0.052513] PM: hibernation: Registered nosave memory: [mem 0x7a1b9000-0x7a235fff]
[    0.052514] PM: hibernation: Registered nosave memory: [mem 0x7a236000-0x7a2e6fff]
[    0.052515] PM: hibernation: Registered nosave memory: [mem 0x7a2e7000-0x7ab52fff]
[    0.052516] PM: hibernation: Registered nosave memory: [mem 0x7ab53000-0x7ac0dfff]
[    0.052518] PM: hibernation: Registered nosave memory: [mem 0x7ac0f000-0x7fffffff]
[    0.052519] PM: hibernation: Registered nosave memory: [mem 0x80000000-0xdfffffff]
[    0.052520] PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[    0.052521] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfdffffff]
[    0.052522] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[    0.052523] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[    0.052524] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.052525] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[    0.052526] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
[    0.052527] PM: hibernation: Registered nosave memory: [mem 0xfed04000-0xfedfffff]
[    0.052528] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.052529] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[    0.052530] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.052532] [mem 0x80000000-0xdfffffff] available for PCI devices
[    0.052534] Booting paravirtualized kernel on bare hardware
[    0.052537] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.057982] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
[    0.058193] percpu: Embedded 55 pages/cpu s185688 r8192 d31400 u262144
[    0.058210] pcpu-alloc: s185688 r8192 d31400 u262144 alloc=1*2097152
[    0.058214] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.058263] Built 1 zonelists, mobility grouping on.  Total pages: 4095577
[    0.058265] Policy zone: Normal
[    0.058267] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-lts root=UUID=aae5d06a-1405-4c5f-958b-bc800f31627c ro modules=sd-mod,usb-storage,ext4 quiet rootfstype=ext4
[    0.058336] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-lts modules=sd-mod,usb-storage,ext4", will be passed to user space.
[    0.058338] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.058339] printk: log_buf_len total cpu_extra contributions: 28672 bytes
[    0.058340] printk: log_buf_len min size: 16384 bytes
[    0.058429] printk: log_buf_len: 65536 bytes
[    0.058430] printk: early log buf free: 4168(25%)
[    0.059401] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.059880] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.060119] mem auto-init: stack:byref(zero), heap alloc:on, heap free:off
[    0.117912] Memory: 16187960K/16642996K available (12295K kernel code, 1312K rwdata, 3364K rodata, 2204K init, 7340K bss, 454776K reserved, 0K cma-reserved)
[    0.119593] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.119596] kmemleak: Kernel memory leak detector disabled
[    0.119623] Kernel/User page tables isolation: enabled
[    0.119637] ftrace: allocating 34968 entries in 137 pages
[    0.144151] ftrace: allocated 137 pages with 3 groups
[    0.144351] rcu: Hierarchical RCU implementation.
[    0.144353] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
[    0.144354] 	Rude variant of Tasks RCU enabled.
[    0.144355] 	Tracing variant of Tasks RCU enabled.
[    0.144356] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    0.144357] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.150560] NR_IRQS: 16640, nr_irqs: 2048, preallocated irqs: 16
[    0.151148] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[    0.151186] random: crng init done
[    0.151221] Console: colour dummy device 80x25
[    0.151238] printk: console [tty0] enabled
[    0.151260] ACPI: Core revision 20210730
[    0.151614] hpet: HPET dysfunctional in PC10. Force disabled.
[    0.151616] APIC: Switch to symmetric I/O mode setup
[    0.151618] DMAR: Host address width 39
[    0.151620] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.151626] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
[    0.151630] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.151634] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.151636] DMAR: RMRR base: 0x0000007a164000 end: 0x0000007a183fff
[    0.151638] DMAR: RMRR base: 0x0000007b800000 end: 0x0000007fffffff
[    0.151641] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    0.151643] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.151644] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.154455] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.154457] x2apic enabled
[    0.154485] Switched APIC routing to cluster x2apic.
[    0.160362] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x212717146a7, max_idle_ns: 440795291431 ns
[    0.160369] Calibrating delay loop (skipped), value calculated using timer frequency.. 4601.60 BogoMIPS (lpj=7666560)
[    0.160373] pid_max: default: 32768 minimum: 301
[    0.162958] LSM: Security Framework initializing
[    0.162965] landlock: Up and running.
[    0.162966] Yama: becoming mindful.
[    0.163038] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.163090] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.163388] CPU0: Thermal monitoring enabled (TM1)
[    0.163467] process: using mwait in idle threads
[    0.163470] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.163471] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.163476] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.163478] Spectre V2 : Mitigation: IBRS
[    0.163479] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.163480] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    0.163482] RETBleed: Mitigation: IBRS
[    0.163484] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.163487] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.163495] MDS: Mitigation: Clear CPU buffers
[    0.163496] MMIO Stale Data: Mitigation: Clear CPU buffers
[    0.163501] SRBDS: Mitigation: Microcode
[    0.163700] Freeing SMP alternatives memory: 32K
[    0.163700] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1602
[    0.163700] smpboot: CPU0: Intel(R) Core(TM) i5-8259U CPU @ 2.30GHz (family: 0x6, model: 0x8e, stepping: 0xa)
[    0.163700] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.163700] ... version:                4
[    0.163700] ... bit width:              48
[    0.163700] ... generic registers:      4
[    0.163700] ... value mask:             0000ffffffffffff
[    0.163700] ... max period:             00007fffffffffff
[    0.163700] ... fixed-purpose events:   3
[    0.163700] ... event mask:             000000070000000f
[    0.163700] rcu: Hierarchical SRCU implementation.
[    0.163700] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.163700] smp: Bringing up secondary CPUs ...
[    0.163700] x86: Booting SMP configuration:
[    0.163700] .... node  #0, CPUs:      #1 #2 #3 #4
[    0.164416] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.164416] MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
[    0.164416]  #5 #6 #7
[    0.164416] smp: Brought up 1 node, 8 CPUs
[    0.164416] smpboot: Max logical packages: 1
[    0.164416] ----------------
[    0.164416] | NMI testsuite:
[    0.164416] --------------------
[    0.164416]   remote IPI:  ok  |
[    0.164416]    local IPI:  ok  |
[    0.164416] --------------------
[    0.164416] Good, all   2 testcases passed! |
[    0.164416] ---------------------------------
[    0.164416] smpboot: Total of 8 processors activated (36814.80 BogoMIPS)
[    0.167530] devtmpfs: initialized
[    0.167530] ACPI: PM: Registering ACPI NVS region [mem 0x7a236000-0x7a2e6fff] (724992 bytes)
[    0.167530] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.167530] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.167530] pinctrl core: initialized pinctrl subsystem
[    0.167530] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.167605] audit: initializing netlink subsys (disabled)
[    0.167611] audit: type=2000 audit(1672208564.006:1): state=initialized audit_enabled=0 res=1
[    0.167611] thermal_sys: Registered thermal governor 'fair_share'
[    0.167611] thermal_sys: Registered thermal governor 'bang_bang'
[    0.167611] thermal_sys: Registered thermal governor 'step_wise'
[    0.167611] thermal_sys: Registered thermal governor 'user_space'
[    0.167611] cpuidle: using governor ladder
[    0.167611] cpuidle: using governor menu
[    0.167611] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.167611] ACPI: bus type PCI registered
[    0.167611] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.167611] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.167611] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.167611] PCI: Using configuration type 1 for base access
[    0.167611] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.168162] Kprobes globally optimized
[    0.170395] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.170430] ACPI: Added _OSI(Module Device)
[    0.170432] ACPI: Added _OSI(Processor Device)
[    0.170433] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.170435] ACPI: Added _OSI(Processor Aggregator Device)
[    0.170436] ACPI: Added _OSI(Linux-Dell-Video)
[    0.170438] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.170439] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.270303] ACPI: 8 ACPI AML tables successfully acquired and loaded
[    0.284729] ACPI: Dynamic OEM Table Load:
[    0.284738] ACPI: SSDT 0xFFFF9D80401E7300 0000F4 (v02 PmRef  Cpu0Psd  00003000 INTL 20160527)
[    0.286306] ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
[    0.288722] ACPI: Dynamic OEM Table Load:
[    0.288730] ACPI: SSDT 0xFFFF9D80411E5400 000400 (v02 PmRef  Cpu0Cst  00003001 INTL 20160527)
[    0.290436] ACPI: Dynamic OEM Table Load:
[    0.290444] ACPI: SSDT 0xFFFF9D80411F4800 0005A2 (v02 PmRef  Cpu0Ist  00003000 INTL 20160527)
[    0.292723] ACPI: Dynamic OEM Table Load:
[    0.292731] ACPI: SSDT 0xFFFF9D80411F2800 0005FC (v02 PmRef  ApIst    00003000 INTL 20160527)
[    0.294550] ACPI: Dynamic OEM Table Load:
[    0.294557] ACPI: SSDT 0xFFFF9D80411E3000 000317 (v02 PmRef  ApHwp    00003000 INTL 20160527)
[    0.296362] ACPI: Dynamic OEM Table Load:
[    0.296371] ACPI: SSDT 0xFFFF9D8040EC0000 000AB0 (v02 PmRef  ApPsd    00003000 INTL 20160527)
[    0.299006] ACPI: Dynamic OEM Table Load:
[    0.299013] ACPI: SSDT 0xFFFF9D80411E6800 00030A (v02 PmRef  ApCst    00003000 INTL 20160527)
[    0.305673] ACPI: EC: EC started
[    0.305675] ACPI: EC: interrupt blocked
[    0.305705] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.305708] ACPI: \_SB_.PCI0.LPCB.H_EC: Boot DSDT EC used to handle transactions
[    0.305709] ACPI: Interpreter enabled
[    0.305771] ACPI: PM: (supports S0 S3 S4 S5)
[    0.305772] ACPI: Using IOAPIC for interrupt routing
[    0.305825] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.307690] ACPI: Enabled 8 GPEs in block 00 to 7F
[    0.326210] ACPI: PM: Power Resource [USBC]
[    0.328102] ACPI: PM: Power Resource [V0PR]
[    0.328701] ACPI: PM: Power Resource [V1PR]
[    0.329288] ACPI: PM: Power Resource [V2PR]
[    0.341221] ACPI: PM: Power Resource [WRST]
[    0.345400] ACPI: PM: Power Resource [FN00]
[    0.345513] ACPI: PM: Power Resource [FN01]
[    0.345621] ACPI: PM: Power Resource [FN02]
[    0.345729] ACPI: PM: Power Resource [FN03]
[    0.345836] ACPI: PM: Power Resource [FN04]
[    0.346769] ACPI: PM: Power Resource [PIN]
[    0.347507] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    0.347515] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.349083] acpi PNP0A08:00: _OSC: platform does not support [AER]
[    0.351938] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR]
[    0.351941] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.353242] PCI host bridge to bus 0000:00
[    0.353245] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.353248] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.353250] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.353252] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[    0.353254] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    0.353256] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    0.353258] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    0.353260] pci_bus 0000:00: root bus resource [mem 0x80000000-0xdfffffff window]
[    0.353262] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[    0.353264] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
[    0.353266] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.353476] pci 0000:00:00.0: [8086:3ed0] type 00 class 0x060000
[    0.353935] pci 0000:00:02.0: [8086:3ea5] type 00 class 0x030000
[    0.353947] pci 0000:00:02.0: reg 0x10: [mem 0xa7000000-0xa7ffffff 64bit]
[    0.353955] pci 0000:00:02.0: reg 0x18: [mem 0x80000000-0x8fffffff 64bit pref]
[    0.353961] pci 0000:00:02.0: reg 0x20: [io  0x4000-0x403f]
[    0.353983] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.354306] pci 0000:00:08.0: [8086:1911] type 00 class 0x088000
[    0.354319] pci 0000:00:08.0: reg 0x10: [mem 0x4022c1a000-0x4022c1afff 64bit]
[    0.354651] pci 0000:00:12.0: [8086:9df9] type 00 class 0x118000
[    0.354675] pci 0000:00:12.0: reg 0x10: [mem 0x4022c19000-0x4022c19fff 64bit]
[    0.355126] pci 0000:00:14.0: [8086:9ded] type 00 class 0x0c0330
[    0.355146] pci 0000:00:14.0: reg 0x10: [mem 0x4022c00000-0x4022c0ffff 64bit]
[    0.355218] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.357367] pci 0000:00:14.2: [8086:9def] type 00 class 0x050000
[    0.357389] pci 0000:00:14.2: reg 0x10: [mem 0x4022c14000-0x4022c15fff 64bit]
[    0.357404] pci 0000:00:14.2: reg 0x18: [mem 0x4022c18000-0x4022c18fff 64bit]
[    0.357871] pci 0000:00:14.3: [8086:9df0] type 00 class 0x028000
[    0.357989] pci 0000:00:14.3: reg 0x10: [mem 0x4022c10000-0x4022c13fff 64bit]
[    0.358530] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[    0.359055] pci 0000:00:16.0: [8086:9de0] type 00 class 0x078000
[    0.359080] pci 0000:00:16.0: reg 0x10: [mem 0x4022c17000-0x4022c17fff 64bit]
[    0.359168] pci 0000:00:16.0: PME# supported from D3hot
[    0.359955] pci 0000:00:17.0: [8086:9dd3] type 00 class 0x010601
[    0.359974] pci 0000:00:17.0: reg 0x10: [mem 0xa8b24000-0xa8b25fff]
[    0.359986] pci 0000:00:17.0: reg 0x14: [mem 0xa8b27000-0xa8b270ff]
[    0.359998] pci 0000:00:17.0: reg 0x18: [io  0x4090-0x4097]
[    0.360010] pci 0000:00:17.0: reg 0x1c: [io  0x4080-0x4083]
[    0.360022] pci 0000:00:17.0: reg 0x20: [io  0x4060-0x407f]
[    0.360034] pci 0000:00:17.0: reg 0x24: [mem 0xa8b26000-0xa8b267ff]
[    0.360086] pci 0000:00:17.0: PME# supported from D3hot
[    0.360713] pci 0000:00:1c.0: [8086:9db8] type 01 class 0x060400
[    0.360810] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.361806] pci 0000:00:1c.4: [8086:9dbc] type 01 class 0x060400
[    0.361919] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.361958] pci 0000:00:1c.4: PTM enabled (root), 4ns granularity
[    0.362933] pci 0000:00:1d.0: [8086:9db0] type 01 class 0x060400
[    0.363057] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.363105] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[    0.364096] pci 0000:00:1d.6: [8086:9db6] type 01 class 0x060400
[    0.364197] pci 0000:00:1d.6: PME# supported from D0 D3hot D3cold
[    0.364230] pci 0000:00:1d.6: PTM enabled (root), 4ns granularity
[    0.365185] pci 0000:00:1f.0: [8086:9d84] type 00 class 0x060100
[    0.365908] pci 0000:00:1f.3: [8086:9dc8] type 00 class 0x040380
[    0.365959] pci 0000:00:1f.3: reg 0x10: [mem 0xa8b20000-0xa8b23fff 64bit]
[    0.366026] pci 0000:00:1f.3: reg 0x20: [mem 0x4022b00000-0x4022bfffff 64bit]
[    0.366159] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.370459] pci 0000:00:1f.4: [8086:9da3] type 00 class 0x0c0500
[    0.370489] pci 0000:00:1f.4: reg 0x10: [mem 0x4022c16000-0x4022c160ff 64bit]
[    0.370521] pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
[    0.370957] pci 0000:00:1f.5: [8086:9da4] type 00 class 0x0c8000
[    0.370977] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[    0.371389] pci 0000:00:1f.6: [8086:15be] type 00 class 0x020000
[    0.371432] pci 0000:00:1f.6: reg 0x10: [mem 0xa8b00000-0xa8b1ffff]
[    0.371644] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
[    0.371945] acpiphp: Slot [1] registered
[    0.371962] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.372150] pci 0000:00:1c.4: PCI bridge to [bus 02-3a]
[    0.372158] pci 0000:00:1c.4:   bridge window [mem 0x90000000-0xa60fffff]
[    0.372165] pci 0000:00:1c.4:   bridge window [mem 0x4000000000-0x4021ffffff 64bit pref]
[    0.372550] pci 0000:3b:00.0: [144d:a808] type 00 class 0x010802
[    0.372573] pci 0000:3b:00.0: reg 0x10: [mem 0xa8a00000-0xa8a03fff 64bit]
[    0.373031] pci 0000:00:1d.0: PCI bridge to [bus 3b]
[    0.373037] pci 0000:00:1d.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.373308] pci 0000:3c:00.0: [10ec:522a] type 00 class 0xff0000
[    0.373330] pci 0000:3c:00.0: reg 0x10: [mem 0xa8000000-0xa8000fff]
[    0.373480] pci 0000:3c:00.0: supports D1 D2
[    0.373482] pci 0000:3c:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.373687] pci 0000:00:1d.6: ASPM: current common clock configuration is inconsistent, reconfiguring
[    0.380483] pci 0000:00:1d.6: PCI bridge to [bus 3c]
[    0.380487] pci 0000:00:1d.6:   bridge window [io  0x3000-0x3fff]
[    0.380491] pci 0000:00:1d.6:   bridge window [mem 0xa8000000-0xa89fffff]
[    0.380498] pci 0000:00:1d.6:   bridge window [mem 0x4022100000-0x4022afffff 64bit pref]
[    0.382743] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.382862] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[    0.382978] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.383094] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.383210] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.383326] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.383441] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.383557] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.393703] ACPI: EC: interrupt unblocked
[    0.393703] ACPI: EC: event unblocked
[    0.393703] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.393703] ACPI: EC: GPE=0x14
[    0.393703] ACPI: \_SB_.PCI0.LPCB.H_EC: Boot DSDT EC initialization complete
[    0.393703] ACPI: \_SB_.PCI0.LPCB.H_EC: EC: Used to handle transactions and events
[    0.393733] iommu: Default domain type: Translated 
[    0.393733] iommu: DMA domain TLB invalidation policy: lazy mode 
[    0.393733] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.393733] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.393733] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.393733] vgaarb: loaded
[    0.393813] pps_core: LinuxPPS API ver. 1 registered
[    0.393814] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.393818] PTP clock support registered
[    0.393830] EDAC MC: Ver: 3.0.0
[    0.394062] Registered efivars operations
[    0.394062] PCI: Using ACPI for IRQ routing
[    0.432374] PCI: pci_cache_line_size set to 64 bytes
[    0.432941] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    0.432943] e820: reserve RAM buffer [mem 0x79d4e000-0x7bffffff]
[    0.432945] e820: reserve RAM buffer [mem 0x7ac0f000-0x7bffffff]
[    0.432947] e820: reserve RAM buffer [mem 0x47e000000-0x47fffffff]
[    0.432952] clocksource: Switched to clocksource tsc-early
[    0.438947] VFS: Disk quotas dquot_6.6.0
[    0.438966] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.439018] pnp: PnP ACPI init
[    0.439158] system 00:00: [mem 0x40000000-0x403fffff] could not be reserved
[    0.439709] system 00:01: [io  0x0a00-0x0a1f] has been reserved
[    0.439713] system 00:01: [io  0x0a20-0x0a2f] has been reserved
[    0.439715] system 00:01: [io  0x0a30-0x0a3f] has been reserved
[    0.439717] system 00:01: [io  0x0a40-0x0a4f] has been reserved
[    0.439720] system 00:01: [io  0x0a50-0x0a5f] has been reserved
[    0.439722] system 00:01: [io  0x0a60-0x0a6f] has been reserved
[    0.440037] system 00:02: [io  0x0680-0x069f] has been reserved
[    0.440040] system 00:02: [io  0x164e-0x164f] has been reserved
[    0.440199] system 00:03: [io  0x1854-0x1857] has been reserved
[    0.440499] system 00:04: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.440503] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.440506] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.440508] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
[    0.440511] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.440513] system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.440516] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.440518] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.440827] system 00:05: [io  0x1800-0x18fe] could not be reserved
[    0.440831] system 00:05: [mem 0xfd000000-0xfd69ffff] has been reserved
[    0.440833] system 00:05: [mem 0xfd6b0000-0xfd6cffff] has been reserved
[    0.440836] system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
[    0.440838] system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    0.440841] system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
[    0.440845] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[    0.441257] system 00:06: [io  0x2000-0x20fe] has been reserved
[    0.444116] pnp: PnP ACPI: found 8 devices
[    0.450030] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.450105] NET: Registered PF_INET protocol family
[    0.450326] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.452567] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[    0.452611] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.452711] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.452980] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.453088] TCP: Hash tables configured (established 131072 bind 65536)
[    0.453158] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.453221] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.453304] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.453312] NET: Registered PF_XDP protocol family
[    0.453320] pci 0000:00:1c.4: bridge window [io  0x1000-0x0fff] to [bus 02-3a] add_size 1000
[    0.453335] pci 0000:00:1c.4: BAR 13: assigned [io  0x5000-0x5fff]
[    0.453340] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.453363] pci 0000:00:1c.4: PCI bridge to [bus 02-3a]
[    0.453369] pci 0000:00:1c.4:   bridge window [io  0x5000-0x5fff]
[    0.453376] pci 0000:00:1c.4:   bridge window [mem 0x90000000-0xa60fffff]
[    0.453382] pci 0000:00:1c.4:   bridge window [mem 0x4000000000-0x4021ffffff 64bit pref]
[    0.453390] pci 0000:00:1d.0: PCI bridge to [bus 3b]
[    0.453404] pci 0000:00:1d.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.453414] pci 0000:00:1d.6: PCI bridge to [bus 3c]
[    0.453419] pci 0000:00:1d.6:   bridge window [io  0x3000-0x3fff]
[    0.453426] pci 0000:00:1d.6:   bridge window [mem 0xa8000000-0xa89fffff]
[    0.453431] pci 0000:00:1d.6:   bridge window [mem 0x4022100000-0x4022afffff 64bit pref]
[    0.453440] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.453442] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.453444] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.453446] pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000e3fff window]
[    0.453448] pci_bus 0000:00: resource 8 [mem 0x000e4000-0x000e7fff window]
[    0.453450] pci_bus 0000:00: resource 9 [mem 0x000e8000-0x000ebfff window]
[    0.453452] pci_bus 0000:00: resource 10 [mem 0x000ec000-0x000effff window]
[    0.453454] pci_bus 0000:00: resource 11 [mem 0x80000000-0xdfffffff window]
[    0.453456] pci_bus 0000:00: resource 12 [mem 0x4000000000-0x7fffffffff window]
[    0.453458] pci_bus 0000:00: resource 13 [mem 0xfc800000-0xfe7fffff window]
[    0.453460] pci_bus 0000:02: resource 0 [io  0x5000-0x5fff]
[    0.453462] pci_bus 0000:02: resource 1 [mem 0x90000000-0xa60fffff]
[    0.453464] pci_bus 0000:02: resource 2 [mem 0x4000000000-0x4021ffffff 64bit pref]
[    0.453466] pci_bus 0000:3b: resource 1 [mem 0xa8a00000-0xa8afffff]
[    0.453468] pci_bus 0000:3c: resource 0 [io  0x3000-0x3fff]
[    0.453470] pci_bus 0000:3c: resource 1 [mem 0xa8000000-0xa89fffff]
[    0.453472] pci_bus 0000:3c: resource 2 [mem 0x4022100000-0x4022afffff 64bit pref]
[    0.454402] PCI: CLS 64 bytes, default 64
[    0.454444] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.454446] software IO TLB: mapped [mem 0x0000000073e51000-0x0000000077e51000] (64MB)
[    0.454474] Trying to unpack rootfs image as initramfs...
[    0.467395] platform rtc_cmos: registered platform RTC device (no PNP device found)
[    0.467935] Initialise system trusted keyrings
[    0.467977] workingset: timestamp_bits=40 max_order=22 bucket_order=0
[    0.469232] zbud: loaded
[    0.469345] Key type asymmetric registered
[    0.469347] Asymmetric key parser 'x509' registered
[    0.469367] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    0.469404] io scheduler mq-deadline registered
[    0.469406] io scheduler kyber registered
[    0.469440] io scheduler bfq registered
[    0.469898] pcieport 0000:00:1c.0: PME: Signaling with IRQ 122
[    0.470291] pcieport 0000:00:1c.4: PME: Signaling with IRQ 123
[    0.470343] pcieport 0000:00:1c.4: pciehp: Slot #8 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.470800] pcieport 0000:00:1d.0: PME: Signaling with IRQ 124
[    0.471151] pcieport 0000:00:1d.6: PME: Signaling with IRQ 125
[    0.471197] pcieport 0000:00:1d.6: pciehp: Slot #18 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.471383] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.472371] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
[    0.472380] ACPI Error: Aborting method \_SB.PR01._CPC due to previous error (AE_NOT_FOUND) (20210730/psparse-529)
[    0.472439] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
[    0.472445] ACPI Error: Aborting method \_SB.PR02._CPC due to previous error (AE_NOT_FOUND) (20210730/psparse-529)
[    0.472498] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
[    0.472502] ACPI Error: Aborting method \_SB.PR03._CPC due to previous error (AE_NOT_FOUND) (20210730/psparse-529)
[    0.472558] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
[    0.472565] ACPI Error: Aborting method \_SB.PR04._CPC due to previous error (AE_NOT_FOUND) (20210730/psparse-529)
[    0.472644] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
[    0.472652] ACPI Error: Aborting method \_SB.PR05._CPC due to previous error (AE_NOT_FOUND) (20210730/psparse-529)
[    0.472719] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
[    0.472727] ACPI Error: Aborting method \_SB.PR06._CPC due to previous error (AE_NOT_FOUND) (20210730/psparse-529)
[    0.472795] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PR00._CPC], AE_NOT_FOUND (20210730/psargs-330)
[    0.472802] ACPI Error: Aborting method \_SB.PR07._CPC due to previous error (AE_NOT_FOUND) (20210730/psparse-529)
[    0.472877] ERST DBG: ERST support is disabled.
[    0.472990] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.473573] hpet_acpi_add: no address or irqs in _CRS
[    0.476344] brd: module loaded
[    0.476451] i8042: PNP: No PS/2 controller found.
[    0.476453] i8042: Probing ports directly.
[    0.477743] i8042: No controller found
[    0.477798] rtc_cmos rtc_cmos: RTC can wake from S4
[    0.478915] rtc_cmos rtc_cmos: registered as rtc0
[    0.479158] rtc_cmos rtc_cmos: setting system clock to 2022-12-28T06:22:44 UTC (1672208564)
[    0.479175] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[    0.479453] intel_pstate: Intel P-state driver initializing
[    0.479880] intel_pstate: HWP enabled
[    0.479988] ashmem: initialized
[    0.480046] intel_pmc_core INT33A1:00:  initialized
[    0.480187] gre: GRE over IPv4 demultiplexor driver
[    0.480189] can: controller area network core
[    0.480199] NET: Registered PF_CAN protocol family
[    0.480227] Key type dns_resolver registered
[    0.481192] microcode: sig=0x806ea, pf=0x40, revision=0xe0
[    0.481306] microcode: Microcode Update Driver: v2.2.
[    0.481310] IPI shorthand broadcast: enabled
[    0.481318] sched_clock: Marking stable (471984286, 9316537)->(512835575, -31534752)
[    0.481543] registered taskstats version 1
[    0.481546] Loading compiled-in X.509 certificates
[    0.481815] zswap: loaded using pool lzo/zbud
[    0.482360] Key type .fscrypt registered
[    0.482361] Key type fscrypt-provisioning registered
[    0.554806] Freeing initrd memory: 15040K
[    0.556325] Freeing unused kernel image (initmem) memory: 2204K
[    0.597270] Write protecting the kernel read-only data: 18432k
[    0.597809] Freeing unused kernel image (text/rodata gap) memory: 2040K
[    0.598065] Freeing unused kernel image (rodata/data gap) memory: 732K
[    0.598116] Run /init as init process
[    0.598117]   with arguments:
[    0.598118]     /init
[    0.598118]   with environment:
[    0.598119]     HOME=/
[    0.598120]     TERM=linux
[    0.598120]     BOOT_IMAGE=/boot/vmlinuz-lts
[    0.598121]     modules=sd-mod,usb-storage,ext4
[    0.606545] Alpine Init 3.7.0-r0
[    0.607198] Loading boot drivers...
[    0.616704] SCSI subsystem initialized
[    0.629665] ACPI: bus type USB registered
[    0.629694] usbcore: registered new interface driver usbfs
[    0.629705] usbcore: registered new interface driver hub
[    0.629728] usbcore: registered new device driver usb
[    0.632141] usbcore: registered new interface driver usb-storage
[    0.661383] loop: module loaded
[    0.662752] Linux agpgart interface v0.103
[    0.686180] Loading boot drivers: ok.
[    0.687115] Mounting root...
[    0.698079] acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[    0.698180] acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[    0.709206] libata version 3.00 loaded.
[    0.710830] ahci 0000:00:17.0: version 3.0
[    0.711119] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x4 impl SATA mode
[    0.711122] ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part deso sadm sds apst 
[    0.711535] scsi host0: ahci
[    0.711680] scsi host1: ahci
[    0.711782] scsi host2: ahci
[    0.711841] ata1: DUMMY
[    0.711842] ata2: DUMMY
[    0.711856] ata3: SATA max UDMA/133 abar m2048@0xa8b26000 port 0xa8b26200 irq 126
[    1.022112] ata3: SATA link down (SStatus 4 SControl 300)
[    1.030477] nvme nvme0: pci function 0000:3b:00.0
[    1.037727] nvme nvme0: missing or invalid SUBNQN field.
[    1.037766] nvme nvme0: Shutdown timeout set to 8 seconds
[    1.050333] nvme nvme0: 8/0/0 default/read/poll queues
[    1.053537]  nvme0n1: p1 p2 p3
[    1.067139] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.067149] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    1.068236] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
[    1.068491] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.068495] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    1.068499] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[    1.068545] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[    1.068549] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.068551] usb usb1: Product: xHCI Host Controller
[    1.068553] usb usb1: Manufacturer: Linux 5.15.84-0-lts xhci-hcd
[    1.068555] usb usb1: SerialNumber: 0000:00:14.0
[    1.068693] hub 1-0:1.0: USB hub found
[    1.068712] hub 1-0:1.0: 12 ports detected
[    1.070358] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
[    1.070362] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.070365] usb usb2: Product: xHCI Host Controller
[    1.070374] usb usb2: Manufacturer: Linux 5.15.84-0-lts xhci-hcd
[    1.070376] usb usb2: SerialNumber: 0000:00:14.0
[    1.070561] hub 2-0:1.0: USB hub found
[    1.070575] hub 2-0:1.0: 6 ports detected
[    1.071368] usb: port power management may be unreliable
[    1.133547] EXT4-fs (nvme0n1p3): INFO: recovery required on readonly filesystem
[    1.133550] EXT4-fs (nvme0n1p3): write access will be enabled during recovery
[    1.317145] usb 1-10: new full-speed USB device number 2 using xhci_hcd
[    1.341988] EXT4-fs (nvme0n1p3): orphan cleanup on readonly fs
[    1.342754] EXT4-fs (nvme0n1p3): 8 orphan inodes deleted
[    1.342756] EXT4-fs (nvme0n1p3): recovery complete
[    1.352348] EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[    1.352530] Mounting root: ok.
[    1.388082] fbcon: Taking over console
[    1.461771] usb 1-10: New USB device found, idVendor=8087, idProduct=0aaa, bcdDevice= 0.02
[    1.461780] usb 1-10: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.493776] tsc: Refined TSC clocksource calibration: 2304.000 MHz
[    1.493785] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2135f7c97c8, max_idle_ns: 440795273205 ns
[    1.493857] clocksource: Switched to clocksource tsc
[    2.246287] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[    2.246341] ACPI: button: Sleep Button [SLPB]
[    2.246413] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    2.246468] ACPI: button: Power Button [PWRB]
[    2.246551] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    2.257083] ACPI: button: Power Button [PWRF]
[    2.262310] thermal LNXTHERM:00: registered as thermal_zone0
[    2.262316] ACPI: thermal: Thermal Zone [TZ0] (-263 C)
[    2.263437] thermal LNXTHERM:01: registered as thermal_zone1
[    2.263443] ACPI: thermal: Thermal Zone [TZ00] (28 C)
[    2.380488] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[    2.380495] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    2.380498] RAPL PMU: hw unit of domain package 2^-14 Joules
[    2.380501] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    2.380504] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    2.380506] RAPL PMU: hw unit of domain psys 2^-14 Joules
[    2.382879] cryptd: max_cpu_qlen set to 1000
[    2.389434] AVX2 version of gcm_enc/dec engaged.
[    2.389520] AES CTR mode by8 optimization enabled
[    2.443913] intel_tcc_cooling: Programmable TCC Offset detected
[    2.509141] intel_rapl_common: Found RAPL domain package
[    2.509147] intel_rapl_common: Found RAPL domain core
[    2.509149] intel_rapl_common: Found RAPL domain uncore
[    2.509150] intel_rapl_common: Found RAPL domain dram
[    2.509152] intel_rapl_common: Found RAPL domain psys
[    2.537302] e1000e: Intel(R) PRO/1000 Network Driver
[    2.537306] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    2.537733] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    2.741043] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
[    2.810242] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) 1c:69:7a:6f:d4:4b
[    2.810249] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
[    2.810388] e1000e 0000:00:1f.6 eth0: MAC: 13, PHY: 12, PBA No: FFFFFF-0FF
[    2.895067] i915 0000:00:02.0: [drm] Found 128MB of eDRAM
[    2.895100] i915 0000:00:02.0: vgaarb: deactivate vga console
[    2.897699] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    2.898381] i915 0000:00:02.0: [drm] [ENCODER:94:DDI B/PHY B] is disabled/in DSI mode with an ungated DDI clock, gate it
[    2.898385] i915 0000:00:02.0: [drm] [ENCODER:107:DDI C/PHY C] is disabled/in DSI mode with an ungated DDI clock, gate it
[    2.899579] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
[    2.926296] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[    2.929124] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    2.930014] acpi device:0f: registered as cooling_device15
[    2.930086] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input3
[    2.967029] i915 0000:00:02.0: [drm] Cannot find any crtc or sizes
[    2.969843] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    2.969898] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    2.972041] i2c i2c-6: 1/2 memory slots populated (from DMI)
[    2.972238] iTCO_vendor_support: vendor-support=0
[    2.972445] i2c i2c-6: Successfully instantiated SPD at 0x50
[    2.973367] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[    2.973518] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    2.978466] ee1004 6-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[    2.996350] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[    2.996396] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[    3.002061] i915 0000:00:02.0: [drm] Cannot find any crtc or sizes
[    3.002065] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    3.036689] i915 0000:00:02.0: [drm] Cannot find any crtc or sizes
[    3.036848] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[    3.040192] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC233: line_outs=1 (0x21/0x0/0x0/0x0/0x0) type:hp
[    3.040196] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    3.040198] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    3.040199] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    3.040200] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    3.040201] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x19
[    3.040202] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[    3.050413] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
[    3.065521] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    3.068515] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    3.068541] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    3.068562] cfg80211: failed to load regulatory.db
[    3.074763] Intel(R) Wireless WiFi driver for Linux
[    3.074808] iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
[    3.077265] iwlwifi 0000:00:14.3: WRT: Overriding region id 0
[    3.077268] iwlwifi 0000:00:14.3: WRT: Overriding region id 1
[    3.077270] iwlwifi 0000:00:14.3: WRT: Overriding region id 2
[    3.077271] iwlwifi 0000:00:14.3: WRT: Overriding region id 3
[    3.077272] iwlwifi 0000:00:14.3: WRT: Overriding region id 4
[    3.077273] iwlwifi 0000:00:14.3: WRT: Overriding region id 6
[    3.077274] iwlwifi 0000:00:14.3: WRT: Overriding region id 8
[    3.077275] iwlwifi 0000:00:14.3: WRT: Overriding region id 9
[    3.077276] iwlwifi 0000:00:14.3: WRT: Overriding region id 10
[    3.077277] iwlwifi 0000:00:14.3: WRT: Overriding region id 11
[    3.077278] iwlwifi 0000:00:14.3: WRT: Overriding region id 15
[    3.077279] iwlwifi 0000:00:14.3: WRT: Overriding region id 16
[    3.077280] iwlwifi 0000:00:14.3: WRT: Overriding region id 18
[    3.077281] iwlwifi 0000:00:14.3: WRT: Overriding region id 19
[    3.077282] iwlwifi 0000:00:14.3: WRT: Overriding region id 20
[    3.077283] iwlwifi 0000:00:14.3: WRT: Overriding region id 21
[    3.077284] iwlwifi 0000:00:14.3: WRT: Overriding region id 28
[    3.077558] iwlwifi 0000:00:14.3: loaded firmware version 46.50fdb42f.0 9000-pu-b0-jf-b0-46.ucode op_mode iwlmvm
[    3.079383] input: PC Speaker as /devices/platform/pcspkr/input/input4
[    3.096997] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input5
[    3.097077] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input6
[    3.097156] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input7
[    3.097228] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input8
[    3.097307] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input9
[    3.097385] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input10
[    3.097458] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
[    3.107678] Bluetooth: Core ver 2.22
[    3.107697] NET: Registered PF_BLUETOOTH protocol family
[    3.107699] Bluetooth: HCI device and connection manager initialized
[    3.107704] Bluetooth: HCI socket layer initialized
[    3.107706] Bluetooth: L2CAP socket layer initialized
[    3.107709] Bluetooth: SCO socket layer initialized
[    3.114162] usbcore: registered new interface driver btusb
[    3.116714] iwlwifi 0000:00:14.3: Detected Intel(R) Wireless-AC 9560 160MHz, REV=0x318
[    3.116886] Bluetooth: hci0: Bootloader revision 0.1 build 42 week 52 2015
[    3.117891] Bluetooth: hci0: Device revision is 2
[    3.117894] Bluetooth: hci0: Secure boot is enabled
[    3.117895] Bluetooth: hci0: OTP lock is enabled
[    3.117897] Bluetooth: hci0: API lock is enabled
[    3.117897] Bluetooth: hci0: Debug lock is disabled
[    3.117899] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[    3.118825] Bluetooth: hci0: Found device firmware: intel/ibt-17-16-1.sfi
[    3.123310] thermal thermal_zone4: failed to read out thermal zone (-61)
[    3.170711] iwlwifi 0000:00:14.3: base HW address: ac:67:5d:90:8d:23
[    3.238822] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[    3.619137] NET: Registered PF_PACKET protocol family
[    3.643739] NET: Registered PF_INET6 protocol family
[    3.650200] Segment Routing with IPv6
[    3.650208] In-situ OAM (IOAM) with IPv6
[    3.715957] EXT4-fs (nvme0n1p3): re-mounted. Opts: (null). Quota mode: none.
[    3.724658] EXT4-fs (nvme0n1p3): re-mounted. Opts: (null). Quota mode: none.
[    3.757353] Adding 4194300k swap on /dev/nvme0n1p2.  Priority:-2 extents:1 across:4194300k SSFS
[    3.786105] FAT-fs (nvme0n1p1): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
[    4.659427] Bluetooth: hci0: Waiting for firmware download to complete
[    4.659954] Bluetooth: hci0: Firmware loaded in 1505005 usecs
[    4.660066] Bluetooth: hci0: Waiting for device to boot
[    4.674087] Bluetooth: hci0: Device booted in 13781 usecs
[    4.681003] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-17-16-1.ddc
[    4.683111] Bluetooth: hci0: Applying Intel DDC parameters completed
[    4.686116] Bluetooth: hci0: Firmware revision 0.1 build 214 week 6 2022
[    7.117359] e1000e 0000:00:1f.6 eth0: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
[    7.117461] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   15.050417] FS-Cache: Loaded
[   15.086505] FS-Cache: Netfs 'cifs' registered for caching
[   15.086565] Key type cifs.spnego registered
[   15.086575] Key type cifs.idmap registered
[   15.087041] CIFS: No dialect specified on mount. Default has changed to a more secure dialect, SMB2.1 or later (e.g. SMB3.1.1), from CIFS (SMB1). To use the less secure SMB1 dialect to access old servers which do not support SMB3.1.1 (or even SMB3 or SMB2.1) specify vers=1.0 on mount.
[   15.087042] CIFS: Attempting to mount \\192.168.178.200\synchronize
[   15.950945] CIFS: Attempting to mount \\192.168.178.200\archief
[   15.986956] CIFS: Attempting to mount \\192.168.178.200\boeken
[   16.017168] CIFS: Attempting to mount \\192.168.178.200\documenten
[   16.064422] CIFS: Attempting to mount \\192.168.178.200\gaming
[   16.095749] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   16.097879] Bridge firewalling registered
[   16.099140] CIFS: Attempting to mount \\192.168.178.200\homes
[   16.144368] Initializing XFRM netlink socket
[   16.153393] CIFS: Attempting to mount \\192.168.178.200\homevideo
[   16.185735] CIFS: Attempting to mount \\192.168.178.200\music
[   16.222904] CIFS: Attempting to mount \\192.168.178.200\photo
[   16.290043] CIFS: Attempting to mount \\192.168.178.200\software
[   17.047461] br-ee068a8d5fe8: port 1(vethb8a8c61) entered blocking state
[   17.047468] br-ee068a8d5fe8: port 1(vethb8a8c61) entered disabled state
[   17.047678] device vethb8a8c61 entered promiscuous mode
[   17.047808] br-ee068a8d5fe8: port 1(vethb8a8c61) entered blocking state
[   17.047812] br-ee068a8d5fe8: port 1(vethb8a8c61) entered forwarding state
[   17.047833] IPv6: ADDRCONF(NETDEV_CHANGE): br-ee068a8d5fe8: link becomes ready
[   17.057610] br-ee068a8d5fe8: port 1(vethb8a8c61) entered disabled state
[   17.093104] docker0: port 1(veth4ebd5b0) entered blocking state
[   17.093109] docker0: port 1(veth4ebd5b0) entered disabled state
[   17.093173] device veth4ebd5b0 entered promiscuous mode
[   17.101023] br-ee068a8d5fe8: port 2(veth22af535) entered blocking state
[   17.101028] br-ee068a8d5fe8: port 2(veth22af535) entered disabled state
[   17.101088] device veth22af535 entered promiscuous mode
[   17.101157] br-ee068a8d5fe8: port 2(veth22af535) entered blocking state
[   17.101160] br-ee068a8d5fe8: port 2(veth22af535) entered forwarding state
[   17.101209] br-ee068a8d5fe8: port 2(veth22af535) entered disabled state
[   17.160227] docker0: port 2(veth96b1e48) entered blocking state
[   17.160233] docker0: port 2(veth96b1e48) entered disabled state
[   17.160294] device veth96b1e48 entered promiscuous mode
[   17.163035] docker0: port 2(veth96b1e48) entered blocking state
[   17.163038] docker0: port 2(veth96b1e48) entered forwarding state
[   17.163086] docker0: port 2(veth96b1e48) entered disabled state
[   17.231528] br-ee068a8d5fe8: port 3(veth603dfb8) entered blocking state
[   17.231535] br-ee068a8d5fe8: port 3(veth603dfb8) entered disabled state
[   17.232174] device veth603dfb8 entered promiscuous mode
[   17.236107] br-ee068a8d5fe8: port 3(veth603dfb8) entered blocking state
[   17.236112] br-ee068a8d5fe8: port 3(veth603dfb8) entered forwarding state
[   17.237835] br-ee068a8d5fe8: port 3(veth603dfb8) entered disabled state
[   17.313206] docker0: port 3(veth6c024f3) entered blocking state
[   17.313212] docker0: port 3(veth6c024f3) entered disabled state
[   17.313279] device veth6c024f3 entered promiscuous mode
[   17.313368] docker0: port 3(veth6c024f3) entered blocking state
[   17.313371] docker0: port 3(veth6c024f3) entered forwarding state
[   17.313391] IPv6: ADDRCONF(NETDEV_CHANGE): docker0: link becomes ready
[   17.313466] docker0: port 3(veth6c024f3) entered disabled state
[   17.382456] docker0: port 4(veth25fbaf9) entered blocking state
[   17.382461] docker0: port 4(veth25fbaf9) entered disabled state
[   17.402393] device veth25fbaf9 entered promiscuous mode
[   17.403869] docker0: port 4(veth25fbaf9) entered blocking state
[   17.403875] docker0: port 4(veth25fbaf9) entered forwarding state
[   17.478130] docker0: port 5(vethfdd8d20) entered blocking state
[   17.478135] docker0: port 5(vethfdd8d20) entered disabled state
[   17.478197] device vethfdd8d20 entered promiscuous mode
[   17.478270] docker0: port 5(vethfdd8d20) entered blocking state
[   17.478273] docker0: port 5(vethfdd8d20) entered forwarding state
[   17.587140] eth0: renamed from veth78b1247
[   17.600587] docker0: port 4(veth25fbaf9) entered disabled state
[   17.602175] docker0: port 5(vethfdd8d20) entered disabled state
[   17.602206] IPv6: ADDRCONF(NETDEV_CHANGE): vethb8a8c61: link becomes ready
[   17.602225] br-ee068a8d5fe8: port 1(vethb8a8c61) entered blocking state
[   17.602226] br-ee068a8d5fe8: port 1(vethb8a8c61) entered forwarding state
[   17.657787] eth0: renamed from vethc40a16f
[   17.682406] eth0: renamed from veth5c7b177
[   17.768692] eth0: renamed from veth6ca5151
[   17.817955] IPv6: ADDRCONF(NETDEV_CHANGE): veth4ebd5b0: link becomes ready
[   17.818009] docker0: port 1(veth4ebd5b0) entered blocking state
[   17.818015] docker0: port 1(veth4ebd5b0) entered forwarding state
[   17.818073] eth0: renamed from veth7a3e150
[   17.861068] IPv6: ADDRCONF(NETDEV_CHANGE): veth96b1e48: link becomes ready
[   17.861129] docker0: port 2(veth96b1e48) entered blocking state
[   17.861137] docker0: port 2(veth96b1e48) entered forwarding state
[   17.861182] IPv6: ADDRCONF(NETDEV_CHANGE): veth22af535: link becomes ready
[   17.861212] br-ee068a8d5fe8: port 2(veth22af535) entered blocking state
[   17.861215] br-ee068a8d5fe8: port 2(veth22af535) entered forwarding state
[   17.861374] eth0: renamed from veth0ab1c13
[   17.882272] IPv6: ADDRCONF(NETDEV_CHANGE): veth603dfb8: link becomes ready
[   17.882336] br-ee068a8d5fe8: port 3(veth603dfb8) entered blocking state
[   17.882341] br-ee068a8d5fe8: port 3(veth603dfb8) entered forwarding state
[   17.882526] eth0: renamed from veth82cae4f
[   17.907747] IPv6: ADDRCONF(NETDEV_CHANGE): veth6c024f3: link becomes ready
[   17.907789] docker0: port 3(veth6c024f3) entered blocking state
[   17.907794] docker0: port 3(veth6c024f3) entered forwarding state
[   17.908077] IPv6: ADDRCONF(NETDEV_CHANGE): veth25fbaf9: link becomes ready
[   17.908124] docker0: port 4(veth25fbaf9) entered blocking state
[   17.908129] docker0: port 4(veth25fbaf9) entered forwarding state
[   17.942263] eth0: renamed from veth60a8499
[   17.962573] IPv6: ADDRCONF(NETDEV_CHANGE): vethfdd8d20: link becomes ready
[   17.962602] docker0: port 5(vethfdd8d20) entered blocking state
[   17.962605] docker0: port 5(vethfdd8d20) entered forwarding state
[   18.017324] tun: Universal TUN/TAP device driver, 1.6
[   24.003145] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
[   24.003149] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
[   76.053166] docker0: port 6(veth457b225) entered blocking state
[   76.053170] docker0: port 6(veth457b225) entered disabled state
[   76.063004] device veth457b225 entered promiscuous mode
[   76.337838] eth0: renamed from veth2b49929
[   76.368014] IPv6: ADDRCONF(NETDEV_CHANGE): veth457b225: link becomes ready
[   76.368039] docker0: port 6(veth457b225) entered blocking state
[   76.368041] docker0: port 6(veth457b225) entered forwarding state
[ 1929.297096] docker0: port 6(veth457b225) entered disabled state
[ 1929.297160] veth2b49929: renamed from eth0
[ 1929.379873] docker0: port 6(veth457b225) entered disabled state
[ 1929.380710] device veth457b225 left promiscuous mode
[ 1929.380717] docker0: port 6(veth457b225) entered disabled state
[ 1960.709167] docker0: port 6(veth16f1a82) entered blocking state
[ 1960.709177] docker0: port 6(veth16f1a82) entered disabled state
[ 1960.709298] device veth16f1a82 entered promiscuous mode
[ 1960.998414] eth0: renamed from vethdbd7f01
[ 1961.015215] IPv6: ADDRCONF(NETDEV_CHANGE): veth16f1a82: link becomes ready
[ 1961.015266] docker0: port 6(veth16f1a82) entered blocking state
[ 1961.015271] docker0: port 6(veth16f1a82) entered forwarding state
[ 1993.064783] vethdbd7f01: renamed from eth0
[ 1993.087905] docker0: port 6(veth16f1a82) entered disabled state
[ 1993.139474] docker0: port 6(veth16f1a82) entered disabled state
[ 1993.139914] device veth16f1a82 left promiscuous mode
[ 1993.139917] docker0: port 6(veth16f1a82) entered disabled state
[ 1993.258750] docker0: port 6(veth8eb2ef4) entered blocking state
[ 1993.258759] docker0: port 6(veth8eb2ef4) entered disabled state
[ 1993.258850] device veth8eb2ef4 entered promiscuous mode
[ 1993.258958] docker0: port 6(veth8eb2ef4) entered blocking state
[ 1993.258963] docker0: port 6(veth8eb2ef4) entered forwarding state
[ 1993.491190] eth0: renamed from veth6f0e9f0
[ 1993.521255] IPv6: ADDRCONF(NETDEV_CHANGE): veth8eb2ef4: link becomes ready
[11859.579371] docker0: port 6(veth8eb2ef4) entered disabled state
[11859.579466] veth6f0e9f0: renamed from eth0
[11859.645477] docker0: port 6(veth8eb2ef4) entered disabled state
[11859.645932] device veth8eb2ef4 left promiscuous mode
[11859.645936] docker0: port 6(veth8eb2ef4) entered disabled state
[11859.789080] docker0: port 6(veth96bbe2e) entered blocking state
[11859.789086] docker0: port 6(veth96bbe2e) entered disabled state
[11859.789171] device veth96bbe2e entered promiscuous mode
[11859.789266] docker0: port 6(veth96bbe2e) entered blocking state
[11859.789270] docker0: port 6(veth96bbe2e) entered forwarding state
[11860.003262] eth0: renamed from vethaac129c
[11860.026714] IPv6: ADDRCONF(NETDEV_CHANGE): veth96bbe2e: link becomes ready
[12047.152182] docker0: port 6(veth96bbe2e) entered disabled state
[12047.152247] vethaac129c: renamed from eth0
[12047.221682] docker0: port 6(veth96bbe2e) entered disabled state
[12047.222069] device veth96bbe2e left promiscuous mode
[12047.222072] docker0: port 6(veth96bbe2e) entered disabled state
[12047.353223] docker0: port 6(veth3b576c5) entered blocking state
[12047.353232] docker0: port 6(veth3b576c5) entered disabled state
[12047.353359] device veth3b576c5 entered promiscuous mode
[12047.353493] docker0: port 6(veth3b576c5) entered blocking state
[12047.353498] docker0: port 6(veth3b576c5) entered forwarding state
[12047.590520] eth0: renamed from vethadd08c5
[12047.610714] IPv6: ADDRCONF(NETDEV_CHANGE): veth3b576c5: link becomes ready
[25416.061619] perf: interrupt took too long (2506 > 2500), lowering kernel.perf_event_max_sample_rate to 79800
[31177.667812] perf: interrupt took too long (3149 > 3132), lowering kernel.perf_event_max_sample_rate to 63300

 

Link to comment
Share on other sites

Q-Droid

Syslog is the facility and depending on distro the file is either /var/log/messages or /var/log/syslog. There could be others and/or certain messages split out. I'd like to see what syslog is logging (either file above).

 

Link to comment
Share on other sites

1 minute ago, Q-Droid said:

Syslog is the facility and depending on distro the file is either /var/log/messages or /var/log/syslog. There could be others and/or certain messages split out. I'd like to see what syslog is logging (either file above).

 

Thanks Q-Droid. messages are in the attachment

messages.txt.zip

Link to comment
Share on other sites

Q-Droid

Not much of use in there. The trick is to find system logs from the time period when the server hung, whether the log files themselves or thru journalctl to narrow it down to that time window.

 

Link to comment
Share on other sites

7 hours ago, Q-Droid said:

Not much of use in there. The trick is to find system logs from the time period when the server hung, whether the log files themselves or thru journalctl to narrow it down to that time window.

 

Hi Q-Droid,

One (maybe dumb) question: since I gave you the complete "messages" file and Dmesg. Is there any more logging and how to find it.

Second: I disable the 15 minutes interval library scan (crontab), I have a feeling that since that time the sever is stabiel.

I also did change to de BETA image, but I did that before and That did not help that time.

That said, I like to find this problem, maybe it is a problem in the software of Emby.

Link to comment
Share on other sites

Q-Droid

You would have to look into the logging options in Alpine which I'm not all that familiar with. Most of the entries in the log were cron job runs and I expected to see more system activity related entries. Maybe Alpine breaks them out into multiple logs.

Forcing frequent library scans has the potential to cause problems but I don't know how they would manifest.

If it remains stable then you can try adding the jobs back to see what happens. But since Emby did not log errors and was stopped cleanly and your system as whole became unresponsive it's hard to say without more info.

 

Link to comment
Share on other sites

57 minutes ago, Q-Droid said:

You would have to look into the logging options in Alpine which I'm not all that familiar with. Most of the entries in the log were cron job runs and I expected to see more system activity related entries. Maybe Alpine breaks them out into multiple logs.

Forcing frequent library scans has the potential to cause problems but I don't know how they would manifest.

If it remains stable then you can try adding the jobs back to see what happens. But since Emby did not log errors and was stopped cleanly and your system as whole became unresponsive it's hard to say without more info.

 

Overlooking it, I don't really needed those cronjobs. Which I stopped all together. I am just a lazy guy, and want all to be handle automatically.

Fact is that with Plex, the system didn't crash for days, same amount of content... all was the same, but the cronjob that refreshed the libs in Emby.

I will have a look in the logging options, maybe it helps the Emby-guys. 

  • Thanks 1
Link to comment
Share on other sites

Q-Droid

The errors in this log are probing 'The Woman King' and then fetching metadata for the movie. I don't see anything pointing to why it stopped logging or if it crashed.

This movie keeps showing up in your logs from before which shouldn't if it's already been scanned and probed before.

Link to comment
Share on other sites

1 hour ago, Q-Droid said:

The errors in this log are probing 'The Woman King' and then fetching metadata for the movie. I don't see anything pointing to why it stopped logging or if it crashed.

This movie keeps showing up in your logs from before which shouldn't if it's already been scanned and probed before.

Droid, can you please point out what logging is needed to tackle this. 

 

It starts to get annoying now. 

Link to comment
Share on other sites

Q-Droid

As I posted before you have to find where Alpine is logging these OS events which might show when and why it's hanging.

You can also enable Debug Logging in Emby under Settings -> Logs. It might show something useful.

Thirdly, you could move 'The Woman King' out of your library to see if it stops trying to scan and throw errors for that movie. Though it could just move on to another one and throw errors for that as well.

 

Link to comment
Share on other sites

14 minutes ago, Luke said:

Hi, has this helped?

Hi Luke, 

After months of digging and the latest help from Q-Driod, I decidec to switch from "Alpine Linux" to "Ubuntu Server".

I run 2 linux nodes. Both are more snappy. Downloads run more smooth, and so far (but we must test some more) Emby stays stable..

The other node (running Sonarr/radarr/lidarr... etc etc ) is more responsive too under workload... (cpus up to 80%).

I have a feeling it was Alpine.... (although the node not running Emby never hung. and when I was running Plex on the Emby node, it also did not hang).

 

I let you know in a few days.

  • Like 1
Link to comment
Share on other sites

On 1/4/2023 at 10:05 PM, Marc0 said:

Hi Luke, 

After months of digging and the latest help from Q-Driod, I decidec to switch from "Alpine Linux" to "Ubuntu Server".

I run 2 linux nodes. Both are more snappy. Downloads run more smooth, and so far (but we must test some more) Emby stays stable..

The other node (running Sonarr/radarr/lidarr... etc etc ) is more responsive too under workload... (cpus up to 80%).

I have a feeling it was Alpine.... (although the node not running Emby never hung. and when I was running Plex on the Emby node, it also did not hang).

 

I let you know in a few days.

Still stable Luke,.... Let's test voor a few more days.... 

  • Thanks 1
Link to comment
Share on other sites

On 1/6/2023 at 1:15 PM, Marc0 said:

Still stable Luke,.... Let's test voor a few more days.... 

Hi Luke, Hi Q-droid,

I am coming to the conclusion that migrating from Alpine Linux to Ubuntu Server fixed my issues.

The server is stable for a week now... longest period in a long time.

Q-Droid: Thanks for al the support you gave me!!

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...