10bn

Members
  • Posts

    16
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

10bn's Achievements

Noob

Noob (1/14)

0

Reputation

  1. I'd like to have some kind of editing option for config files when the array isn't online. It doesn't have to be the Monaco editor; if there is something simpler to start off with, even better.
  2. Hi Guys, I'm trying to put my Asrock Intel ARC A380 to L1 but the power conumption dosen't change. Wouthout the card its around 30W and with the card inserted I'm at around 50W. I hope someone can help with this, I don't know what else I could try. Used Kernerl to enable ARC support: https://github.com/thor2002ro/unraid_kernel/releases What I've tryied so far: 1. Check ASPM Status: sudo lspci -vv | awk '/ASPM/{print $0}' RS= | grep --color -P '(^[a-z0-9:.]+|ASPM )' 2. Used this script to change the ASPM Settings. #!/bin/bash # Copyright (c) 2010-2013 Luis R. Rodriguez <[email protected]> # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all copies. # # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. # ASPM Tuning script # # This script lets you enable ASPM on your devices in case your BIOS # does not have it enabled for some reason. If your BIOS does not have # it enabled it is usually for a good reason so you should only use this if # you know what you are doing. Typically you would only need to enable # ASPM manually when doing development and using a card that typically # is not present on a laptop, or using the cardbus slot. The BIOS typically # disables ASPM for foreign cards and on the cardbus slot. Check also # if you may need to do other things than what is below on your vendor # documentation. # # To use this script You will need for now to at least query your device # PCI endpoint and root complex addresses using the convention output by # lspci: [<bus>]:[<slot>].[<func>] # # For example: # # 03:00.0 Network controller: Atheros Communications Inc. AR9300 Wireless LAN adaptor (rev 01 # 00:1c.1 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 2 (rev 03) # # The root complex for the endpoint can be found using lspci -t # # For more details refer to: # # http://wireless.kernel.org/en/users/Documentation/ASPM # You just need to modify these three values: ROOT_COMPLEX="01.1" ENDPOINT="03:00.0" # ARC GPU #ENDPOINT="04:00.0" # ARC AUDIO # We'll only enable the last 2 bits by using a mask # of :3 to setpci, this will ensure we keep the existing # values on the byte. # # Hex Binary Meaning # ------------------------- # 0 0b00 L0 only # 1 0b01 L0s only # 2 0b10 L1 only # 3 0b11 L1 and L0s ASPM_SETTING=2 function aspm_setting_to_string() { case $1 in 0) echo -e "\t${BLUE}L0 only${NORMAL}, ${RED}ASPM disabled${NORMAL}" ;; 1) ;; 2) echo -e "\t${GREEN}L1 only${NORMAL}" ;; 3) echo -e "\t${GREEN}L1 and L0s${NORMAL}" ;; *) echo -e "\t${RED}Invalid${NORMAL}" ;; esac } ################################################################### # Do not edit below here unless you are sending me a patch ################################################################### # # TODO: patches are welcomed to me until we submit to to # PCI Utilities upstream. # # This can be improved by in this order: # # * Accept arguments for endpoint and root complex address, and # desired ASPM settings # * Look for your ASPM capabilities by quering your # LnkCap register first. Use these values to let you # select whether you want to enable only L1 or L1 & L0s # * Searching for your root complex for you # * Search for your PCI device by using the driver # * Disable your driver and ask to reboot ? # * Rewrite in C # * Write ncurses interface [ wishlist ] # * Write GTK/QT interface [ wishlist ] # * Submit upstream as aspm.c to the PCI Utilities, which are # maintained by Martin Mares <[email protected]> # Pretty colors GREEN="\033[01;32m" YELLOW="\033[01;33m" NORMAL="\033[00m" BLUE="\033[34m" RED="\033[31m" PURPLE="\033[35m" CYAN="\033[36m" UNDERLINE="\033[02m" # we can surely read the spec to get a better value MAX_SEARCH=20 SEARCH_COUNT=1 ASPM_BYTE_ADDRESS="INVALID" ROOT_PRESENT=$(lspci | grep -c "$ROOT_COMPLEXT") ENDPOINT_PRESENT=$(lspci | grep -c "$ENDPOINT") if [[ $(id -u) != 0 ]]; then echo "This needs to be run as root" exit 1 fi if [[ $ROOT_PRESENT -eq 0 ]]; then echo "Root complex $ROOT_COMPLEX is not present" exit fi if [[ $ENDPOINT_PRESENT -eq 0 ]]; then echo "Endpoint $ENDPOINT is not present" exit fi # XXX: lspci -s some_device_not_existing does not return positive # if the device does not exist, fix this upstream function device_present() { PRESENT=$(lspci | grep -c "$1") COMPLAINT="${RED}not present${NORMAL}" if [[ $PRESENT -eq 0 ]]; then if [[ $2 != "present" ]]; then COMPLAINT="${RED}disappeared${NORMAL}" fi echo -e "Device ${BLUE}${1}${NORMAL} $COMPLAINT" return 1 fi return 0 } function find_aspm_byte_address() { device_present $ENDPOINT present if [[ $? -ne 0 ]]; then exit fi SEARCH=$(setpci -s $1 34.b) # We know on the first search $SEARCH will not be # 10 but this simplifies the implementation. while [[ $SEARCH != 10 && $SEARCH_COUNT -le $MAX_SEARCH ]]; do END_SEARCH=$(setpci -s $1 ${SEARCH}.b) # Convert hex digits to uppercase for bc SEARCH_UPPER=$(printf "%X" 0x${SEARCH}) if [[ $END_SEARCH = 10 ]]; then ASPM_BYTE_ADDRESS=$(echo "obase=16; ibase=16; $SEARCH_UPPER + 10" | bc) break fi SEARCH=$(echo "obase=16; ibase=16; $SEARCH + 1" | bc) SEARCH=$(setpci -s $1 ${SEARCH}.b) let SEARCH_COUNT=$SEARCH_COUNT+1 done if [[ $SEARCH_COUNT -ge $MAX_SEARCH ]]; then echo -e "Long loop while looking for ASPM word for $1" return 1 fi return 0 } function enable_aspm_byte() { device_present $1 present if [[ $? -ne 0 ]]; then exit fi find_aspm_byte_address $1 if [[ $? -ne 0 ]]; then return 1 fi ASPM_BYTE_HEX=$(setpci -s $1 ${ASPM_BYTE_ADDRESS}.b) ASPM_BYTE_HEX=$(printf "%X" 0x${ASPM_BYTE_HEX}) # setpci doesn't support a mask on the query yet, only on the set, # so to verify a setting on a mask we have no other optoin but # to do do this stuff ourselves. DESIRED_ASPM_BYTE_HEX=$(printf "%X" $(( (0x${ASPM_BYTE_HEX} & ~0x7) |0x${ASPM_SETTING}))) if [[ $ASPM_BYTE_ADDRESS = "INVALID" ]]; then echo -e "No ASPM byte could be found for $(lspci -s $1)" return fi echo -e "$(lspci -s $1)" echo -en "\t${YELLOW}0x${ASPM_BYTE_ADDRESS}${NORMAL} : ${CYAN}0x${ASPM_BYTE_HEX}${GREEN} --> ${BLUE}0x${DESIRED_ASPM_BYTE_HEX}${NORMAL} ... " device_present $1 present if [[ $? -ne 0 ]]; then exit fi # Avoid setting if already set if [[ $ASPM_BYTE_HEX = $DESIRED_ASPM_BYTE_HEX ]]; then echo -e "[${GREEN}SUCESS${NORMAL}] (${GREEN}already set${NORMAL})" aspm_setting_to_string $ASPM_SETTING return 0 fi # This only writes the last 3 bits setpci -s $1 ${ASPM_BYTE_ADDRESS}.b=${ASPM_SETTING}:3 sleep 3 ACTUAL_ASPM_BYTE_HEX=$(setpci -s $1 ${ASPM_BYTE_ADDRESS}.b) ACTUAL_ASPM_BYTE_HEX=$(printf "%X" 0x${ACTUAL_ASPM_BYTE_HEX}) # Do not retry this if it failed, if it failed to set. # Likey if it failed its a good reason and you should look # into that. if [[ $ACTUAL_ASPM_BYTE_HEX != $DESIRED_ASPM_BYTE_HEX ]]; then echo -e "\t[${RED}FAIL${NORMAL}] (0x${ACTUAL_ASPM_BYTE_HEX})" return 1 fi echo -e "\t[${GREEN}SUCCESS]${NORMAL}]" aspm_setting_to_string $ASPM_SETTING return 0 } device_present $ENDPOINT not_sure if [[ $? -ne 0 ]]; then exit fi echo -e "${CYAN}Root complex${NORMAL}:" enable_aspm_byte $ROOT_COMPLEX echo echo -e "${CYAN}Endpoint${NORMAL}:" enable_aspm_byte $ENDPOINT echo Now the ASPM Status is enabled: I also set Unpopulated Links in the BIOS to disabled. I gues this is what they call ASMP? Further, I used powertop to check if the ARC device is on AUTO, and yes, it is, but the actions taken don't seem to bring any effect regarding the power consumption. When I run powertop --auto-tune the system freezes. I tried to set all pci devices to auto one by one but could figure out which on freezes the system. Do you guys have any suggestions what else I could try to get the ARC Card to sleep when it's not in use? System Profile Motherboard: CWWK AMD 7735HS/7840HS/8845HS/7940HS 8-Bay/9-Bay NAS OS: Unraid Server Pro 6.12.8 CPU: AMD Ryzen 7 7840HS @ 3.8 GHz Integrated GPU: AMD Radeon™ 780M Memory: 64GB DDR5 (2x 32GB @ 5600 MT/s CT32G56C46S5) DGPU: Asrock Intel ARC A380 Storage Configuration: NVMe SSDs: 2x 512GB Crucial (ZFS) HDDs: 4x 18TB WDC WUH721818AL (XFS) (6,5W per disk when spinning) 1x 6TB WDC WD6003FFBX-6 (ZFS) SSD: 1x 1TB Samsung SSD 840 (ZFS) Power Supply: Corsair RM550x (Checkout Wolfgangs Video: What's the Best PSU For Your Low Idle Home Server?) Case: Lian Li Q25 Accessories: 2x MiniSAS to SATA cables for extended storage options
  3. Thanks for the writeup, what about adding in a script to check every 24h for files older than 24h and delete them? I just checked my ram transcoding folder and indeed didn't clean up properly after the last transcode.
  4. Hello everyone, I'm exploring the idea of converting Monaco Text-Editor a lightweight editor into an Unraid plugin and need some advice: Feasibility: How realistic is this project? Is it a viable path, or should I consider alternative directions? Starting Point: Where should I start and how to generally approach this? Non-Docker Solution: Aiming for an editor that works independently of Docker services. Would love to hear your thoughts and any guidance you can offer. Thanks!
  5. Thanks for linking this, in the meantime I decided to return the board and go on with this one. Thanks a lot for you help @JorgeB
  6. I conducted a memory test yesterday, and it passed. I attempted to mount the NVMe, which caused a crash while formatting it to XFS using the Unassigned Devices plugin, but it failed. The logs mentioned something about dmesg, which I checked. Could this be helpful: [ 36.861591] RAX: 0000000000000000 RBX: 000000000000000c RCX: 0000000000000003 [ 36.861593] RDX: 0000000000000002 RSI: 0000000000000003 RDI: 00000000ffffffff [ 36.861595] RBP: ffff8881015820b0 R08: 0000000000000000 R09: ffffc90000357900 [ 36.861597] R10: 00007fffffffffff R11: ffff88813129efdb R12: ffff88812c6b8000 [ 36.861599] R13: ffff88812c6b9c20 R14: 0000000002000000 R15: ffff88812c6b8000 [ 36.861602] FS: 0000154ae128f240(0000) GS:ffff88885fb80000(0000) knlGS:0000000000000000 [ 36.861604] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 36.861606] CR2: 0000154ae0fe4000 CR3: 00000001054c2000 CR4: 0000000000750ee0 [ 36.861609] PKRU: 55555554 [ 36.861610] Call Trace: [ 36.861614] <TASK> [ 36.861616] ? __warn+0xab/0x122 [ 36.861621] ? report_bug+0x109/0x17e [ 36.861626] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 36.861715] ? handle_bug+0x41/0x6f [ 36.861727] ? exc_invalid_op+0x13/0x60 [ 36.861729] ? asm_exc_invalid_op+0x16/0x20 [ 36.861737] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 36.861823] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 36.861907] intel_tc_port_init_mode+0x102/0x2b6 [i915] [ 36.861991] intel_ddi_init+0x8d5/0xb8f [i915] [ 36.862084] intel_modeset_init_nogem+0x2cf/0xdf5 [i915] [ 36.862186] ? _raw_spin_unlock_irqrestore+0x24/0x3a [ 36.862190] ? fwtable_read32+0xa6/0xb8 [i915] [ 36.862281] i915_driver_probe+0x981/0xc11 [i915] [ 36.862366] ? slab_free_freelist_hook.constprop.0+0x3b/0xaf [ 36.862371] local_pci_probe+0x3d/0x81 [ 36.862375] pci_device_probe+0x197/0x1eb [ 36.862378] ? sysfs_do_create_link_sd+0x71/0xb7 [ 36.862382] really_probe+0x115/0x282 [ 36.862385] __driver_probe_device+0xc0/0xf2 [ 36.862388] driver_probe_device+0x1f/0x77 [ 36.862391] ? __device_attach_driver+0x97/0x97 [ 36.862393] __driver_attach+0xd7/0xee [ 36.862395] ? __device_attach_driver+0x97/0x97 [ 36.862397] bus_for_each_dev+0x6e/0xa7 [ 36.862402] bus_add_driver+0xd8/0x1d0 [ 36.862404] driver_register+0x99/0xd7 [ 36.862407] i915_init+0x1f/0x7f [i915] [ 36.862486] ? 0xffffffffa0b43000 [ 36.862488] do_one_initcall+0x82/0x19f [ 36.862492] ? kmalloc_trace+0x43/0x52 [ 36.862496] do_init_module+0x4b/0x1d4 [ 36.862501] __do_sys_init_module+0xb6/0xf9 [ 36.862505] do_syscall_64+0x68/0x81 [ 36.862508] entry_SYSCALL_64_after_hwframe+0x64/0xce [ 36.862512] RIP: 0033:0x154ae17a1dfa [ 36.862515] Code: 48 8b 0d 21 20 0d 00 f7 d8 64 89 01 48 83 c8 ff c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 49 89 ca b8 af 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d ee 1f 0d 00 f7 d8 64 89 01 48 [ 36.862519] RSP: 002b:00007ffddbc4f688 EFLAGS: 00000246 ORIG_RAX: 00000000000000af [ 36.862523] RAX: ffffffffffffffda RBX: 000000000046d850 RCX: 0000154ae17a1dfa [ 36.862525] RDX: 0000154ae1896aad RSI: 00000000004b24d8 RDI: 0000154ae0b32010 [ 36.862527] RBP: 0000154ae1896aad R08: 0000000000000007 R09: 0000000000464300 [ 36.862529] R10: 0000000000000005 R11: 0000000000000246 R12: 0000154ae0b32010 [ 36.862531] R13: 0000000000000000 R14: 00000000004763d0 R15: 0000000000000000 [ 36.862534] </TASK> [ 36.862536] ---[ end trace 0000000000000000 ]--- [ 36.865532] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/adlp_dmc_ver2_16.bin (v2.16) [ 37.012171] i915 0000:00:02.0: [drm] GuC firmware i915/tgl_guc_70.bin version 70.13.1 [ 37.012180] i915 0000:00:02.0: [drm] HuC firmware i915/tgl_huc.bin version 7.9.3 [ 37.016653] i915 0000:00:02.0: [drm] HuC authenticated [ 37.017028] i915 0000:00:02.0: [drm] GuC submission enabled [ 37.017031] i915 0000:00:02.0: [drm] GuC SLPC enabled [ 37.017334] i915 0000:00:02.0: [drm] GuC RC: enabled [ 37.036729] mei_pxp 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1: bound 0000:00:02.0 (ops i915_pxp_tee_component_ops [i915]) [ 37.036860] i915 0000:00:02.0: [drm] Protected Xe Path (PXP) protected content support initialized [ 37.047615] ------------[ cut here ]------------ [ 37.047624] i915 0000:00:02.0: drm_WARN_ON((__builtin_constant_p(mask) ? ((((unsigned int) ((!!((mask) & (1ULL << 0))) + (!!((mask) & (1ULL << 1))) + (!!((mask) & (1ULL << 2))) + (!!((mask) & (1ULL << 3))) + (!!((mask) & (1ULL << 4))) + (!!((mask) & (1ULL << 5))) + (!!((mask) & (1ULL << 6))) + (!!((mask) & (1ULL << 7))))) + ((unsigned int) ((!!(((mask) >> 8) & (1ULL << 0))) + (!!(((mask) >> 8) & (1ULL << 1))) + (!!(((mask) >> 8) & (1ULL << 2))) + (!!(((mask) >> 8) & (1ULL << 3))) + (!!(((mask) >> 8) & (1ULL << 4))) + (!!(((mask) >> 8) & (1ULL << 5))) + (!!(((mask) >> 8) & (1ULL << 6))) + (!!(((mask) >> 8) & (1ULL << 7)))))) + (((unsigned int) ((!!(((mask) >> 16) & (1ULL << 0))) + (!!(((mask) >> 16) & (1ULL << 1))) + (!!(((mask) >> 16) & (1ULL << 2))) + (!!(((mask) >> 16) & (1ULL << 3))) + (!!(((mask) >> 16) & (1ULL << 4))) + (!!(((mask) >> 16) & (1ULL << 5))) + (!!(((mask) >> 16) & (1ULL << 6))) + (!!(((mask) >> 16) & (1ULL << 7))))) + ((unsigned int) ((!!((((mask) >> 16) >> 8) & (1ULL << [ 37.047649] WARNING: CPU: 2 PID: 663 at drivers/gpu/drm/i915/display/intel_tc.c:320 tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.047817] Modules linked in: zfs(PO+) i915(+) zunicode(PO) intel_rapl_msr intel_rapl_common x86_pkg_temp_thermal intel_powerclamp zzstd(O) coretemp kvm_intel zlua(O) zavl(PO) icp(PO) kvm iosf_mbi crct10dif_pclmul crc32_pclmul drm_buddy crc32c_intel ghash_clmulni_intel zcommon(PO) i2c_algo_bit sha512_ssse3 sha256_ssse3 sha1_ssse3 znvpair(PO) ttm aesni_intel drm_display_helper crypto_simd spl(O) cryptd drm_kms_helper mei_pxp mei_hdcp rapl i2c_i801 wmi_bmof intel_cstate intel_uncore drm i2c_smbus nvme mei_me intel_gtt agpgart ahci input_leds i2c_core igc nvme_core syscopyarea mei led_class libahci sysfillrect sysimgblt thermal tpm_crb fan fb_sys_fops video tpm_tis tpm_tis_core wmi backlight tpm intel_pmc_core acpi_pad acpi_tad button unix [ 37.047871] CPU: 2 PID: 663 Comm: udevd Tainted: P W O 6.1.74-Unraid #1 [ 37.047874] Hardware name: Default string Default string/Default string, BIOS 5.27 12/18/2023 [ 37.047878] RIP: 0010:tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.047965] Code: 48 8b 6f 50 48 85 ed 75 03 48 8b 2f e8 a3 1d bf e0 48 c7 c1 b8 0c a6 a0 48 89 ea 48 c7 c7 e1 11 a6 a0 48 89 c6 e8 b0 74 6c e0 <0f> 0b e9 02 01 00 00 8b 97 50 01 00 00 c7 44 24 0c 00 f0 16 00 49 [ 37.047969] RSP: 0018:ffffc90000357880 EFLAGS: 00010282 [ 37.047972] RAX: 0000000000000000 RBX: 000000000000000c RCX: 0000000000000003 [ 37.047974] RDX: 0000000000000002 RSI: 0000000000000003 RDI: 00000000ffffffff [ 37.047976] RBP: ffff8881015820b0 R08: 0000000000000000 R09: ffffc90000357800 [ 37.047979] R10: 00007fffffffffff R11: 0000000000000009 R12: ffff88812c6b8000 [ 37.047981] R13: ffff88812c6b9c20 R14: 0000000002000000 R15: 0000000000000004 [ 37.047983] FS: 0000154ae128f240(0000) GS:ffff88885fb00000(0000) knlGS:0000000000000000 [ 37.047986] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 37.047988] CR2: 0000000000a36198 CR3: 00000001054c2000 CR4: 0000000000750ee0 [ 37.047990] PKRU: 55555554 [ 37.047992] Call Trace: [ 37.047995] <TASK> [ 37.047997] ? __warn+0xab/0x122 [ 37.048003] ? report_bug+0x109/0x17e [ 37.048010] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.048085] ? handle_bug+0x41/0x6f [ 37.048088] ? exc_invalid_op+0x13/0x60 [ 37.048090] ? asm_exc_invalid_op+0x16/0x20 [ 37.048092] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.048158] intel_tc_port_update_mode+0x4a/0x396 [i915] [ 37.048224] ? try_to_grab_pending+0x41/0x112 [ 37.048227] __intel_tc_port_lock+0x47/0xd1 [i915] [ 37.048291] intel_tc_port_get_link+0xf/0x1f [i915] [ 37.048356] intel_ddi_update_prepare+0xb8/0x130 [i915] [ 37.048428] intel_atomic_commit_tail+0x570/0xac8 [i915] [ 37.048515] intel_atomic_commit+0x280/0x292 [i915] [ 37.048593] drm_atomic_commit+0xa8/0xcb [drm] [ 37.048621] ? __SCT__tp_func_drm_vblank_event_delivered+0x8/0x8 [drm] [ 37.048641] ? __SCT__tp_func_drm_vblank_event_delivered+0x8/0x8 [drm] [ 37.048660] intel_modeset_init+0x13b/0x1f6 [i915] [ 37.048739] i915_driver_probe+0x9ab/0xc11 [i915] [ 37.048814] ? slab_free_freelist_hook.constprop.0+0x3b/0xaf [ 37.048819] local_pci_probe+0x3d/0x81 [ 37.048822] pci_device_probe+0x197/0x1eb [ 37.048824] ? sysfs_do_create_link_sd+0x71/0xb7 [ 37.048828] really_probe+0x115/0x282 [ 37.048831] __driver_probe_device+0xc0/0xf2 [ 37.048833] driver_probe_device+0x1f/0x77 [ 37.048835] ? __device_attach_driver+0x97/0x97 [ 37.048837] __driver_attach+0xd7/0xee [ 37.048839] ? __device_attach_driver+0x97/0x97 [ 37.048841] bus_for_each_dev+0x6e/0xa7 [ 37.048845] bus_add_driver+0xd8/0x1d0 [ 37.048847] driver_register+0x99/0xd7 [ 37.048849] i915_init+0x1f/0x7f [i915] [ 37.048917] ? 0xffffffffa0b43000 [ 37.048920] do_one_initcall+0x82/0x19f [ 37.048923] ? kmalloc_trace+0x43/0x52 [ 37.048927] do_init_module+0x4b/0x1d4 [ 37.048931] __do_sys_init_module+0xb6/0xf9 [ 37.048935] do_syscall_64+0x68/0x81 [ 37.048937] entry_SYSCALL_64_after_hwframe+0x64/0xce [ 37.048941] RIP: 0033:0x154ae17a1dfa [ 37.048944] Code: 48 8b 0d 21 20 0d 00 f7 d8 64 89 01 48 83 c8 ff c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 49 89 ca b8 af 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d ee 1f 0d 00 f7 d8 64 89 01 48 [ 37.048947] RSP: 002b:00007ffddbc4f688 EFLAGS: 00000246 ORIG_RAX: 00000000000000af [ 37.048950] RAX: ffffffffffffffda RBX: 000000000046d850 RCX: 0000154ae17a1dfa [ 37.048952] RDX: 0000154ae1896aad RSI: 00000000004b24d8 RDI: 0000154ae0b32010 [ 37.048954] RBP: 0000154ae1896aad R08: 0000000000000007 R09: 0000000000464300 [ 37.048956] R10: 0000000000000005 R11: 0000000000000246 R12: 0000154ae0b32010 [ 37.048957] R13: 0000000000000000 R14: 00000000004763d0 R15: 0000000000000000 [ 37.048960] </TASK> [ 37.048961] ---[ end trace 0000000000000000 ]--- [ 37.049000] ------------[ cut here ]------------ [ 37.049002] i915 0000:00:02.0: drm_WARN_ON((__builtin_constant_p(mask) ? ((((unsigned int) ((!!((mask) & (1ULL << 0))) + (!!((mask) & (1ULL << 1))) + (!!((mask) & (1ULL << 2))) + (!!((mask) & (1ULL << 3))) + (!!((mask) & (1ULL << 4))) + (!!((mask) & (1ULL << 5))) + (!!((mask) & (1ULL << 6))) + (!!((mask) & (1ULL << 7))))) + ((unsigned int) ((!!(((mask) >> 8) & (1ULL << 0))) + (!!(((mask) >> 8) & (1ULL << 1))) + (!!(((mask) >> 8) & (1ULL << 2))) + (!!(((mask) >> 8) & (1ULL << 3))) + (!!(((mask) >> 8) & (1ULL << 4))) + (!!(((mask) >> 8) & (1ULL << 5))) + (!!(((mask) >> 8) & (1ULL << 6))) + (!!(((mask) >> 8) & (1ULL << 7)))))) + (((unsigned int) ((!!(((mask) >> 16) & (1ULL << 0))) + (!!(((mask) >> 16) & (1ULL << 1))) + (!!(((mask) >> 16) & (1ULL << 2))) + (!!(((mask) >> 16) & (1ULL << 3))) + (!!(((mask) >> 16) & (1ULL << 4))) + (!!(((mask) >> 16) & (1ULL << 5))) + (!!(((mask) >> 16) & (1ULL << 6))) + (!!(((mask) >> 16) & (1ULL << 7))))) + ((unsigned int) ((!!((((mask) >> 16) >> 8) & (1ULL << [ 37.049014] WARNING: CPU: 2 PID: 663 at drivers/gpu/drm/i915/display/intel_tc.c:320 tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.049113] Modules linked in: zfs(PO+) i915(+) zunicode(PO) intel_rapl_msr intel_rapl_common x86_pkg_temp_thermal intel_powerclamp zzstd(O) coretemp kvm_intel zlua(O) zavl(PO) icp(PO) kvm iosf_mbi crct10dif_pclmul crc32_pclmul drm_buddy crc32c_intel ghash_clmulni_intel zcommon(PO) i2c_algo_bit sha512_ssse3 sha256_ssse3 sha1_ssse3 znvpair(PO) ttm aesni_intel drm_display_helper crypto_simd spl(O) cryptd drm_kms_helper mei_pxp mei_hdcp rapl i2c_i801 wmi_bmof intel_cstate intel_uncore drm i2c_smbus nvme mei_me intel_gtt agpgart ahci input_leds i2c_core igc nvme_core syscopyarea mei led_class libahci sysfillrect sysimgblt thermal tpm_crb fan fb_sys_fops video tpm_tis tpm_tis_core wmi backlight tpm intel_pmc_core acpi_pad acpi_tad button unix [ 37.049147] CPU: 2 PID: 663 Comm: udevd Tainted: P W O 6.1.74-Unraid #1 [ 37.049150] Hardware name: Default string Default string/Default string, BIOS 5.27 12/18/2023 [ 37.049152] RIP: 0010:tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.049221] Code: 48 8b 6f 50 48 85 ed 75 03 48 8b 2f e8 a3 1d bf e0 48 c7 c1 b8 0c a6 a0 48 89 ea 48 c7 c7 e1 11 a6 a0 48 89 c6 e8 b0 74 6c e0 <0f> 0b e9 02 01 00 00 8b 97 50 01 00 00 c7 44 24 0c 00 f0 16 00 49 [ 37.049225] RSP: 0018:ffffc90000357880 EFLAGS: 00010282 [ 37.049226] RAX: 0000000000000000 RBX: 000000000000000c RCX: 0000000000000003 [ 37.049228] RDX: 0000000000000002 RSI: 0000000000000003 RDI: 00000000ffffffff [ 37.049230] RBP: ffff8881015820b0 R08: 0000000000000000 R09: ffffc90000357800 [ 37.049232] R10: 00007fffffffffff R11: 000000000000000b R12: ffff88812c6b8000 [ 37.049233] R13: ffff88812c6b9c20 R14: 0000000002000000 R15: 0000000000000000 [ 37.049235] FS: 0000154ae128f240(0000) GS:ffff88885fb00000(0000) knlGS:0000000000000000 [ 37.049237] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 37.049239] CR2: 0000000000a36198 CR3: 00000001054c2000 CR4: 0000000000750ee0 [ 37.049241] PKRU: 55555554 [ 37.049242] Call Trace: [ 37.049243] <TASK> [ 37.049244] ? __warn+0xab/0x122 [ 37.049247] ? report_bug+0x109/0x17e [ 37.049250] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.049317] ? handle_bug+0x41/0x6f [ 37.049319] ? exc_invalid_op+0x13/0x60 [ 37.049321] ? asm_exc_invalid_op+0x16/0x20 [ 37.049323] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.049388] ? tc_phy_status_complete+0x4d/0xed [i915] [ 37.049452] intel_tc_port_update_mode+0x15d/0x396 [i915] [ 37.049517] __intel_tc_port_lock+0x47/0xd1 [i915] [ 37.049581] intel_tc_port_get_link+0xf/0x1f [i915] [ 37.049646] intel_ddi_update_prepare+0xb8/0x130 [i915] [ 37.049717] intel_atomic_commit_tail+0x570/0xac8 [i915] [ 37.049797] intel_atomic_commit+0x280/0x292 [i915] [ 37.049874] drm_atomic_commit+0xa8/0xcb [drm] [ 37.049899] ? __SCT__tp_func_drm_vblank_event_delivered+0x8/0x8 [drm] [ 37.049920] ? __SCT__tp_func_drm_vblank_event_delivered+0x8/0x8 [drm] [ 37.049940] intel_modeset_init+0x13b/0x1f6 [i915] [ 37.050023] i915_driver_probe+0x9ab/0xc11 [i915] [ 37.050103] ? slab_free_freelist_hook.constprop.0+0x3b/0xaf [ 37.050107] local_pci_probe+0x3d/0x81 [ 37.050109] pci_device_probe+0x197/0x1eb [ 37.050111] ? sysfs_do_create_link_sd+0x71/0xb7 [ 37.050114] really_probe+0x115/0x282 [ 37.050116] __driver_probe_device+0xc0/0xf2 [ 37.050119] driver_probe_device+0x1f/0x77 [ 37.050121] ? __device_attach_driver+0x97/0x97 [ 37.050123] __driver_attach+0xd7/0xee [ 37.050125] ? __device_attach_driver+0x97/0x97 [ 37.050127] bus_for_each_dev+0x6e/0xa7 [ 37.050130] bus_add_driver+0xd8/0x1d0 [ 37.050132] driver_register+0x99/0xd7 [ 37.050135] i915_init+0x1f/0x7f [i915] [ 37.050204] ? 0xffffffffa0b43000 [ 37.050205] do_one_initcall+0x82/0x19f [ 37.050208] ? kmalloc_trace+0x43/0x52 [ 37.050211] do_init_module+0x4b/0x1d4 [ 37.050214] __do_sys_init_module+0xb6/0xf9 [ 37.050218] do_syscall_64+0x68/0x81 [ 37.050220] entry_SYSCALL_64_after_hwframe+0x64/0xce [ 37.050224] RIP: 0033:0x154ae17a1dfa [ 37.050225] Code: 48 8b 0d 21 20 0d 00 f7 d8 64 89 01 48 83 c8 ff c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 49 89 ca b8 af 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d ee 1f 0d 00 f7 d8 64 89 01 48 [ 37.050229] RSP: 002b:00007ffddbc4f688 EFLAGS: 00000246 ORIG_RAX: 00000000000000af [ 37.050232] RAX: ffffffffffffffda RBX: 000000000046d850 RCX: 0000154ae17a1dfa [ 37.050234] RDX: 0000154ae1896aad RSI: 00000000004b24d8 RDI: 0000154ae0b32010 [ 37.050236] RBP: 0000154ae1896aad R08: 0000000000000007 R09: 0000000000464300 [ 37.050238] R10: 0000000000000005 R11: 0000000000000246 R12: 0000154ae0b32010 [ 37.050240] R13: 0000000000000000 R14: 00000000004763d0 R15: 0000000000000000 [ 37.050243] </TASK> [ 37.050244] ---[ end trace 0000000000000000 ]--- [ 37.050252] ------------[ cut here ]------------ [ 37.050254] i915 0000:00:02.0: drm_WARN_ON((__builtin_constant_p(mask) ? ((((unsigned int) ((!!((mask) & (1ULL << 0))) + (!!((mask) & (1ULL << 1))) + (!!((mask) & (1ULL << 2))) + (!!((mask) & (1ULL << 3))) + (!!((mask) & (1ULL << 4))) + (!!((mask) & (1ULL << 5))) + (!!((mask) & (1ULL << 6))) + (!!((mask) & (1ULL << 7))))) + ((unsigned int) ((!!(((mask) >> 8) & (1ULL << 0))) + (!!(((mask) >> 8) & (1ULL << 1))) + (!!(((mask) >> 8) & (1ULL << 2))) + (!!(((mask) >> 8) & (1ULL << 3))) + (!!(((mask) >> 8) & (1ULL << 4))) + (!!(((mask) >> 8) & (1ULL << 5))) + (!!(((mask) >> 8) & (1ULL << 6))) + (!!(((mask) >> 8) & (1ULL << 7)))))) + (((unsigned int) ((!!(((mask) >> 16) & (1ULL << 0))) + (!!(((mask) >> 16) & (1ULL << 1))) + (!!(((mask) >> 16) & (1ULL << 2))) + (!!(((mask) >> 16) & (1ULL << 3))) + (!!(((mask) >> 16) & (1ULL << 4))) + (!!(((mask) >> 16) & (1ULL << 5))) + (!!(((mask) >> 16) & (1ULL << 6))) + (!!(((mask) >> 16) & (1ULL << 7))))) + ((unsigned int) ((!!((((mask) >> 16) >> 8) & (1ULL << [ 37.050264] WARNING: CPU: 2 PID: 663 at drivers/gpu/drm/i915/display/intel_tc.c:320 tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.050357] Modules linked in: zfs(PO+) i915(+) zunicode(PO) intel_rapl_msr intel_rapl_common x86_pkg_temp_thermal intel_powerclamp zzstd(O) coretemp kvm_intel zlua(O) zavl(PO) icp(PO) kvm iosf_mbi crct10dif_pclmul crc32_pclmul drm_buddy crc32c_intel ghash_clmulni_intel zcommon(PO) i2c_algo_bit sha512_ssse3 sha256_ssse3 sha1_ssse3 znvpair(PO) ttm aesni_intel drm_display_helper crypto_simd spl(O) cryptd drm_kms_helper mei_pxp mei_hdcp rapl i2c_i801 wmi_bmof intel_cstate intel_uncore drm i2c_smbus nvme mei_me intel_gtt agpgart ahci input_leds i2c_core igc nvme_core syscopyarea mei led_class libahci sysfillrect sysimgblt thermal tpm_crb fan fb_sys_fops video tpm_tis tpm_tis_core wmi backlight tpm intel_pmc_core acpi_pad acpi_tad button unix [ 37.050394] CPU: 2 PID: 663 Comm: udevd Tainted: P W O 6.1.74-Unraid #1 [ 37.050397] Hardware name: Default string Default string/Default string, BIOS 5.27 12/18/2023 [ 37.050399] RIP: 0010:tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.050473] Code: 48 8b 6f 50 48 85 ed 75 03 48 8b 2f e8 a3 1d bf e0 48 c7 c1 b8 0c a6 a0 48 89 ea 48 c7 c7 e1 11 a6 a0 48 89 c6 e8 b0 74 6c e0 <0f> 0b e9 02 01 00 00 8b 97 50 01 00 00 c7 44 24 0c 00 f0 16 00 49 [ 37.050477] RSP: 0018:ffffc90000357880 EFLAGS: 00010282 [ 37.050479] RAX: 0000000000000000 RBX: 000000000000000c RCX: 0000000000000003 [ 37.050481] RDX: 0000000000000002 RSI: 0000000000000003 RDI: 00000000ffffffff [ 37.050483] RBP: ffff8881015820b0 R08: 0000000000000000 R09: ffffc90000357800 [ 37.050485] R10: 00007fffffffffff R11: 000000000000000b R12: ffff88812c6b8000 [ 37.050487] R13: ffff88812c6b9c20 R14: 0000000002000000 R15: 0000000000000000 [ 37.050488] FS: 0000154ae128f240(0000) GS:ffff88885fb00000(0000) knlGS:0000000000000000 [ 37.050491] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 37.050493] CR2: 0000000000a36198 CR3: 00000001054c2000 CR4: 0000000000750ee0 [ 37.050495] PKRU: 55555554 [ 37.050496] Call Trace: [ 37.050497] <TASK> [ 37.050498] ? __warn+0xab/0x122 [ 37.050501] ? report_bug+0x109/0x17e [ 37.050504] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.050575] ? handle_bug+0x41/0x6f [ 37.050578] ? exc_invalid_op+0x13/0x60 [ 37.050580] ? asm_exc_invalid_op+0x16/0x20 [ 37.050582] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.050653] ? tc_phy_status_complete+0x4d/0xed [i915] [ 37.050722] intel_tc_port_update_mode+0x24b/0x396 [i915] [ 37.050793] __intel_tc_port_lock+0x47/0xd1 [i915] [ 37.050862] intel_tc_port_get_link+0xf/0x1f [i915] [ 37.050931] intel_ddi_update_prepare+0xb8/0x130 [i915] [ 37.051008] intel_atomic_commit_tail+0x570/0xac8 [i915] [ 37.051092] intel_atomic_commit+0x280/0x292 [i915] [ 37.051170] drm_atomic_commit+0xa8/0xcb [drm] [ 37.051195] ? __SCT__tp_func_drm_vblank_event_delivered+0x8/0x8 [drm] [ 37.051216] ? __SCT__tp_func_drm_vblank_event_delivered+0x8/0x8 [drm] [ 37.051236] intel_modeset_init+0x13b/0x1f6 [i915] [ 37.051316] i915_driver_probe+0x9ab/0xc11 [i915] [ 37.051395] ? slab_free_freelist_hook.constprop.0+0x3b/0xaf [ 37.051399] local_pci_probe+0x3d/0x81 [ 37.051402] pci_device_probe+0x197/0x1eb [ 37.051404] ? sysfs_do_create_link_sd+0x71/0xb7 [ 37.051407] really_probe+0x115/0x282 [ 37.051409] __driver_probe_device+0xc0/0xf2 [ 37.051411] driver_probe_device+0x1f/0x77 [ 37.051413] ? __device_attach_driver+0x97/0x97 [ 37.051415] __driver_attach+0xd7/0xee [ 37.051417] ? __device_attach_driver+0x97/0x97 [ 37.051419] bus_for_each_dev+0x6e/0xa7 [ 37.051423] bus_add_driver+0xd8/0x1d0 [ 37.051425] driver_register+0x99/0xd7 [ 37.051427] i915_init+0x1f/0x7f [i915] [ 37.051495] ? 0xffffffffa0b43000 [ 37.051497] do_one_initcall+0x82/0x19f [ 37.051499] ? kmalloc_trace+0x43/0x52 [ 37.051502] do_init_module+0x4b/0x1d4 [ 37.051505] __do_sys_init_module+0xb6/0xf9 [ 37.051510] do_syscall_64+0x68/0x81 [ 37.051512] entry_SYSCALL_64_after_hwframe+0x64/0xce [ 37.051515] RIP: 0033:0x154ae17a1dfa [ 37.051517] Code: 48 8b 0d 21 20 0d 00 f7 d8 64 89 01 48 83 c8 ff c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 49 89 ca b8 af 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d ee 1f 0d 00 f7 d8 64 89 01 48 [ 37.051521] RSP: 002b:00007ffddbc4f688 EFLAGS: 00000246 ORIG_RAX: 00000000000000af [ 37.051523] RAX: ffffffffffffffda RBX: 000000000046d850 RCX: 0000154ae17a1dfa [ 37.051525] RDX: 0000154ae1896aad RSI: 00000000004b24d8 RDI: 0000154ae0b32010 [ 37.051527] RBP: 0000154ae1896aad R08: 0000000000000007 R09: 0000000000464300 [ 37.051529] R10: 0000000000000005 R11: 0000000000000246 R12: 0000154ae0b32010 [ 37.051531] R13: 0000000000000000 R14: 00000000004763d0 R15: 0000000000000000 [ 37.051534] </TASK> [ 37.051535] ---[ end trace 0000000000000000 ]--- [ 37.098870] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0 [ 37.099969] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no) [ 37.100365] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input7 [ 37.109041] ZFS: Loaded module v2.1.14-1, ZFS pool version 5000, ZFS filesystem version 5 [ 37.143155] ------------[ cut here ]------------ [ 37.143166] i915 0000:00:02.0: drm_WARN_ON((__builtin_constant_p(mask) ? ((((unsigned int) ((!!((mask) & (1ULL << 0))) + (!!((mask) & (1ULL << 1))) + (!!((mask) & (1ULL << 2))) + (!!((mask) & (1ULL << 3))) + (!!((mask) & (1ULL << 4))) + (!!((mask) & (1ULL << 5))) + (!!((mask) & (1ULL << 6))) + (!!((mask) & (1ULL << 7))))) + ((unsigned int) ((!!(((mask) >> 8) & (1ULL << 0))) + (!!(((mask) >> 8) & (1ULL << 1))) + (!!(((mask) >> 8) & (1ULL << 2))) + (!!(((mask) >> 8) & (1ULL << 3))) + (!!(((mask) >> 8) & (1ULL << 4))) + (!!(((mask) >> 8) & (1ULL << 5))) + (!!(((mask) >> 8) & (1ULL << 6))) + (!!(((mask) >> 8) & (1ULL << 7)))))) + (((unsigned int) ((!!(((mask) >> 16) & (1ULL << 0))) + (!!(((mask) >> 16) & (1ULL << 1))) + (!!(((mask) >> 16) & (1ULL << 2))) + (!!(((mask) >> 16) & (1ULL << 3))) + (!!(((mask) >> 16) & (1ULL << 4))) + (!!(((mask) >> 16) & (1ULL << 5))) + (!!(((mask) >> 16) & (1ULL << 6))) + (!!(((mask) >> 16) & (1ULL << 7))))) + ((unsigned int) ((!!((((mask) >> 16) >> 8) & (1ULL << [ 37.143190] WARNING: CPU: 1 PID: 693 at drivers/gpu/drm/i915/display/intel_tc.c:320 tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.143430] Modules linked in: zfs(PO) i915 zunicode(PO) intel_rapl_msr intel_rapl_common x86_pkg_temp_thermal intel_powerclamp zzstd(O) coretemp kvm_intel zlua(O) zavl(PO) icp(PO) kvm iosf_mbi crct10dif_pclmul crc32_pclmul drm_buddy crc32c_intel ghash_clmulni_intel zcommon(PO) i2c_algo_bit sha512_ssse3 sha256_ssse3 sha1_ssse3 znvpair(PO) ttm aesni_intel drm_display_helper crypto_simd spl(O) cryptd drm_kms_helper mei_pxp mei_hdcp rapl i2c_i801 wmi_bmof intel_cstate intel_uncore drm i2c_smbus nvme mei_me intel_gtt agpgart ahci input_leds i2c_core igc nvme_core syscopyarea mei led_class libahci sysfillrect sysimgblt thermal tpm_crb fan fb_sys_fops video tpm_tis tpm_tis_core wmi backlight tpm intel_pmc_core acpi_pad acpi_tad button unix [ 37.143517] CPU: 1 PID: 693 Comm: kworker/u8:6 Tainted: P W O 6.1.74-Unraid #1 [ 37.143524] Hardware name: Default string Default string/Default string, BIOS 5.27 12/18/2023 [ 37.143530] Workqueue: events_unbound async_run_entry_fn [ 37.143539] RIP: 0010:tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.143701] Code: 48 8b 6f 50 48 85 ed 75 03 48 8b 2f e8 a3 1d bf e0 48 c7 c1 b8 0c a6 a0 48 89 ea 48 c7 c7 e1 11 a6 a0 48 89 c6 e8 b0 74 6c e0 <0f> 0b e9 02 01 00 00 8b 97 50 01 00 00 c7 44 24 0c 00 f0 16 00 49 [ 37.143709] RSP: 0018:ffffc9000057fb38 EFLAGS: 00010282 [ 37.143714] RAX: 0000000000000000 RBX: 000000000000000c RCX: 0000000000000003 [ 37.143718] RDX: 0000000000000002 RSI: 0000000000000003 RDI: 00000000ffffffff [ 37.143722] RBP: ffff8881015820b0 R08: 0000000000000000 R09: ffffc9000057fa00 [ 37.143726] R10: 00007fffffffffff R11: ffff888100400038 R12: ffff88812c6b8000 [ 37.143730] R13: ffff88812c6b9c20 R14: 0000000002000000 R15: ffff88812c4aa868 [ 37.143734] FS: 0000000000000000(0000) GS:ffff88885fa80000(0000) knlGS:0000000000000000 [ 37.143739] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 37.143743] CR2: 000014b0f8373000 CR3: 000000000420a000 CR4: 0000000000750ee0 [ 37.143748] PKRU: 55555554 [ 37.143750] Call Trace: [ 37.143755] <TASK> [ 37.143759] ? __warn+0xab/0x122 [ 37.143767] ? report_bug+0x109/0x17e [ 37.143774] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.143918] ? handle_bug+0x41/0x6f [ 37.143923] ? exc_invalid_op+0x13/0x60 [ 37.143927] ? asm_exc_invalid_op+0x16/0x20 [ 37.143932] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.144077] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.144210] intel_tc_port_connected+0x40/0x67 [i915] [ 37.144343] intel_digital_port_connected+0x36/0x55 [i915] [ 37.144503] intel_dp_detect+0x110/0x49a [i915] [ 37.144648] drm_helper_probe_detect+0x59/0x98 [drm_kms_helper] [ 37.144672] drm_helper_probe_single_connector_modes+0x110/0x462 [drm_kms_helper] [ 37.144694] ? __kmem_cache_alloc_node+0x118/0x147 [ 37.144702] drm_client_modeset_probe+0x1f3/0xeb1 [drm] [ 37.144745] ? update_cfs_rq_load_avg+0x176/0x189 [ 37.144750] ? update_load_avg+0x46/0x398 [ 37.144755] ? place_entity+0x6e/0xae [ 37.144759] ? enqueue_entity+0x12f/0x1b3 [ 37.144764] ? update_curr+0x24/0x14e [ 37.144770] __drm_fb_helper_initial_config_and_unlock+0x41/0x4a1 [drm_kms_helper] [ 37.144793] ? check_preempt_curr+0x49/0x5a [ 37.144798] ? ttwu_do_wakeup+0x24/0xf2 [ 37.144803] ? _raw_spin_unlock_irqrestore+0x24/0x3a [ 37.144809] intel_fbdev_initial_config+0x14/0x25 [i915] [ 37.144946] async_run_entry_fn+0x1d/0x9a [ 37.144952] process_one_work+0x1a8/0x295 [ 37.144959] worker_thread+0x18b/0x244 [ 37.144964] ? rescuer_thread+0x281/0x281 [ 37.144970] kthread+0xe4/0xef [ 37.144975] ? kthread_complete_and_exit+0x1b/0x1b [ 37.144980] ret_from_fork+0x1f/0x30 [ 37.144987] </TASK> [ 37.144989] ---[ end trace 0000000000000000 ]--- [ 37.169808] ------------[ cut here ]------------ [ 37.169811] i915 0000:00:02.0: drm_WARN_ON((__builtin_constant_p(mask) ? ((((unsigned int) ((!!((mask) & (1ULL << 0))) + (!!((mask) & (1ULL << 1))) + (!!((mask) & (1ULL << 2))) + (!!((mask) & (1ULL << 3))) + (!!((mask) & (1ULL << 4))) + (!!((mask) & (1ULL << 5))) + (!!((mask) & (1ULL << 6))) + (!!((mask) & (1ULL << 7))))) + ((unsigned int) ((!!(((mask) >> 8) & (1ULL << 0))) + (!!(((mask) >> 8) & (1ULL << 1))) + (!!(((mask) >> 8) & (1ULL << 2))) + (!!(((mask) >> 8) & (1ULL << 3))) + (!!(((mask) >> 8) & (1ULL << 4))) + (!!(((mask) >> 8) & (1ULL << 5))) + (!!(((mask) >> 8) & (1ULL << 6))) + (!!(((mask) >> 8) & (1ULL << 7)))))) + (((unsigned int) ((!!(((mask) >> 16) & (1ULL << 0))) + (!!(((mask) >> 16) & (1ULL << 1))) + (!!(((mask) >> 16) & (1ULL << 2))) + (!!(((mask) >> 16) & (1ULL << 3))) + (!!(((mask) >> 16) & (1ULL << 4))) + (!!(((mask) >> 16) & (1ULL << 5))) + (!!(((mask) >> 16) & (1ULL << 6))) + (!!(((mask) >> 16) & (1ULL << 7))))) + ((unsigned int) ((!!((((mask) >> 16) >> 8) & (1ULL << [ 37.169820] WARNING: CPU: 1 PID: 693 at drivers/gpu/drm/i915/display/intel_tc.c:320 tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.169901] Modules linked in: zfs(PO) i915 zunicode(PO) intel_rapl_msr intel_rapl_common x86_pkg_temp_thermal intel_powerclamp zzstd(O) coretemp kvm_intel zlua(O) zavl(PO) icp(PO) kvm iosf_mbi crct10dif_pclmul crc32_pclmul drm_buddy crc32c_intel ghash_clmulni_intel zcommon(PO) i2c_algo_bit sha512_ssse3 sha256_ssse3 sha1_ssse3 znvpair(PO) ttm aesni_intel drm_display_helper crypto_simd spl(O) cryptd drm_kms_helper mei_pxp mei_hdcp rapl i2c_i801 wmi_bmof intel_cstate intel_uncore drm i2c_smbus nvme mei_me intel_gtt agpgart ahci input_leds i2c_core igc nvme_core syscopyarea mei led_class libahci sysfillrect sysimgblt thermal tpm_crb fan fb_sys_fops video tpm_tis tpm_tis_core wmi backlight tpm intel_pmc_core acpi_pad acpi_tad button unix [ 37.169933] CPU: 1 PID: 693 Comm: kworker/u8:6 Tainted: P W O 6.1.74-Unraid #1 [ 37.169936] Hardware name: Default string Default string/Default string, BIOS 5.27 12/18/2023 [ 37.169938] Workqueue: events_unbound async_run_entry_fn [ 37.169941] RIP: 0010:tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.170008] Code: 48 8b 6f 50 48 85 ed 75 03 48 8b 2f e8 a3 1d bf e0 48 c7 c1 b8 0c a6 a0 48 89 ea 48 c7 c7 e1 11 a6 a0 48 89 c6 e8 b0 74 6c e0 <0f> 0b e9 02 01 00 00 8b 97 50 01 00 00 c7 44 24 0c 00 f0 16 00 49 [ 37.170012] RSP: 0018:ffffc9000057fb68 EFLAGS: 00010282 [ 37.170014] RAX: 0000000000000000 RBX: 000000000000000c RCX: 0000000000000003 [ 37.170016] RDX: 0000000000000002 RSI: 0000000000000003 RDI: 00000000ffffffff [ 37.170018] RBP: ffff8881015820b0 R08: 0000000000000000 R09: ffffc9000057fa00 [ 37.170019] R10: 00007fffffffffff R11: 0000000000006257 R12: ffff88812c6b8000 [ 37.170021] R13: ffff88812c6b9c20 R14: 0000000002000000 R15: ffff88812c4aa868 [ 37.170023] FS: 0000000000000000(0000) GS:ffff88885fa80000(0000) knlGS:0000000000000000 [ 37.170025] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 37.170027] CR2: 000014b0f8373000 CR3: 000000000420a000 CR4: 0000000000750ee0 [ 37.170028] PKRU: 55555554 [ 37.170029] Call Trace: [ 37.170031] <TASK> [ 37.170032] ? __warn+0xab/0x122 [ 37.170035] ? report_bug+0x109/0x17e [ 37.170037] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.170101] ? handle_bug+0x41/0x6f [ 37.170103] ? exc_invalid_op+0x13/0x60 [ 37.170105] ? asm_exc_invalid_op+0x16/0x20 [ 37.170107] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.170169] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 37.170231] intel_tc_port_connected+0x40/0x67 [i915] [ 37.170293] intel_digital_port_connected+0x36/0x55 [i915] [ 37.170363] intel_hdmi_detect+0xd6/0x101 [i915] [ 37.170434] drm_helper_probe_detect+0x7c/0x98 [drm_kms_helper] [ 37.170445] drm_helper_probe_single_connector_modes+0x110/0x462 [drm_kms_helper] [ 37.170455] ? __kmem_cache_alloc_node+0x118/0x147 [ 37.170459] drm_client_modeset_probe+0x1f3/0xeb1 [drm] [ 37.170479] ? update_cfs_rq_load_avg+0x176/0x189 [ 37.170482] ? update_load_avg+0x46/0x398 [ 37.170484] ? place_entity+0x6e/0xae [ 37.170486] ? enqueue_entity+0x12f/0x1b3 [ 37.170489] ? update_curr+0x24/0x14e [ 37.170492] __drm_fb_helper_initial_config_and_unlock+0x41/0x4a1 [drm_kms_helper] [ 37.170503] ? check_preempt_curr+0x49/0x5a [ 37.170505] ? ttwu_do_wakeup+0x24/0xf2 [ 37.170508] ? _raw_spin_unlock_irqrestore+0x24/0x3a [ 37.170511] intel_fbdev_initial_config+0x14/0x25 [i915] [ 37.170578] async_run_entry_fn+0x1d/0x9a [ 37.170581] process_one_work+0x1a8/0x295 [ 37.170584] worker_thread+0x18b/0x244 [ 37.170586] ? rescuer_thread+0x281/0x281 [ 37.170589] kthread+0xe4/0xef [ 37.170591] ? kthread_complete_and_exit+0x1b/0x1b [ 37.170594] ret_from_fork+0x1f/0x30 [ 37.170597] </TASK> [ 37.170598] ---[ end trace 0000000000000000 ]--- [ 40.456227] [00] ZERO 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 40.456230] [00] ZERO 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 40.456231] [00] ZERO 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 40.456232] [00] ZERO 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 40.456233] [00] ZERO 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 40.456233] [00] ZERO 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 40.456234] [00] ZERO 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 40.456234] [00] ZERO 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 41.059489] fbcon: i915drmfb (fb0) is primary device [ 41.080315] ------------[ cut here ]------------ [ 41.080321] i915 0000:00:02.0: drm_WARN_ON((__builtin_constant_p(mask) ? ((((unsigned int) ((!!((mask) & (1ULL << 0))) + (!!((mask) & (1ULL << 1))) + (!!((mask) & (1ULL << 2))) + (!!((mask) & (1ULL << 3))) + (!!((mask) & (1ULL << 4))) + (!!((mask) & (1ULL << 5))) + (!!((mask) & (1ULL << 6))) + (!!((mask) & (1ULL << 7))))) + ((unsigned int) ((!!(((mask) >> 8) & (1ULL << 0))) + (!!(((mask) >> 8) & (1ULL << 1))) + (!!(((mask) >> 8) & (1ULL << 2))) + (!!(((mask) >> 8) & (1ULL << 3))) + (!!(((mask) >> 8) & (1ULL << 4))) + (!!(((mask) >> 8) & (1ULL << 5))) + (!!(((mask) >> 8) & (1ULL << 6))) + (!!(((mask) >> 8) & (1ULL << 7)))))) + (((unsigned int) ((!!(((mask) >> 16) & (1ULL << 0))) + (!!(((mask) >> 16) & (1ULL << 1))) + (!!(((mask) >> 16) & (1ULL << 2))) + (!!(((mask) >> 16) & (1ULL << 3))) + (!!(((mask) >> 16) & (1ULL << 4))) + (!!(((mask) >> 16) & (1ULL << 5))) + (!!(((mask) >> 16) & (1ULL << 6))) + (!!(((mask) >> 16) & (1ULL << 7))))) + ((unsigned int) ((!!((((mask) >> 16) >> 8) & (1ULL << [ 41.080363] WARNING: CPU: 1 PID: 693 at drivers/gpu/drm/i915/display/intel_tc.c:320 tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.080544] Modules linked in: zfs(PO) i915 zunicode(PO) intel_rapl_msr intel_rapl_common x86_pkg_temp_thermal intel_powerclamp zzstd(O) coretemp kvm_intel zlua(O) zavl(PO) icp(PO) kvm iosf_mbi crct10dif_pclmul crc32_pclmul drm_buddy crc32c_intel ghash_clmulni_intel zcommon(PO) i2c_algo_bit sha512_ssse3 sha256_ssse3 sha1_ssse3 znvpair(PO) ttm aesni_intel drm_display_helper crypto_simd spl(O) cryptd drm_kms_helper mei_pxp mei_hdcp rapl i2c_i801 wmi_bmof intel_cstate intel_uncore drm i2c_smbus nvme mei_me intel_gtt agpgart ahci input_leds i2c_core igc nvme_core syscopyarea mei led_class libahci sysfillrect sysimgblt thermal tpm_crb fan fb_sys_fops video tpm_tis tpm_tis_core wmi backlight tpm intel_pmc_core acpi_pad acpi_tad button unix [ 41.080580] CPU: 1 PID: 693 Comm: kworker/u8:6 Tainted: P W O 6.1.74-Unraid #1 [ 41.080582] Hardware name: Default string Default string/Default string, BIOS 5.27 12/18/2023 [ 41.080583] Workqueue: events_unbound async_run_entry_fn [ 41.080588] RIP: 0010:tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.080659] Code: 48 8b 6f 50 48 85 ed 75 03 48 8b 2f e8 a3 1d bf e0 48 c7 c1 b8 0c a6 a0 48 89 ea 48 c7 c7 e1 11 a6 a0 48 89 c6 e8 b0 74 6c e0 <0f> 0b e9 02 01 00 00 8b 97 50 01 00 00 c7 44 24 0c 00 f0 16 00 49 [ 41.080660] RSP: 0018:ffffc9000057f8b0 EFLAGS: 00010286 [ 41.080661] RAX: 0000000000000000 RBX: 000000000000000c RCX: 000000000000000c [ 41.080662] RDX: 0000000000000002 RSI: 0000000000000002 RDI: 00000000ffffffff [ 41.080663] RBP: ffff8881015820b0 R08: 00000000ffffffff R09: ffffc9000057f800 [ 41.080664] R10: 00000000000c4000 R11: 00000000000000de R12: ffff88812c6b8000 [ 41.080665] R13: ffff88812c6b9c20 R14: 0000000002000000 R15: 0000000000000004 [ 41.080666] FS: 0000000000000000(0000) GS:ffff88885fa80000(0000) knlGS:0000000000000000 [ 41.080667] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 41.080668] CR2: 0000154ae1888950 CR3: 000000000420a000 CR4: 0000000000750ee0 [ 41.080669] PKRU: 55555554 [ 41.080669] Call Trace: [ 41.080673] <TASK> [ 41.080674] ? __warn+0xab/0x122 [ 41.080678] ? report_bug+0x109/0x17e [ 41.080681] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.080746] ? handle_bug+0x41/0x6f [ 41.080748] ? exc_invalid_op+0x13/0x60 [ 41.080749] ? asm_exc_invalid_op+0x16/0x20 [ 41.080752] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.080813] intel_tc_port_update_mode+0x4a/0x396 [i915] [ 41.080875] ? try_to_grab_pending+0x41/0x112 [ 41.080878] __intel_tc_port_lock+0x47/0xd1 [i915] [ 41.080938] intel_tc_port_get_link+0xf/0x1f [i915] [ 41.080999] intel_ddi_update_prepare+0xb8/0x130 [i915] [ 41.081072] intel_atomic_commit_tail+0x570/0xac8 [i915] [ 41.081155] intel_atomic_commit+0x280/0x292 [i915] [ 41.081229] drm_atomic_commit+0xa8/0xcb [drm] [ 41.081273] ? __SCT__tp_func_drm_vblank_event_delivered+0x8/0x8 [drm] [ 41.081291] ? __SCT__tp_func_drm_vblank_event_delivered+0x8/0x8 [drm] [ 41.081308] drm_client_modeset_commit_atomic+0x154/0x1e7 [drm] [ 41.081327] drm_client_modeset_commit_locked+0x3b/0x12e [drm] [ 41.081345] drm_client_modeset_commit+0x28/0x3d [drm] [ 41.081363] __drm_fb_helper_restore_fbdev_mode_unlocked+0x4e/0x8e [drm_kms_helper] [ 41.081377] drm_fb_helper_set_par+0x4f/0x5e [drm_kms_helper] [ 41.081386] intel_fbdev_set_par+0x13/0x32 [i915] [ 41.081460] fbcon_init+0x36e/0x42c [ 41.081464] visual_init+0xba/0x114 [ 41.081467] do_bind_con_driver.isra.0+0x1a3/0x29d [ 41.081469] do_take_over_console+0x14f/0x160 [ 41.081471] do_fbcon_takeover+0x5c/0x9c [ 41.081474] fbcon_fb_registered+0x157/0x17e [ 41.081476] register_framebuffer+0x261/0x299 [ 41.081478] ? drm_connector_list_iter_end+0x36/0x4e [drm] [ 41.081499] __drm_fb_helper_initial_config_and_unlock+0x3c8/0x4a1 [drm_kms_helper] [ 41.081510] intel_fbdev_initial_config+0x14/0x25 [i915] [ 41.081581] async_run_entry_fn+0x1d/0x9a [ 41.081583] process_one_work+0x1a8/0x295 [ 41.081586] worker_thread+0x18b/0x244 [ 41.081589] ? rescuer_thread+0x281/0x281 [ 41.081591] kthread+0xe4/0xef [ 41.081593] ? kthread_complete_and_exit+0x1b/0x1b [ 41.081595] ret_from_fork+0x1f/0x30 [ 41.081599] </TASK> [ 41.081599] ---[ end trace 0000000000000000 ]--- [ 41.081638] ------------[ cut here ]------------ [ 41.081639] i915 0000:00:02.0: drm_WARN_ON((__builtin_constant_p(mask) ? ((((unsigned int) ((!!((mask) & (1ULL << 0))) + (!!((mask) & (1ULL << 1))) + (!!((mask) & (1ULL << 2))) + (!!((mask) & (1ULL << 3))) + (!!((mask) & (1ULL << 4))) + (!!((mask) & (1ULL << 5))) + (!!((mask) & (1ULL << 6))) + (!!((mask) & (1ULL << 7))))) + ((unsigned int) ((!!(((mask) >> 8) & (1ULL << 0))) + (!!(((mask) >> 8) & (1ULL << 1))) + (!!(((mask) >> 8) & (1ULL << 2))) + (!!(((mask) >> 8) & (1ULL << 3))) + (!!(((mask) >> 8) & (1ULL << 4))) + (!!(((mask) >> 8) & (1ULL << 5))) + (!!(((mask) >> 8) & (1ULL << 6))) + (!!(((mask) >> 8) & (1ULL << 7)))))) + (((unsigned int) ((!!(((mask) >> 16) & (1ULL << 0))) + (!!(((mask) >> 16) & (1ULL << 1))) + (!!(((mask) >> 16) & (1ULL << 2))) + (!!(((mask) >> 16) & (1ULL << 3))) + (!!(((mask) >> 16) & (1ULL << 4))) + (!!(((mask) >> 16) & (1ULL << 5))) + (!!(((mask) >> 16) & (1ULL << 6))) + (!!(((mask) >> 16) & (1ULL << 7))))) + ((unsigned int) ((!!((((mask) >> 16) >> 8) & (1ULL << [ 41.081648] WARNING: CPU: 1 PID: 693 at drivers/gpu/drm/i915/display/intel_tc.c:320 tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.081719] Modules linked in: zfs(PO) i915 zunicode(PO) intel_rapl_msr intel_rapl_common x86_pkg_temp_thermal intel_powerclamp zzstd(O) coretemp kvm_intel zlua(O) zavl(PO) icp(PO) kvm iosf_mbi crct10dif_pclmul crc32_pclmul drm_buddy crc32c_intel ghash_clmulni_intel zcommon(PO) i2c_algo_bit sha512_ssse3 sha256_ssse3 sha1_ssse3 znvpair(PO) ttm aesni_intel drm_display_helper crypto_simd spl(O) cryptd drm_kms_helper mei_pxp mei_hdcp rapl i2c_i801 wmi_bmof intel_cstate intel_uncore drm i2c_smbus nvme mei_me intel_gtt agpgart ahci input_leds i2c_core igc nvme_core syscopyarea mei led_class libahci sysfillrect sysimgblt thermal tpm_crb fan fb_sys_fops video tpm_tis tpm_tis_core wmi backlight tpm intel_pmc_core acpi_pad acpi_tad button unix [ 41.081741] CPU: 1 PID: 693 Comm: kworker/u8:6 Tainted: P W O 6.1.74-Unraid #1 [ 41.081742] Hardware name: Default string Default string/Default string, BIOS 5.27 12/18/2023 [ 41.081743] Workqueue: events_unbound async_run_entry_fn [ 41.081745] RIP: 0010:tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.081812] Code: 48 8b 6f 50 48 85 ed 75 03 48 8b 2f e8 a3 1d bf e0 48 c7 c1 b8 0c a6 a0 48 89 ea 48 c7 c7 e1 11 a6 a0 48 89 c6 e8 b0 74 6c e0 <0f> 0b e9 02 01 00 00 8b 97 50 01 00 00 c7 44 24 0c 00 f0 16 00 49 [ 41.081814] RSP: 0018:ffffc9000057f8b0 EFLAGS: 00010286 [ 41.081815] RAX: 0000000000000000 RBX: 000000000000000c RCX: 000000000000000c [ 41.081816] RDX: 0000000000000002 RSI: 0000000000000002 RDI: 00000000ffffffff [ 41.081816] RBP: ffff8881015820b0 R08: 00000000ffffffff R09: ffffc9000057f800 [ 41.081817] R10: 00000000000c4000 R11: 0000000000002c23 R12: ffff88812c6b8000 [ 41.081818] R13: ffff88812c6b9c20 R14: 0000000002000000 R15: 0000000000000000 [ 41.081819] FS: 0000000000000000(0000) GS:ffff88885fa80000(0000) knlGS:0000000000000000 [ 41.081820] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 41.081821] CR2: 0000154ae1888950 CR3: 000000000420a000 CR4: 0000000000750ee0 [ 41.081822] PKRU: 55555554 [ 41.081822] Call Trace: [ 41.081823] <TASK> [ 41.081824] ? __warn+0xab/0x122 [ 41.081826] ? report_bug+0x109/0x17e [ 41.081828] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.081895] ? handle_bug+0x41/0x6f [ 41.081896] ? exc_invalid_op+0x13/0x60 [ 41.081898] ? asm_exc_invalid_op+0x16/0x20 [ 41.081900] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.081966] ? tc_phy_status_complete+0x4d/0xed [i915] [ 41.082035] intel_tc_port_update_mode+0x15d/0x396 [i915] [ 41.082102] __intel_tc_port_lock+0x47/0xd1 [i915] [ 41.082168] intel_tc_port_get_link+0xf/0x1f [i915] [ 41.082236] intel_ddi_update_prepare+0xb8/0x130 [i915] [ 41.082311] intel_atomic_commit_tail+0x570/0xac8 [i915] [ 41.082399] intel_atomic_commit+0x280/0x292 [i915] [ 41.082481] drm_atomic_commit+0xa8/0xcb [drm] [ 41.082506] ? __SCT__tp_func_drm_vblank_event_delivered+0x8/0x8 [drm] [ 41.082526] ? __SCT__tp_func_drm_vblank_event_delivered+0x8/0x8 [drm] [ 41.082545] drm_client_modeset_commit_atomic+0x154/0x1e7 [drm] [ 41.082566] drm_client_modeset_commit_locked+0x3b/0x12e [drm] [ 41.082586] drm_client_modeset_commit+0x28/0x3d [drm] [ 41.082606] __drm_fb_helper_restore_fbdev_mode_unlocked+0x4e/0x8e [drm_kms_helper] [ 41.082618] drm_fb_helper_set_par+0x4f/0x5e [drm_kms_helper] [ 41.082629] intel_fbdev_set_par+0x13/0x32 [i915] [ 41.082710] fbcon_init+0x36e/0x42c [ 41.082713] visual_init+0xba/0x114 [ 41.082715] do_bind_con_driver.isra.0+0x1a3/0x29d [ 41.082717] do_take_over_console+0x14f/0x160 [ 41.082719] do_fbcon_takeover+0x5c/0x9c [ 41.082722] fbcon_fb_registered+0x157/0x17e [ 41.082724] register_framebuffer+0x261/0x299 [ 41.082726] ? drm_connector_list_iter_end+0x36/0x4e [drm] [ 41.082750] __drm_fb_helper_initial_config_and_unlock+0x3c8/0x4a1 [drm_kms_helper] [ 41.082762] intel_fbdev_initial_config+0x14/0x25 [i915] [ 41.082840] async_run_entry_fn+0x1d/0x9a [ 41.082842] process_one_work+0x1a8/0x295 [ 41.082845] worker_thread+0x18b/0x244 [ 41.082847] ? rescuer_thread+0x281/0x281 [ 41.082850] kthread+0xe4/0xef [ 41.082852] ? kthread_complete_and_exit+0x1b/0x1b [ 41.082854] ret_from_fork+0x1f/0x30 [ 41.082857] </TASK> [ 41.082857] ---[ end trace 0000000000000000 ]--- [ 41.082864] ------------[ cut here ]------------ [ 41.082865] i915 0000:00:02.0: drm_WARN_ON((__builtin_constant_p(mask) ? ((((unsigned int) ((!!((mask) & (1ULL << 0))) + (!!((mask) & (1ULL << 1))) + (!!((mask) & (1ULL << 2))) + (!!((mask) & (1ULL << 3))) + (!!((mask) & (1ULL << 4))) + (!!((mask) & (1ULL << 5))) + (!!((mask) & (1ULL << 6))) + (!!((mask) & (1ULL << 7))))) + ((unsigned int) ((!!(((mask) >> 8) & (1ULL << 0))) + (!!(((mask) >> 8) & (1ULL << 1))) + (!!(((mask) >> 8) & (1ULL << 2))) + (!!(((mask) >> 8) & (1ULL << 3))) + (!!(((mask) >> 8) & (1ULL << 4))) + (!!(((mask) >> 8) & (1ULL << 5))) + (!!(((mask) >> 8) & (1ULL << 6))) + (!!(((mask) >> 8) & (1ULL << 7)))))) + (((unsigned int) ((!!(((mask) >> 16) & (1ULL << 0))) + (!!(((mask) >> 16) & (1ULL << 1))) + (!!(((mask) >> 16) & (1ULL << 2))) + (!!(((mask) >> 16) & (1ULL << 3))) + (!!(((mask) >> 16) & (1ULL << 4))) + (!!(((mask) >> 16) & (1ULL << 5))) + (!!(((mask) >> 16) & (1ULL << 6))) + (!!(((mask) >> 16) & (1ULL << 7))))) + ((unsigned int) ((!!((((mask) >> 16) >> 8) & (1ULL << [ 41.082875] WARNING: CPU: 1 PID: 693 at drivers/gpu/drm/i915/display/intel_tc.c:320 tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.082954] Modules linked in: zfs(PO) i915 zunicode(PO) intel_rapl_msr intel_rapl_common x86_pkg_temp_thermal intel_powerclamp zzstd(O) coretemp kvm_intel zlua(O) zavl(PO) icp(PO) kvm iosf_mbi crct10dif_pclmul crc32_pclmul drm_buddy crc32c_intel ghash_clmulni_intel zcommon(PO) i2c_algo_bit sha512_ssse3 sha256_ssse3 sha1_ssse3 znvpair(PO) ttm aesni_intel drm_display_helper crypto_simd spl(O) cryptd drm_kms_helper mei_pxp mei_hdcp rapl i2c_i801 wmi_bmof intel_cstate intel_uncore drm i2c_smbus nvme mei_me intel_gtt agpgart ahci input_leds i2c_core igc nvme_core syscopyarea mei led_class libahci sysfillrect sysimgblt thermal tpm_crb fan fb_sys_fops video tpm_tis tpm_tis_core wmi backlight tpm intel_pmc_core acpi_pad acpi_tad button unix [ 41.082979] CPU: 1 PID: 693 Comm: kworker/u8:6 Tainted: P W O 6.1.74-Unraid #1 [ 41.082981] Hardware name: Default string Default string/Default string, BIOS 5.27 12/18/2023 [ 41.082982] Workqueue: events_unbound async_run_entry_fn [ 41.082984] RIP: 0010:tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.083063] Code: 48 8b 6f 50 48 85 ed 75 03 48 8b 2f e8 a3 1d bf e0 48 c7 c1 b8 0c a6 a0 48 89 ea 48 c7 c7 e1 11 a6 a0 48 89 c6 e8 b0 74 6c e0 <0f> 0b e9 02 01 00 00 8b 97 50 01 00 00 c7 44 24 0c 00 f0 16 00 49 [ 41.083064] RSP: 0018:ffffc9000057f8b0 EFLAGS: 00010286 [ 41.083065] RAX: 0000000000000000 RBX: 000000000000000c RCX: 000000000000000c [ 41.083066] RDX: 0000000000000002 RSI: 0000000000000002 RDI: 00000000ffffffff [ 41.083067] RBP: ffff8881015820b0 R08: 00000000ffffffff R09: ffffc9000057f800 [ 41.083068] R10: 00000000000c4000 R11: 0000000000002c23 R12: ffff88812c6b8000 [ 41.083069] R13: ffff88812c6b9c20 R14: 0000000002000000 R15: 0000000000000000 [ 41.083070] FS: 0000000000000000(0000) GS:ffff88885fa80000(0000) knlGS:0000000000000000 [ 41.083071] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 41.083072] CR2: 0000154ae1888950 CR3: 000000000420a000 CR4: 0000000000750ee0 [ 41.083073] PKRU: 55555554 [ 41.083073] Call Trace: [ 41.083074] <TASK> [ 41.083075] ? __warn+0xab/0x122 [ 41.083077] ? report_bug+0x109/0x17e [ 41.083080] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.083155] ? handle_bug+0x41/0x6f [ 41.083157] ? exc_invalid_op+0x13/0x60 [ 41.083159] ? asm_exc_invalid_op+0x16/0x20 [ 41.083160] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.083235] ? tc_phy_status_complete+0x4d/0xed [i915] [ 41.083308] intel_tc_port_update_mode+0x24b/0x396 [i915] [ 41.083384] __intel_tc_port_lock+0x47/0xd1 [i915] [ 41.083460] intel_tc_port_get_link+0xf/0x1f [i915] [ 41.083536] intel_ddi_update_prepare+0xb8/0x130 [i915] [ 41.083619] intel_atomic_commit_tail+0x570/0xac8 [i915] [ 41.083715] intel_atomic_commit+0x280/0x292 [i915] [ 41.083807] drm_atomic_commit+0xa8/0xcb [drm] [ 41.083835] ? __SCT__tp_func_drm_vblank_event_delivered+0x8/0x8 [drm] [ 41.083859] ? __SCT__tp_func_drm_vblank_event_delivered+0x8/0x8 [drm] [ 41.083881] drm_client_modeset_commit_atomic+0x154/0x1e7 [drm] [ 41.083904] drm_client_modeset_commit_locked+0x3b/0x12e [drm] [ 41.083927] drm_client_modeset_commit+0x28/0x3d [drm] [ 41.083949] __drm_fb_helper_restore_fbdev_mode_unlocked+0x4e/0x8e [drm_kms_helper] [ 41.083962] drm_fb_helper_set_par+0x4f/0x5e [drm_kms_helper] [ 41.083974] intel_fbdev_set_par+0x13/0x32 [i915] [ 41.084066] fbcon_init+0x36e/0x42c [ 41.084069] visual_init+0xba/0x114 [ 41.084071] do_bind_con_driver.isra.0+0x1a3/0x29d [ 41.084074] do_take_over_console+0x14f/0x160 [ 41.084076] do_fbcon_takeover+0x5c/0x9c [ 41.084079] fbcon_fb_registered+0x157/0x17e [ 41.084081] register_framebuffer+0x261/0x299 [ 41.084083] ? drm_connector_list_iter_end+0x36/0x4e [drm] [ 41.084110] __drm_fb_helper_initial_config_and_unlock+0x3c8/0x4a1 [drm_kms_helper] [ 41.084124] intel_fbdev_initial_config+0x14/0x25 [i915] [ 41.084211] async_run_entry_fn+0x1d/0x9a [ 41.084213] process_one_work+0x1a8/0x295 [ 41.084216] worker_thread+0x18b/0x244 [ 41.084219] ? rescuer_thread+0x281/0x281 [ 41.084222] kthread+0xe4/0xef [ 41.084224] ? kthread_complete_and_exit+0x1b/0x1b [ 41.084227] ret_from_fork+0x1f/0x30 [ 41.084230] </TASK> [ 41.084230] ---[ end trace 0000000000000000 ]--- [ 41.126713] Console: switching to colour frame buffer device 320x100 [ 41.283763] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device [ 41.330322] ------------[ cut here ]------------ [ 41.331338] i915 0000:00:02.0: drm_WARN_ON((__builtin_constant_p(mask) ? ((((unsigned int) ((!!((mask) & (1ULL << 0))) + (!!((mask) & (1ULL << 1))) + (!!((mask) & (1ULL << 2))) + (!!((mask) & (1ULL << 3))) + (!!((mask) & (1ULL << 4))) + (!!((mask) & (1ULL << 5))) + (!!((mask) & (1ULL << 6))) + (!!((mask) & (1ULL << 7))))) + ((unsigned int) ((!!(((mask) >> 8) & (1ULL << 0))) + (!!(((mask) >> 8) & (1ULL << 1))) + (!!(((mask) >> 8) & (1ULL << 2))) + (!!(((mask) >> 8) & (1ULL << 3))) + (!!(((mask) >> 8) & (1ULL << 4))) + (!!(((mask) >> 8) & (1ULL << 5))) + (!!(((mask) >> 8) & (1ULL << 6))) + (!!(((mask) >> 8) & (1ULL << 7)))))) + (((unsigned int) ((!!(((mask) >> 16) & (1ULL << 0))) + (!!(((mask) >> 16) & (1ULL << 1))) + (!!(((mask) >> 16) & (1ULL << 2))) + (!!(((mask) >> 16) & (1ULL << 3))) + (!!(((mask) >> 16) & (1ULL << 4))) + (!!(((mask) >> 16) & (1ULL << 5))) + (!!(((mask) >> 16) & (1ULL << 6))) + (!!(((mask) >> 16) & (1ULL << 7))))) + ((unsigned int) ((!!((((mask) >> 16) >> 8) & (1ULL << [ 41.331355] WARNING: CPU: 1 PID: 23 at drivers/gpu/drm/i915/display/intel_tc.c:320 tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.336514] Modules linked in: zfs(PO) i915 zunicode(PO) intel_rapl_msr intel_rapl_common x86_pkg_temp_thermal intel_powerclamp zzstd(O) coretemp kvm_intel zlua(O) zavl(PO) icp(PO) kvm iosf_mbi crct10dif_pclmul crc32_pclmul drm_buddy crc32c_intel ghash_clmulni_intel zcommon(PO) i2c_algo_bit sha512_ssse3 sha256_ssse3 sha1_ssse3 znvpair(PO) ttm aesni_intel drm_display_helper crypto_simd spl(O) cryptd drm_kms_helper mei_pxp mei_hdcp rapl i2c_i801 wmi_bmof intel_cstate intel_uncore drm i2c_smbus nvme mei_me intel_gtt agpgart ahci input_leds i2c_core igc nvme_core syscopyarea mei led_class libahci sysfillrect sysimgblt thermal tpm_crb fan fb_sys_fops video tpm_tis tpm_tis_core wmi backlight tpm intel_pmc_core acpi_pad acpi_tad button unix [ 41.339793] CPU: 1 PID: 23 Comm: kworker/1:0 Tainted: P W O 6.1.74-Unraid #1 [ 41.340939] Hardware name: Default string Default string/Default string, BIOS 5.27 12/18/2023 [ 41.342094] Workqueue: events output_poll_execute [drm_kms_helper] [ 41.343243] RIP: 0010:tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.344381] Code: 48 8b 6f 50 48 85 ed 75 03 48 8b 2f e8 a3 1d bf e0 48 c7 c1 b8 0c a6 a0 48 89 ea 48 c7 c7 e1 11 a6 a0 48 89 c6 e8 b0 74 6c e0 <0f> 0b e9 02 01 00 00 8b 97 50 01 00 00 c7 44 24 0c 00 f0 16 00 49 [ 41.345483] RSP: 0018:ffffc900001bbb50 EFLAGS: 00010286 [ 41.346597] RAX: 0000000000000000 RBX: 000000000000000c RCX: 0000000000000003 [ 41.347714] RDX: 0000000000000002 RSI: 0000000000000003 RDI: 00000000ffffffff [ 41.348846] RBP: ffff8881015820b0 R08: 0000000000000000 R09: ffffc900001bba00 [ 41.350027] R10: 0000000000000001 R11: 0000000000000001 R12: ffff88812c6b8000 [ 41.351157] R13: ffff88812c6b9c20 R14: 0000000002000000 R15: ffff88812c6b8338 [ 41.352278] FS: 0000000000000000(0000) GS:ffff88885fa80000(0000) knlGS:0000000000000000 [ 41.353405] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 41.354542] CR2: 000014d919fcb7e0 CR3: 000000000420a000 CR4: 0000000000750ee0 [ 41.355737] PKRU: 55555554 [ 41.356928] Call Trace: [ 41.358127] <TASK> [ 41.359255] ? __warn+0xab/0x122 [ 41.360393] ? report_bug+0x109/0x17e [ 41.361495] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.362683] ? handle_bug+0x41/0x6f [ 41.363750] ? exc_invalid_op+0x13/0x60 [ 41.364846] ? asm_exc_invalid_op+0x16/0x20 [ 41.365917] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.367014] intel_tc_port_connected+0x40/0x67 [i915] [ 41.368102] intel_digital_port_connected+0x36/0x55 [i915] [ 41.369158] intel_dp_detect+0x110/0x49a [i915] [ 41.370215] drm_helper_probe_detect+0x59/0x98 [drm_kms_helper] [ 41.371250] drm_helper_probe_single_connector_modes+0x110/0x462 [drm_kms_helper] [ 41.372252] ? __kmem_cache_alloc_node+0x118/0x147 [ 41.373278] drm_client_modeset_probe+0x1f3/0xeb1 [drm] [ 41.374309] ? __schedule+0x5ba/0x612 [ 41.375284] ? _raw_spin_lock_irqsave+0x2c/0x37 [ 41.376249] ? _raw_spin_unlock_irqrestore+0x24/0x3a [ 41.377208] ? async_synchronize_cookie_domain+0x79/0x99 [ 41.378137] ? _raw_spin_rq_lock_irqsave+0x20/0x20 [ 41.378139] drm_fb_helper_hotplug_event+0xae/0xd7 [drm_kms_helper] [ 41.378150] drm_kms_helper_hotplug_event+0x23/0x2f [drm_kms_helper] [ 41.378160] output_poll_execute+0xad/0x1fb [drm_kms_helper] [ 41.378170] process_one_work+0x1a8/0x295 [ 41.378173] worker_thread+0x18b/0x244 [ 41.378176] ? rescuer_thread+0x281/0x281 [ 41.384370] kthread+0xe4/0xef [ 41.384373] ? kthread_complete_and_exit+0x1b/0x1b [ 41.384375] ret_from_fork+0x1f/0x30 [ 41.384378] </TASK> [ 41.384379] ---[ end trace 0000000000000000 ]--- [ 41.409955] ------------[ cut here ]------------ [ 41.410997] i915 0000:00:02.0: drm_WARN_ON((__builtin_constant_p(mask) ? ((((unsigned int) ((!!((mask) & (1ULL << 0))) + (!!((mask) & (1ULL << 1))) + (!!((mask) & (1ULL << 2))) + (!!((mask) & (1ULL << 3))) + (!!((mask) & (1ULL << 4))) + (!!((mask) & (1ULL << 5))) + (!!((mask) & (1ULL << 6))) + (!!((mask) & (1ULL << 7))))) + ((unsigned int) ((!!(((mask) >> 8) & (1ULL << 0))) + (!!(((mask) >> 8) & (1ULL << 1))) + (!!(((mask) >> 8) & (1ULL << 2))) + (!!(((mask) >> 8) & (1ULL << 3))) + (!!(((mask) >> 8) & (1ULL << 4))) + (!!(((mask) >> 8) & (1ULL << 5))) + (!!(((mask) >> 8) & (1ULL << 6))) + (!!(((mask) >> 8) & (1ULL << 7)))))) + (((unsigned int) ((!!(((mask) >> 16) & (1ULL << 0))) + (!!(((mask) >> 16) & (1ULL << 1))) + (!!(((mask) >> 16) & (1ULL << 2))) + (!!(((mask) >> 16) & (1ULL << 3))) + (!!(((mask) >> 16) & (1ULL << 4))) + (!!(((mask) >> 16) & (1ULL << 5))) + (!!(((mask) >> 16) & (1ULL << 6))) + (!!(((mask) >> 16) & (1ULL << 7))))) + ((unsigned int) ((!!((((mask) >> 16) >> 8) & (1ULL << [ 41.411012] WARNING: CPU: 1 PID: 23 at drivers/gpu/drm/i915/display/intel_tc.c:320 tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.415908] Modules linked in: zfs(PO) i915 zunicode(PO) intel_rapl_msr intel_rapl_common x86_pkg_temp_thermal intel_powerclamp zzstd(O) coretemp kvm_intel zlua(O) zavl(PO) icp(PO) kvm iosf_mbi crct10dif_pclmul crc32_pclmul drm_buddy crc32c_intel ghash_clmulni_intel zcommon(PO) i2c_algo_bit sha512_ssse3 sha256_ssse3 sha1_ssse3 znvpair(PO) ttm aesni_intel drm_display_helper crypto_simd spl(O) cryptd drm_kms_helper mei_pxp mei_hdcp rapl i2c_i801 wmi_bmof intel_cstate intel_uncore drm i2c_smbus nvme mei_me intel_gtt agpgart ahci input_leds i2c_core igc nvme_core syscopyarea mei led_class libahci sysfillrect sysimgblt thermal tpm_crb fan fb_sys_fops video tpm_tis tpm_tis_core wmi backlight tpm intel_pmc_core acpi_pad acpi_tad button unix [ 41.419119] CPU: 1 PID: 23 Comm: kworker/1:0 Tainted: P W O 6.1.74-Unraid #1 [ 41.420199] Hardware name: Default string Default string/Default string, BIOS 5.27 12/18/2023 [ 41.421278] Workqueue: events output_poll_execute [drm_kms_helper] [ 41.422371] RIP: 0010:tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.423505] Code: 48 8b 6f 50 48 85 ed 75 03 48 8b 2f e8 a3 1d bf e0 48 c7 c1 b8 0c a6 a0 48 89 ea 48 c7 c7 e1 11 a6 a0 48 89 c6 e8 b0 74 6c e0 <0f> 0b e9 02 01 00 00 8b 97 50 01 00 00 c7 44 24 0c 00 f0 16 00 49 [ 41.424617] RSP: 0018:ffffc900001bbb80 EFLAGS: 00010282 [ 41.425746] RAX: 0000000000000000 RBX: 000000000000000c RCX: 0000000000000003 [ 41.426881] RDX: 0000000000000002 RSI: 0000000000000003 RDI: 00000000ffffffff [ 41.428007] RBP: ffff8881015820b0 R08: 0000000000000000 R09: ffffc900001bbb00 [ 41.429133] R10: 0000000000000001 R11: 0000000000000001 R12: ffff88812c6b8000 [ 41.430261] R13: ffff88812c6b9c20 R14: 0000000002000000 R15: ffff88812c6b8338 [ 41.431391] FS: 0000000000000000(0000) GS:ffff88885fa80000(0000) knlGS:0000000000000000 [ 41.432526] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 41.433667] CR2: 000014d919fcb7e0 CR3: 000000000420a000 CR4: 0000000000750ee0 [ 41.434809] PKRU: 55555554 [ 41.435949] Call Trace: [ 41.437089] <TASK> [ 41.438230] ? __warn+0xab/0x122 [ 41.439367] ? report_bug+0x109/0x17e [ 41.440501] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.441687] ? handle_bug+0x41/0x6f [ 41.442819] ? exc_invalid_op+0x13/0x60 [ 41.443953] ? asm_exc_invalid_op+0x16/0x20 [ 41.445089] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 41.446273] intel_tc_port_connected+0x40/0x67 [i915] [ 41.447458] intel_digital_port_connected+0x36/0x55 [i915] [ 41.448650] intel_hdmi_detect+0xd6/0x101 [i915] [ 41.449836] drm_helper_probe_detect+0x7c/0x98 [drm_kms_helper] [ 41.450986] drm_helper_probe_single_connector_modes+0x110/0x462 [drm_kms_helper] [ 41.452135] ? __kmem_cache_alloc_node+0x118/0x147 [ 41.453275] drm_client_modeset_probe+0x1f3/0xeb1 [drm] [ 41.454433] ? __schedule+0x5ba/0x612 [ 41.455570] ? _raw_spin_lock_irqsave+0x2c/0x37 [ 41.456709] ? _raw_spin_unlock_irqrestore+0x24/0x3a [ 41.457844] ? async_synchronize_cookie_domain+0x79/0x99 [ 41.458950] ? _raw_spin_rq_lock_irqsave+0x20/0x20 [ 41.460034] drm_fb_helper_hotplug_event+0xae/0xd7 [drm_kms_helper] [ 41.461101] drm_kms_helper_hotplug_event+0x23/0x2f [drm_kms_helper] [ 41.462140] output_poll_execute+0xad/0x1fb [drm_kms_helper] [ 41.463170] process_one_work+0x1a8/0x295 [ 41.464169] worker_thread+0x18b/0x244 [ 41.465149] ? rescuer_thread+0x281/0x281 [ 41.466101] kthread+0xe4/0xef [ 41.467044] ? kthread_complete_and_exit+0x1b/0x1b [ 41.467984] ret_from_fork+0x1f/0x30 [ 41.468920] </TASK> [ 41.469850] ---[ end trace 0000000000000000 ]--- [ 44.136791] ------------[ cut here ]------------ [ 44.137889] i915 0000:00:02.0: drm_WARN_ON((__builtin_constant_p(mask) ? ((((unsigned int) ((!!((mask) & (1ULL << 0))) + (!!((mask) & (1ULL << 1))) + (!!((mask) & (1ULL << 2))) + (!!((mask) & (1ULL << 3))) + (!!((mask) & (1ULL << 4))) + (!!((mask) & (1ULL << 5))) + (!!((mask) & (1ULL << 6))) + (!!((mask) & (1ULL << 7))))) + ((unsigned int) ((!!(((mask) >> 8) & (1ULL << 0))) + (!!(((mask) >> 8) & (1ULL << 1))) + (!!(((mask) >> 8) & (1ULL << 2))) + (!!(((mask) >> 8) & (1ULL << 3))) + (!!(((mask) >> 8) & (1ULL << 4))) + (!!(((mask) >> 8) & (1ULL << 5))) + (!!(((mask) >> 8) & (1ULL << 6))) + (!!(((mask) >> 8) & (1ULL << 7)))))) + (((unsigned int) ((!!(((mask) >> 16) & (1ULL << 0))) + (!!(((mask) >> 16) & (1ULL << 1))) + (!!(((mask) >> 16) & (1ULL << 2))) + (!!(((mask) >> 16) & (1ULL << 3))) + (!!(((mask) >> 16) & (1ULL << 4))) + (!!(((mask) >> 16) & (1ULL << 5))) + (!!(((mask) >> 16) & (1ULL << 6))) + (!!(((mask) >> 16) & (1ULL << 7))))) + ((unsigned int) ((!!((((mask) >> 16) >> 8) & (1ULL << [ 44.137906] WARNING: CPU: 1 PID: 23 at drivers/gpu/drm/i915/display/intel_tc.c:320 tc_port_live_status_mask+0xd2/0x203 [i915] [ 44.143477] Modules linked in: zfs(PO) i915 zunicode(PO) intel_rapl_msr intel_rapl_common x86_pkg_temp_thermal intel_powerclamp zzstd(O) coretemp kvm_intel zlua(O) zavl(PO) icp(PO) kvm iosf_mbi crct10dif_pclmul crc32_pclmul drm_buddy crc32c_intel ghash_clmulni_intel zcommon(PO) i2c_algo_bit sha512_ssse3 sha256_ssse3 sha1_ssse3 znvpair(PO) ttm aesni_intel drm_display_helper crypto_simd spl(O) cryptd drm_kms_helper mei_pxp mei_hdcp rapl i2c_i801 wmi_bmof intel_cstate intel_uncore drm i2c_smbus nvme mei_me intel_gtt agpgart ahci input_leds i2c_core igc nvme_core syscopyarea mei led_class libahci sysfillrect sysimgblt thermal tpm_crb fan fb_sys_fops video tpm_tis tpm_tis_core wmi backlight tpm intel_pmc_core acpi_pad acpi_tad button unix [ 44.147116] CPU: 1 PID: 23 Comm: kworker/1:0 Tainted: P W O 6.1.74-Unraid #1 [ 44.148277] Hardware name: Default string Default string/Default string, BIOS 5.27 12/18/2023 [ 44.149426] Workqueue: events output_poll_execute [drm_kms_helper] [ 44.150604] RIP: 0010:tc_port_live_status_mask+0xd2/0x203 [i915] [ 44.150678] Code: 48 8b 6f 50 48 85 ed 75 03 48 8b 2f e8 a3 1d bf e0 48 c7 c1 b8 0c a6 a0 48 89 ea 48 c7 c7 e1 11 a6 a0 48 89 c6 e8 b0 74 6c e0 <0f> 0b e9 02 01 00 00 8b 97 50 01 00 00 c7 44 24 0c 00 f0 16 00 49 [ 44.150679] RSP: 0018:ffffc900001bbb38 EFLAGS: 00010282 [ 44.150681] RAX: 0000000000000000 RBX: 000000000000000c RCX: 0000000000000003 [ 44.150682] RDX: 0000000000000002 RSI: 0000000000000003 RDI: 00000000ffffffff [ 44.150683] RBP: ffff8881015820b0 R08: 0000000000000000 R09: ffffc900001bba00 [ 44.150684] R10: 0000000000000001 R11: 0000000000000001 R12: ffff88812c6b8000 [ 44.150685] R13: ffff88812c6b9c20 R14: 0000000002000000 R15: ffff88812c6b8338 [ 44.150686] FS: 0000000000000000(0000) GS:ffff88885fa80000(0000) knlGS:0000000000000000 [ 44.150687] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 44.150688] CR2: 0000000000470458 CR3: 000000000420a000 CR4: 0000000000750ee0 [ 44.150689] PKRU: 55555554 [ 44.150690] Call Trace: [ 44.150693] <TASK> [ 44.150695] ? __warn+0xab/0x122 [ 44.150700] ? report_bug+0x109/0x17e [ 44.150704] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 44.150764] ? handle_bug+0x41/0x6f [ 44.150766] ? exc_invalid_op+0x13/0x60 [ 44.150768] ? asm_exc_invalid_op+0x16/0x20 [ 44.150770] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 44.150829] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 44.150887] intel_tc_port_connected+0x40/0x67 [i915] [ 44.150946] intel_digital_port_connected+0x36/0x55 [i915] [ 44.151010] intel_dp_detect+0x110/0x49a [i915] [ 44.151070] drm_helper_probe_detect+0x59/0x98 [drm_kms_helper] [ 44.151082] drm_helper_probe_single_connector_modes+0x110/0x462 [drm_kms_helper] [ 44.151094] ? __kmem_cache_alloc_node+0x118/0x147 [ 44.151098] drm_client_modeset_probe+0x1f3/0xeb1 [drm] [ 44.151126] ? memcg_slab_free_hook+0x20/0xcf [ 44.151129] ? kobject_uevent_env+0x5a6/0x5bc [ 44.151131] drm_fb_helper_hotplug_event+0xae/0xd7 [drm_kms_helper] [ 44.151143] drm_kms_helper_hotplug_event+0x23/0x2f [drm_kms_helper] [ 44.151154] output_poll_execute+0x1b5/0x1fb [drm_kms_helper] [ 44.151165] ? output_poll_execute+0x1d3/0x1fb [drm_kms_helper] [ 44.151176] process_one_work+0x1a8/0x295 [ 44.151180] process_scheduled_works+0x27/0x30 [ 44.151183] worker_thread+0x1a8/0x244 [ 44.151185] ? rescuer_thread+0x281/0x281 [ 44.151188] kthread+0xe4/0xef [ 44.151190] ? kthread_complete_and_exit+0x1b/0x1b [ 44.151192] ret_from_fork+0x1f/0x30 [ 44.151196] </TASK> [ 44.151197] ---[ end trace 0000000000000000 ]--- [ 44.180144] ------------[ cut here ]------------ [ 44.201536] i915 0000:00:02.0: drm_WARN_ON((__builtin_constant_p(mask) ? ((((unsigned int) ((!!((mask) & (1ULL << 0))) + (!!((mask) & (1ULL << 1))) + (!!((mask) & (1ULL << 2))) + (!!((mask) & (1ULL << 3))) + (!!((mask) & (1ULL << 4))) + (!!((mask) & (1ULL << 5))) + (!!((mask) & (1ULL << 6))) + (!!((mask) & (1ULL << 7))))) + ((unsigned int) ((!!(((mask) >> 8) & (1ULL << 0))) + (!!(((mask) >> 8) & (1ULL << 1))) + (!!(((mask) >> 8) & (1ULL << 2))) + (!!(((mask) >> 8) & (1ULL << 3))) + (!!(((mask) >> 8) & (1ULL << 4))) + (!!(((mask) >> 8) & (1ULL << 5))) + (!!(((mask) >> 8) & (1ULL << 6))) + (!!(((mask) >> 8) & (1ULL << 7)))))) + (((unsigned int) ((!!(((mask) >> 16) & (1ULL << 0))) + (!!(((mask) >> 16) & (1ULL << 1))) + (!!(((mask) >> 16) & (1ULL << 2))) + (!!(((mask) >> 16) & (1ULL << 3))) + (!!(((mask) >> 16) & (1ULL << 4))) + (!!(((mask) >> 16) & (1ULL << 5))) + (!!(((mask) >> 16) & (1ULL << 6))) + (!!(((mask) >> 16) & (1ULL << 7))))) + ((unsigned int) ((!!((((mask) >> 16) >> 8) & (1ULL << [ 44.201550] WARNING: CPU: 1 PID: 23 at drivers/gpu/drm/i915/display/intel_tc.c:320 tc_port_live_status_mask+0xd2/0x203 [i915] [ 44.206330] Modules linked in: zfs(PO) i915 zunicode(PO) intel_rapl_msr intel_rapl_common x86_pkg_temp_thermal intel_powerclamp zzstd(O) coretemp kvm_intel zlua(O) zavl(PO) icp(PO) kvm iosf_mbi crct10dif_pclmul crc32_pclmul drm_buddy crc32c_intel ghash_clmulni_intel zcommon(PO) i2c_algo_bit sha512_ssse3 sha256_ssse3 sha1_ssse3 znvpair(PO) ttm aesni_intel drm_display_helper crypto_simd spl(O) cryptd drm_kms_helper mei_pxp mei_hdcp rapl i2c_i801 wmi_bmof intel_cstate intel_uncore drm i2c_smbus nvme mei_me intel_gtt agpgart ahci input_leds i2c_core igc nvme_core syscopyarea mei led_class libahci sysfillrect sysimgblt thermal tpm_crb fan fb_sys_fops video tpm_tis tpm_tis_core wmi backlight tpm intel_pmc_core acpi_pad acpi_tad button unix [ 44.209509] CPU: 1 PID: 23 Comm: kworker/1:0 Tainted: P W O 6.1.74-Unraid #1 [ 44.210650] Hardware name: Default string Default string/Default string, BIOS 5.27 12/18/2023 [ 44.211831] Workqueue: events output_poll_execute [drm_kms_helper] [ 44.213028] RIP: 0010:tc_port_live_status_mask+0xd2/0x203 [i915] [ 44.214240] Code: 48 8b 6f 50 48 85 ed 75 03 48 8b 2f e8 a3 1d bf e0 48 c7 c1 b8 0c a6 a0 48 89 ea 48 c7 c7 e1 11 a6 a0 48 89 c6 e8 b0 74 6c e0 <0f> 0b e9 02 01 00 00 8b 97 50 01 00 00 c7 44 24 0c 00 f0 16 00 49 [ 44.215434] RSP: 0018:ffffc900001bbb68 EFLAGS: 00010282 [ 44.216638] RAX: 0000000000000000 RBX: 000000000000000c RCX: 000000000000000c [ 44.216639] RDX: 0000000000000002 RSI: 0000000000000002 RDI: 00000000ffffffff [ 44.216640] RBP: ffff8881015820b0 R08: 00000000ffffffff R09: ffffc900001bba00 [ 44.220032] R10: 0000000000000001 R11: 0000000000000001 R12: ffff88812c6b8000 [ 44.220033] R13: ffff88812c6b9c20 R14: 0000000002000000 R15: ffff88812c6b8338 [ 44.220034] FS: 0000000000000000(0000) GS:ffff88885fa80000(0000) knlGS:0000000000000000 [ 44.220035] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 44.220036] CR2: 0000000000470458 CR3: 000000000420a000 CR4: 0000000000750ee0 [ 44.220037] PKRU: 55555554 [ 44.220038] Call Trace: [ 44.220040] <TASK> [ 44.220041] ? __warn+0xab/0x122 [ 44.220046] ? report_bug+0x109/0x17e [ 44.231328] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 44.232508] ? handle_bug+0x41/0x6f [ 44.232510] ? exc_invalid_op+0x13/0x60 [ 44.232511] ? asm_exc_invalid_op+0x16/0x20 [ 44.232513] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 44.237036] ? tc_port_live_status_mask+0xd2/0x203 [i915] [ 44.237094] intel_tc_port_connected+0x40/0x67 [i915] [ 44.237144] intel_digital_port_connected+0x36/0x55 [i915] [ 44.237196] intel_hdmi_detect+0xd6/0x101 [i915] [ 44.237247] drm_helper_probe_detect+0x7c/0x98 [drm_kms_helper] [ 44.237258] drm_helper_probe_single_connector_modes+0x110/0x462 [drm_kms_helper] [ 44.237268] ? __kmem_cache_alloc_node+0x118/0x147 [ 44.237272] drm_client_modeset_probe+0x1f3/0xeb1 [drm] [ 44.237294] ? memcg_slab_free_hook+0x20/0xcf [ 44.237297] ? kobject_uevent_env+0x5a6/0x5bc [ 44.237299] drm_fb_helper_hotplug_event+0xae/0xd7 [drm_kms_helper] [ 44.237309] drm_kms_helper_hotplug_event+0x23/0x2f [drm_kms_helper] [ 44.237318] output_poll_execute+0x1b5/0x1fb [drm_kms_helper] [ 44.237327] ? output_poll_execute+0x1d3/0x1fb [drm_kms_helper] [ 44.237337] process_one_work+0x1a8/0x295 [ 44.237340] process_scheduled_works+0x27/0x30 [ 44.237342] worker_thread+0x1a8/0x244 [ 44.237344] ? rescuer_thread+0x281/0x281 [ 44.237346] kthread+0xe4/0xef [ 44.237348] ? kthread_complete_and_exit+0x1b/0x1b [ 44.237350] ret_from_fork+0x1f/0x30 [ 44.237353] </TASK> [ 44.237354] ---[ end trace 0000000000000000 ]--- [ 44.403255] udevd[647]: invalid key/value pair in file /etc/udev/rules.d/70-persistent-net.rules on line 3, starting at character 1 ('-') [ 44.404308] igc 0000:05:00.0 eth3: PHC removed [ 45.323027] i2c i2c-5: readbytes: ack/nak timeout [ 45.344475] igc 0000:04:00.0 eth2: PHC removed [ 45.370483] igc 0000:03:00.0 eth1: PHC removed [ 45.399313] igc 0000:02:00.0 eth0: PHC removed [ 45.443081] Intel(R) 2.5G Ethernet Linux Driver [ 45.443085] Copyright(c) 2018 Intel Corporation. [ 45.443203] igc 0000:02:00.0: PCIe PTM not supported by PCIe bus/controller [ 45.491879] pps pps0: new PPS source ptp0 [ 45.491910] igc 0000:02:00.0 (unnamed net_device) (uninitialized): PHC added [ 45.516261] igc 0000:02:00.0: 4.000 Gb/s available PCIe bandwidth (5.0 GT/s PCIe x1 link) [ 45.516266] igc 0000:02:00.0 eth0: MAC: a8:b8:e0:02:b4:dd [ 45.516439] igc 0000:03:00.0: PCIe PTM not supported by PCIe bus/controller [ 45.565839] pps pps1: new PPS source ptp1 [ 45.565915] igc 0000:03:00.0 (unnamed net_device) (uninitialized): PHC added [ 45.587176] igc 0000:03:00.0: 4.000 Gb/s available PCIe bandwidth (5.0 GT/s PCIe x1 link) [ 45.587181] igc 0000:03:00.0 eth1: MAC: a8:b8:e0:02:b4:de [ 45.587329] igc 0000:04:00.0: PCIe PTM not supported by PCIe bus/controller [ 45.635574] pps pps2: new PPS source ptp2 [ 45.635606] igc 0000:04:00.0 (unnamed net_device) (uninitialized): PHC added [ 45.660785] igc 0000:04:00.0: 4.000 Gb/s available PCIe bandwidth (5.0 GT/s PCIe x1 link) [ 45.660790] igc 0000:04:00.0 eth2: MAC: a8:b8:e0:02:b4:df [ 45.660934] igc 0000:05:00.0: PCIe PTM not supported by PCIe bus/controller [ 45.708896] pps pps3: new PPS source ptp3 [ 45.708929] igc 0000:05:00.0 (unnamed net_device) (uninitialized): PHC added [ 45.733241] igc 0000:05:00.0: 4.000 Gb/s available PCIe bandwidth (5.0 GT/s PCIe x1 link) [ 45.733246] igc 0000:05:00.0 eth3: MAC: a8:b8:e0:02:b4:e0 [ 48.215909] MII link monitoring set to 100 ms [ 48.263141] bond0: (slave eth0): Enslaving as a backup interface with a down link [ 48.303842] bond0: (slave eth1): Enslaving as a backup interface with a down link [ 48.322698] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. [ 48.331754] br0: port 1(bond0) entered blocking state [ 48.331759] br0: port 1(bond0) entered disabled state [ 48.331803] device bond0 entered promiscuous mode [ 50.863591] igc 0000:02:00.0 eth0: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX [ 51.033397] bond0: (slave eth0): link status definitely up, 1000 Mbps full duplex [ 51.033423] bond0: (slave eth0): making interface the new active one [ 51.033430] device eth0 entered promiscuous mode [ 51.033846] bond0: active interface up! [ 51.033897] br0: port 1(bond0) entered blocking state [ 51.033906] br0: port 1(bond0) entered forwarding state [ 51.373225] 8021q: 802.1Q VLAN Support v1.8 [ 51.373292] 8021q: adding VLAN 0 to HW filter on device bond0 [ 52.489820] NET: Registered PF_PACKET protocol family [ 70.214959] udevd[647]: invalid key/value pair in file /etc/udev/rules.d/70-persistent-net.rules on line 3, starting at character 1 ('-') [ 71.733562] udevd[647]: invalid key/value pair in file /etc/udev/rules.d/70-persistent-net.rules on line 3, starting at character 1 ('-') [ 74.617040] md: unRAID driver 2.9.27 installed [ 75.444177] mdcmd (1): import 0 [ 75.444183] md: import_slot: 0 empty [ 75.444478] mdcmd (2): import 1 sdb 64 5860522532 0 WDC_WD6003FFBX-68MU3N0_V8GH7YDR [ 75.444484] md: import disk1: (sdb) WDC_WD6003FFBX-68MU3N0_V8GH7YDR size: 5860522532 [ 75.444498] mdcmd (3): import 2 [ 75.444509] mdcmd (4): import 3 [ 75.444520] mdcmd (5): import 4 [ 75.444619] mdcmd (6): import 5 [ 75.444627] mdcmd (7): import 6 [ 75.444634] mdcmd (8): import 7 [ 75.444641] mdcmd (9): import 8 [ 75.444648] mdcmd (10): import 9 [ 75.444655] mdcmd (11): import 10 [ 75.444661] mdcmd (12): import 11 [ 75.444667] mdcmd (13): import 12 [ 75.444674] mdcmd (14): import 13 [ 75.444680] mdcmd (15): import 14 [ 75.444686] mdcmd (16): import 15 [ 75.444692] mdcmd (17): import 16 [ 75.444698] mdcmd (18): import 17 [ 75.444704] mdcmd (19): import 18 [ 75.444710] mdcmd (20): import 19 [ 75.444716] mdcmd (21): import 20 [ 75.444723] mdcmd (22): import 21 [ 75.444729] mdcmd (23): import 22 [ 75.444736] mdcmd (24): import 23 [ 75.444743] mdcmd (25): import 24 [ 75.444750] mdcmd (26): import 25 [ 75.444757] mdcmd (27): import 26 [ 75.444764] mdcmd (28): import 27 [ 75.444772] mdcmd (29): import 28 [ 75.444778] mdcmd (30): import 29 [ 75.444779] md: import_slot: 29 empty [ 134.519847] SGI XFS with ACLs, security attributes, no debug enabled [ 134.521711] XFS (nvme0n1p1): Offline file system operation in progress! [ 218.285151] XFS (nvme0n1p1): Offline file system operation in progress! root@Tower:~#
  7. I just tried btrfs and xfs. Also there the system is crashing.
  8. root@Tower:~# tail -f /var/log/syslog Feb 20 07:26:11 Tower avahi-daemon[13257]: Service "Tower-2" (/services/ssh.service) successfully established. Feb 20 07:26:11 Tower avahi-daemon[13257]: Service "Tower-2" (/services/smb.service) successfully established. Feb 20 07:26:11 Tower avahi-daemon[13257]: Service "Tower-2" (/services/sftp-ssh.service) successfully established. Feb 20 07:27:11 Tower sshd[15585]: Connection from 10.25.10.59 port 54500 on 10.25.10.122 port 22 rdomain "" Feb 20 07:27:11 Tower sshd[15585]: Postponed keyboard-interactive for root from 10.25.10.59 port 54500 ssh2 [preauth] Feb 20 07:27:13 Tower sshd[15585]: Postponed keyboard-interactive/pam for root from 10.25.10.59 port 54500 ssh2 [preauth] Feb 20 07:27:13 Tower sshd[15585]: Accepted keyboard-interactive/pam for root from 10.25.10.59 port 54500 ssh2 Feb 20 07:27:13 Tower sshd[15585]: pam_unix(sshd:session): session opened for user root(uid=0) by (uid=0) Feb 20 07:27:13 Tower elogind-daemon[1177]: New session c1 of user root. Feb 20 07:27:13 Tower sshd[15585]: Starting session: shell on pts/0 for root from 10.25.10.59 port 54500 id 0 Feb 20 07:28:10 Tower kernel: mdcmd (40): nocheck pause Feb 20 07:28:12 Tower emhttpd: creating volume: zfs_pool_one (zfs) Feb 20 07:28:12 Tower emhttpd: shcmd (245): /sbin/wipefs -af /dev/nvme0n1p1 Feb 20 07:28:12 Tower root: /dev/nvme0n1p1: 8 bytes were erased at offset 0x00010040 (btrfs): 5f 42 48 52 66 53 5f 4d Feb 20 07:28:12 Tower emhttpd: shcmd (246): /sbin/blkdiscard /dev/nvme0n1p1 Feb 20 07:28:12 Tower emhttpd: shcmd (247): /usr/sbin/zpool create -f -o ashift=12 -o autotrim=on -O compression=on -O dnodesize=auto -O acltype=posixacl -O xattr=sa -O normalization=formD -m /mnt/zfs_pool_one zfs_pool_one /dev/nvme0n1p1 Feb 20 07:28:12 Tower kernel: general protection fault, probably for non-canonical address 0x29003c40298034: 0000 [#1] PREEMPT SMP NOPTI Feb 20 07:28:12 Tower kernel: CPU: 3 PID: 17297 Comm: plugin Tainted: P O 6.1.74-Unraid #1 Feb 20 07:28:12 Tower kernel: Hardware name: Default string Default string/Default string, BIOS 5.27 12/18/2023 Feb 20 07:28:12 Tower kernel: RIP: 0010:atime_needs_update+0xe/0xf7 Feb 20 07:28:12 Tower kernel: Code: 74 13 48 39 dd 74 0e 48 8d bb 98 00 00 00 5b 5d e9 03 15 62 00 5b 5d c3 cc cc cc cc 0f 1f 44 00 00 55 48 89 e5 41 55 41 54 53 <f6> 46 0c 02 4c 8b 27 74 07 31 c9 e9 cc 00 00 00 4d 8b 6c 24 18 48 Feb 20 07:28:12 Tower kernel: RSP: 0018:ffffc90009c2fd80 EFLAGS: 00010246 Feb 20 07:28:12 Tower kernel: RAX: ffff888105600600 RBX: 0029003c40298028 RCX: ffffc90009c2fe60 Feb 20 07:28:12 Tower kernel: RDX: 0000000000000001 RSI: 0029003c40298028 RDI: ffff888157aa5410 Feb 20 07:28:12 Tower kernel: RBP: ffffc90009c2fd98 R08: ffff888144147d01 R09: ffffc90009c2fcd8 Feb 20 07:28:12 Tower kernel: R10: 0000000000000402 R11: ffffc90009c2fcd8 R12: 0000000000000000 Feb 20 07:28:12 Tower kernel: R13: ffff88810031c160 R14: ffffc90009c2fe88 R15: ffff888147f42a20 Feb 20 07:28:12 Tower kernel: FS: 00001504a6ffc640(0000) GS:ffff88885fb80000(0000) knlGS:0000000000000000 Feb 20 07:28:12 Tower kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 Feb 20 07:28:12 Tower kernel: CR2: 00000000018a3000 CR3: 0000000157952000 CR4: 0000000000750ee0 Feb 20 07:28:12 Tower kernel: PKRU: 55555554 Feb 20 07:28:12 Tower kernel: Call Trace: Feb 20 07:28:12 Tower kernel: <TASK> Feb 20 07:28:12 Tower kernel: ? __die_body+0x1a/0x5c Feb 20 07:28:12 Tower kernel: ? die_addr+0x38/0x51 Feb 20 07:28:12 Tower kernel: ? exc_general_protection+0x30f/0x345 Feb 20 07:28:12 Tower kernel: ? asm_exc_general_protection+0x22/0x30 Feb 20 07:28:12 Tower kernel: ? atime_needs_update+0xe/0xf7 Feb 20 07:28:12 Tower kernel: touch_atime+0x35/0x169 Feb 20 07:28:12 Tower kernel: shmem_file_read_iter+0x243/0x276 Feb 20 07:28:12 Tower kernel: vfs_read+0x102/0x19f Feb 20 07:28:12 Tower kernel: ksys_read+0x76/0xc2 Feb 20 07:28:12 Tower kernel: do_syscall_64+0x68/0x81 Feb 20 07:28:12 Tower kernel: entry_SYSCALL_64_after_hwframe+0x64/0xce Feb 20 07:28:12 Tower kernel: RIP: 0033:0x1504aa0dcafd Feb 20 07:28:12 Tower kernel: Code: 31 c0 e9 e6 fe ff ff 50 48 8d 3d 36 a1 0a 00 e8 49 15 02 00 66 0f 1f 84 00 00 00 00 00 80 3d e1 ca 0e 00 00 74 17 31 c0 0f 05 <48> 3d 00 f0 ff ff 77 5b c3 66 2e 0f 1f 84 00 00 00 00 00 48 83 ec Feb 20 07:28:12 Tower kernel: RSP: 002b:00007ffe44901268 EFLAGS: 00000246 ORIG_RAX: 0000000000000000 Feb 20 07:28:12 Tower kernel: RAX: ffffffffffffffda RBX: 00001504a6c78380 RCX: 00001504aa0dcafd Feb 20 07:28:12 Tower kernel: RDX: 0000000000002000 RSI: 00001504a6cda000 RDI: 000000000000000a Feb 20 07:28:12 Tower kernel: RBP: 00000000000000c0 R08: 0000000000000000 R09: 0000000000002000 Feb 20 07:28:12 Tower kernel: R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000002000 Feb 20 07:28:12 Tower kernel: R13: 00001504a6cda000 R14: 00001504a6c773c0 R15: 00001504aaad16a0 Feb 20 07:28:12 Tower kernel: </TASK> Feb 20 07:28:12 Tower kernel: Modules linked in: xfs md_mod tcp_diag inet_diag ip6table_filter ip6_tables iptable_filter ip_tables x_tables efivarfs af_packet 8021q garp mrp bridge stp llc bonding tls igc zfs(PO) zunicode(PO) zzstd(O) zlua(O) zavl(PO) icp(PO) intel_rapl_msr intel_rapl_common x86_pkg_temp_thermal intel_powerclamp coretemp zcommon(PO) kvm_intel i915 znvpair(PO) kvm spl(O) crct10dif_pclmul crc32_pclmul crc32c_intel ghash_clmulni_intel sha512_ssse3 sha256_ssse3 sha1_ssse3 aesni_intel iosf_mbi drm_buddy i2c_algo_bit ttm crypto_simd drm_display_helper cryptd drm_kms_helper rapl mei_hdcp mei_pxp wmi_bmof intel_cstate intel_uncore drm i2c_i801 nvme i2c_smbus mei_me intel_gtt mei video agpgart ahci nvme_core i2c_core libahci syscopyarea tpm_crb sysfillrect input_leds tpm_tis sysimgblt led_class fb_sys_fops tpm_tis_core wmi thermal fan tpm backlight intel_pmc_core acpi_pad acpi_tad button unix [last unloaded: igc] Feb 20 07:28:12 Tower kernel: general protection fault, probably for non-canonical address 0xe221033c32218221: 0000 [#2] PREEMPT SMP NOPTI Feb 20 07:28:12 Tower kernel: ---[ end trace 0000000000000000 ]--- Feb 20 07:28:12 Tower kernel: CPU: 2 PID: 17302 Comm: sh Tainted: P D O 6.1.74-Unraid #1 Feb 20 07:28:12 Tower kernel: Hardware name: Default string Default string/Default string, BIOS 5.27 12/18/2023 Feb 20 07:28:12 Tower kernel: RIP: 0010:try_module_get+0x1c/0x73 Feb 20 07:28:12 Tower kernel: Code: 44 00 00 5b c3 cc cc cc cc c3 cc cc cc cc 0f 1f 44 00 00 48 85 ff 55 40 b5 01 53 74 5b 48 89 fb bf 01 00 00 00 e8 c4 4c fb ff <83> 3b 02 75 04 31 ed eb 2b 8b 83 38 03 00 00 85 c0 74 f2 8d 50 01 Feb 20 07:28:12 Tower kernel: RSP: 0018:ffffc90009c47ea8 EFLAGS: 00010246 Feb 20 07:28:12 Tower kernel: RAX: ffff888101168000 RBX: e221033c32218221 RCX: 0000000000000000 Feb 20 07:28:12 Tower kernel: RDX: ffff888101168000 RSI: 0000000000000001 RDI: ffffffff810e165e Feb 20 07:28:12 Tower kernel: RBP: ffffffffa0207001 R08: 0000000000000000 R09: 0000000000000000 Feb 20 07:28:12 Tower kernel: R10: 0000000000000000 R11: 0000000000000000 R12: ffffc90009c47f08 Feb 20 07:28:12 Tower kernel: R13: 00000000ffffffea R14: 0000000000000000 R15: 0000000000000000 Feb 20 07:28:12 Tower kernel: FS: 00001532aafa5740(0000) GS:ffff88885fb00000(0000) knlGS:0000000000000000 Feb 20 07:28:12 Tower kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 Feb 20 07:28:12 Tower kernel: CR2: 00001532aaffa840 CR3: 00000001581e4000 CR4: 0000000000750ee0 Feb 20 07:28:12 Tower kernel: PKRU: 55555554 Feb 20 07:28:12 Tower kernel: Call Trace: Feb 20 07:28:12 Tower kernel: <TASK> Feb 20 07:28:12 Tower kernel: ? __die_body+0x1a/0x5c Feb 20 07:28:12 Tower kernel: ? die_addr+0x38/0x51 Feb 20 07:28:12 Tower kernel: ? exc_general_protection+0x30f/0x345 Feb 20 07:28:12 Tower kernel: ? asm_exc_general_protection+0x22/0x30 Feb 20 07:28:12 Tower kernel: ? try_module_get+0x1c/0x73 Feb 20 07:28:12 Tower kernel: ? try_module_get+0x1c/0x73 Feb 20 07:28:12 Tower kernel: ? try_module_get+0x1c/0x73 Feb 20 07:28:12 Tower kernel: __sock_create+0xf4/0x185 Feb 20 07:28:12 Tower kernel: __sys_socket+0x3a/0xbe Feb 20 07:28:12 Tower kernel: __x64_sys_socket+0x13/0x1a Feb 20 07:28:12 Tower kernel: do_syscall_64+0x68/0x81 Feb 20 07:28:12 Tower kernel: entry_SYSCALL_64_after_hwframe+0x64/0xce Feb 20 07:28:12 Tower kernel: RIP: 0033:0x1532ab0bede7 Feb 20 07:28:12 Tower kernel: Code: 73 01 c3 48 8b 0d 31 10 0d 00 f7 d8 64 89 01 48 83 c8 ff c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 b8 29 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 01 10 0d 00 f7 d8 64 89 01 48 Feb 20 07:28:12 Tower kernel: RSP: 002b:00007ffcee8f4b38 EFLAGS: 00000202 ORIG_RAX: 0000000000000029 Feb 20 07:28:12 Tower kernel: RAX: ffffffffffffffda RBX: 000000000000000b RCX: 00001532ab0bede7 Feb 20 07:28:12 Tower kernel: RDX: 0000000000000000 RSI: 0000000000080801 RDI: 0000000000000001 Feb 20 07:28:12 Tower kernel: RBP: 00007ffcee8f4c10 R08: 0000000000548010 R09: 0000000000000400 Feb 20 07:28:12 Tower kernel: R10: 000000000053bef0 R11: 0000000000000202 R12: ffffffffffffff88 Feb 20 07:28:12 Tower kernel: R13: 0000000000000006 R14: 0000000000000007 R15: 000000000000000b Feb 20 07:28:12 Tower kernel: </TASK> Feb 20 07:28:12 Tower kernel: Modules linked in: xfs md_mod tcp_diag inet_diag ip6table_filter ip6_tables iptable_filter ip_tables x_tables efivarfs af_packet 8021q garp mrp bridge stp llc bonding tls igc zfs(PO) zunicode(PO) zzstd(O) zlua(O) zavl(PO) icp(PO) intel_rapl_msr intel_rapl_common x86_pkg_temp_thermal intel_powerclamp coretemp zcommon(PO) kvm_intel i915 znvpair(PO) kvm spl(O) crct10dif_pclmul crc32_pclmul crc32c_intel ghash_clmulni_intel sha512_ssse3 sha256_ssse3 sha1_ssse3 aesni_intel iosf_mbi drm_buddy i2c_algo_bit ttm crypto_simd drm_display_helper cryptd drm_kms_helper rapl mei_hdcp mei_pxp wmi_bmof intel_cstate intel_uncore drm i2c_i801 nvme i2c_smbus mei_me intel_gtt mei video agpgart ahci nvme_core i2c_core libahci syscopyarea tpm_crb sysfillrect input_leds tpm_tis sysimgblt led_class fb_sys_fops tpm_tis_core wmi thermal fan tpm backlight intel_pmc_core acpi_pad acpi_tad button unix [last unloaded: igc] Feb 20 07:28:12 Tower kernel: general protection fault, probably for non-canonical address 0x800d000b000d801f: 0000 [#3] PREEMPT SMP NOPTI Feb 20 07:28:12 Tower kernel: ---[ end trace 0000000000000000 ]--- Feb 20 07:28:12 Tower kernel: CPU: 0 PID: 17303 Comm: udevd Tainted: P D O 6.1.74-Unraid #1 Feb 20 07:28:12 Tower kernel: Hardware name: Default string Default string/Default string, BIOS 5.27 12/18/2023 Feb 20 07:28:12 Tower kernel: RIP: 0010:inode_permission+0x7d/0x131 Feb 20 07:28:12 Tower kernel: Code: 00 00 00 f6 43 0c 08 0f 85 c1 00 00 00 48 89 de 4c 89 ef e8 57 ef ff ff 84 c0 74 b3 b8 f3 ff ff ff e9 ab 00 00 00 48 8b 43 20 <48> 8b 40 10 48 85 c0 74 0f 89 ea 48 89 de 4c 89 ef ff d0 0f 1f 00 Feb 20 07:28:12 Tower kernel: RIP: 0010:atime_needs_update+0xe/0xf7 Feb 20 07:28:12 Tower kernel: RSP: 0018:ffffc90009c4fc20 EFLAGS: 00010246 Feb 20 07:28:12 Tower kernel: Code: 74 13 48 39 dd 74 0e 48 8d bb 98 00 00 00 5b 5d e9 03 15 62 00 5b 5d c3 cc cc cc cc 0f 1f 44 00 00 55 48 89 e5 41 55 41 54 53 <f6> 46 0c 02 4c 8b 27 74 07 31 c9 e9 cc 00 00 00 4d 8b 6c 24 18 48 Feb 20 07:28:12 Tower kernel: RAX: 800d000b000d800f RBX: ffff888105800de0 RCX: 0000000000008020 Feb 20 07:28:12 Tower kernel: RDX: 800d8004000d0001 RSI: ffff888105800de0 RDI: ffffffff8223ea20 Feb 20 07:28:12 Tower kernel: RBP: 0000000000000021 R08: 0000000000000000 R09: 0064695f76656476 Feb 20 07:28:12 Tower kernel: RSP: 0018:ffffc90009c2fd80 EFLAGS: 00010246 Feb 20 07:28:12 Tower kernel: R10: 0000000000000000 R11: fefefefefefefeff R12: 0000000000000000 Feb 20 07:28:12 Tower kernel: Feb 20 07:28:12 Tower kernel: R13: ffffffff8223ea20 R14: 0000000000000000 R15: 0000000000000000 Feb 20 07:28:12 Tower kernel: RAX: ffff888105600600 RBX: 0029003c40298028 RCX: ffffc90009c2fe60 Feb 20 07:28:12 Tower kernel: FS: 000014fb1aa48240(0000) GS:ffff88885fa00000(0000) knlGS:0000000000000000 Feb 20 07:28:12 Tower kernel: RDX: 0000000000000001 RSI: 0029003c40298028 RDI: ffff888157aa5410 Feb 20 07:28:12 Tower kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 Feb 20 07:28:12 Tower kernel: CR2: 0000000000448348 CR3: 00000001556b0000 CR4: 0000000000750ef0 Feb 20 07:28:12 Tower kernel: RBP: ffffc90009c2fd98 R08: ffff888144147d01 R09: ffffc90009c2fcd8 Feb 20 07:28:12 Tower kernel: PKRU: 55555554 Feb 20 07:28:12 Tower kernel: Call Trace: Feb 20 07:28:12 Tower kernel: <TASK> Feb 20 07:28:12 Tower kernel: R10: 0000000000000402 R11: ffffc90009c2fcd8 R12: 0000000000000000 Feb 20 07:28:12 Tower kernel: ? __die_body+0x1a/0x5c Feb 20 07:28:12 Tower kernel: R13: ffff88810031c160 R14: ffffc90009c2fe88 R15: ffff888147f42a20 Feb 20 07:28:12 Tower kernel: ? die_addr+0x38/0x51 Feb 20 07:28:12 Tower kernel: FS: 00001504a6ffc640(0000) GS:ffff88885fb80000(0000) knlGS:0000000000000000 Feb 20 07:28:12 Tower kernel: ? exc_general_protection+0x30f/0x345 Feb 20 07:28:12 Tower kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 Feb 20 07:28:12 Tower kernel: ? asm_exc_general_protection+0x22/0x30 Feb 20 07:28:12 Tower kernel: CR2: 00000000018a3000 CR3: 0000000157952000 CR4: 0000000000750ee0 Feb 20 07:28:12 Tower kernel: ? inode_permission+0x7d/0x131 Feb 20 07:28:12 Tower kernel: PKRU: 55555554 Feb 20 07:28:12 Tower kernel: may_open+0xbf/0x105 Feb 20 07:28:12 Tower kernel: path_openat+0x8c1/0xa4d Feb 20 07:28:12 Tower kernel: ? pte_pfn+0x11/0x31 Feb 20 07:28:12 Tower kernel: ? vm_normal_page+0x1b/0x9b Feb 20 07:28:12 Tower kernel: ? folio_mark_accessed+0xf/0x135 Feb 20 07:28:12 Tower kernel: do_filp_open+0x55/0xb8 Feb 20 07:28:12 Tower kernel: ? slab_post_alloc_hook+0x4d/0x15e Feb 20 07:28:12 Tower kernel: do_open_execat+0x6d/0x100 Feb 20 07:28:12 Tower kernel: bprm_execve+0x140/0x52b Feb 20 07:28:12 Tower kernel: do_execveat_common.isra.0+0x1a6/0x1cf Feb 20 07:28:12 Tower kernel: __x64_sys_execve+0x38/0x44 Feb 20 07:28:12 Tower kernel: do_syscall_64+0x68/0x81 Feb 20 07:28:12 Tower kernel: entry_SYSCALL_64_after_hwframe+0x64/0xce Feb 20 07:28:12 Tower kernel: RIP: 0033:0x14fb1af20a87 Feb 20 07:28:12 Tower kernel: Code: 48 8d 3d fc 3f 11 00 5b 5d 41 5c 41 5d 41 5e 41 5f e9 0d bd fa ff 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 00 b8 3b 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 61 c3 10 00 f7 d8 64 89 01 48 Feb 20 07:28:12 Tower kernel: RIP: 0010:atime_needs_update+0xe/0xf7 Feb 20 07:28:12 Tower kernel: RSP: 002b:00007ffe089763a8 EFLAGS: 00000202 ORIG_RAX: 000000000000003b Feb 20 07:28:12 Tower kernel: Code: 74 13 48 39 dd 74 0e 48 8d bb 98 00 00 00 5b 5d e9 03 15 62 00 5b 5d c3 cc cc cc cc 0f 1f 44 00 00 55 48 89 e5 41 55 41 54 53 <f6> 46 0c 02 4c 8b 27 74 07 31 c9 e9 cc 00 00 00 4d 8b 6c 24 18 48 Feb 20 07:28:12 Tower kernel: RAX: ffffffffffffffda RBX: 0000000000000009 RCX: 000014fb1af20a87 Feb 20 07:28:12 Tower kernel: RSP: 0018:ffffc90009c2fd80 EFLAGS: 00010246 Feb 20 07:28:12 Tower kernel: RDX: 000000000049d3d0 RSI: 00007ffe08976870 RDI: 00007ffe08976470 Feb 20 07:28:12 Tower kernel: Feb 20 07:28:12 Tower kernel: RBP: 00000000ffffffff R08: 0000000000000001 R09: 000014fb1aa48240 Feb 20 07:28:12 Tower kernel: RAX: ffff888105600600 RBX: 0029003c40298028 RCX: ffffc90009c2fe60 Feb 20 07:28:12 Tower kernel: R10: 000014fb1ae52b20 R11: 0000000000000202 R12: 0000000000000007 Feb 20 07:28:12 Tower kernel: RDX: 0000000000000001 RSI: 0029003c40298028 RDI: ffff888157aa5410 Feb 20 07:28:12 Tower kernel: R13: 0000000000448760 R14: 00007ffe08976870 R15: 000000000049d3d0 Feb 20 07:28:12 Tower kernel: </TASK> Feb 20 07:28:12 Tower kernel: RBP: ffffc90009c2fd98 R08: ffff888144147d01 R09: ffffc90009c2fcd8 Feb 20 07:28:12 Tower kernel: Modules linked in: Feb 20 07:28:12 Tower kernel: R10: 0000000000000402 R11: ffffc90009c2fcd8 R12: 0000000000000000 Feb 20 07:28:12 Tower kernel: xfs Feb 20 07:28:12 Tower kernel: R13: ffff88810031c160 R14: ffffc90009c2fe88 R15: ffff888147f42a20 Feb 20 07:28:12 Tower kernel: md_mod Feb 20 07:28:12 Tower kernel: FS: 00001532aafa5740(0000) GS:ffff88885fb00000(0000) knlGS:0000000000000000 Feb 20 07:28:12 Tower kernel: tcp_diag inet_diag ip6table_filter Feb 20 07:28:12 Tower kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 Feb 20 07:28:12 Tower kernel: ip6_tables iptable_filter ip_tables x_tables Feb 20 07:28:12 Tower kernel: CR2: 00001532aaffa840 CR3: 00000001581e4000 CR4: 0000000000750ee0 Feb 20 07:28:12 Tower kernel: efivarfs Feb 20 07:28:12 Tower kernel: PKRU: 55555554 Feb 20 07:28:12 Tower kernel: af_packet Feb 20 07:28:12 Tower kernel: note: sh[17302] exited with preempt_count 1 Here is the log output.
  9. You erased disk1, was that intentional? = YES I already tried it with different nvme's same behavior. Could I run some cli program an record the screen, that could help debugging this?
  10. Here is what I did this time: 1. Booted in Safe Mode --> Started Maintenance Mode --> Erase the disks. 2. Started the Array --> Formatted the disk. 3. The server became unresponsive / I can't even ping it anymore. 4. Performed an AC Power Reset --> Booted in Safe Mode. 5. Downloaded Diagnostics. 6. Posted here. Thank you very much for providing your help! tower-diagnostics-20240220-1408.zip
  11. Should be in the diagnostics again or do I need to grab that file separately? tower-diagnostics-20240220-1143.zip
  12. Hi guys, I just set up my new server, but every time I try to format the ZFS pool, I get a system freeze. Any ideas? This is the board I'm using: CWWK-N100-I3-N305 six-bay NAS board Model:Custom M/B:Default string Default string Version Default string s/n Default string BIOS:American Megatrends International, LLC. Version 5.27 Dated 12/18/2023 CPU:Intel® N100 @ 2871 MHz HVM:Enabled IOMMU:Enabled Cache:L1 Cache: 128 KiB, L1 Cache: 256 KiB, L2 Cache: 2 MiB, L3 Cache: 6 MiB Memory:32 GiB DDR5 (max. installable capacity 64 GiB) Network:bond0: fault-tolerance (active-backup), mtu 1500 Kernel:Linux 6.1.74-Unraid x86_64 OpenSSL:1.1.1v Uptime: tower-diagnostics-20240220-0911.zip
  13. You could have limited the ZFS Memory use? How was L2Arc working in combination with the arraydisks?
  14. Are you still running this setup? Can this replace using a cache pool? I would appreciate hearing about the experience you had adding L2ARC to a ZFS array disk.