intel e810 ovs + vf representors not working after kernel 6.8.4-3 -> 6.8.8-2 upgrade

ioo

Renowned Member
Oct 1, 2011
23
0
66
Hi!

I must first say i am no seasoned network card virtual functions user but generally feel virtual-functions-and-co would be important thing tomorrow so for no very particular reason i try them out in different combinations. As staring point i had working setup like this with pve v. 8.2 using kernel 6.8.4-3

1. instead having openvswitch-switch i have openvswitch-switch-dpdk (althought i believe my current situation is not related to it since i am not dealing with dpdk flavors)
2. i have such setup script what i apply where network card and ovs is in so to say un-initialized state

Code:
# cat vf-setup.sh
ovs-vsctl add-br vmbr0
devlink dev eswitch set pci/0000:81:00.0 mode switchdev
echo 2 > /sys/class/net/enp129s0f0np0/device/sriov_numvfs
sleep 2
ip link set enp129s0f0np0 vf 0 mac 2e:38:4d:3d:61:ed
ip link set enp129s0f0np0 vf 1 mac 2e:38:4d:3d:61:ee

ethtool -K eth0 hw-tc-offload on
ethtool -K eth1 hw-tc-offload on

ovs-vsctl set Open_vSwitch . other_config:hw-offload=true
ovs-vsctl set Open_vSwitch . other_config:tc-policy=skip_sw
systemctl restart openvswitch-switch

ovs-vsctl add-port vmbr0 eth0
ovs-vsctl add-port vmbr0 eth1
ip link set eth0 up
ip link set eth1 up

ovs-vsctl add-port vmbr0 enp129s0f0np0
ip link set enp129s0f0np0 up
ethtool -K enp129s0f0np0 hw-tc-offload on

ovs-vsctl add-port vmbr0 inter -- set interface inter type=internal

ifconfig enp129s0f1np1 0

ifconfig inter 10.40.134.18/29
route add default gw 10.40.134.17

ovs-vsctl set port eth0 tag=3564
ovs-vsctl set port eth1 tag=3564

i have /etc/network/interface more-or-less empty only temporarily is enp129s0f1np1 configured, and i remove this with 'ifconfig enp129s0f1np1 0'

Then i have such pve kvm virtual machine conf

Code:
agent: 1
bios: ovmf
boot: order=virtio0;ide2;net0
cores: 8
cpu: host
efidisk0: local-to-valgustaja-1-lvm-over-mdadm:vm-1102-disk-0,efitype=4m,pre-enrolled-keys=1,size=4M
ide2: none,media=cdrom
machine: q35
memory: 8192
meta: creation-qemu=9.0.0,ctime=1720472955
name: imre-ubuntu-2404-01
ostype: l26
rng0: source=/dev/urandom
scsihw: virtio-scsi-single
serial0: socket
smbios1: uuid=eff2a3c6-e3e6-4ccf-889b-33babc49c3fc
sockets: 1
tpmstate0: local-to-valgustaja-1-lvm-over-mdadm:vm-1102-disk-1,size=4M,version=v2.0
vga: virtio
virtio0: local-to-valgustaja-1-lvm-over-mdadm:vm-1102-disk-2,backup=0,iothread=1,size=20G
vmgenid: ec8bc8c2-1279-43d2-bfca-9d7b9081c97f
hostpci0: 0000:81:01.0,pcie=1,rombar=0

And this setup works well for me (not ideally performance wise but logically well), for example ovs-vsctl looks like

Code:
# ovs-vsctl show
050044f7-ae08-434f-8649-983de8e5ed3d
    Bridge vmbr0
        Port enp129s0f0np0
            Interface enp129s0f0np0
        Port inter
            Interface inter
                type: internal
        Port eth0
            tag: 3564
            Interface eth0
        Port vmbr0
            Interface vmbr0
                type: internal
        Port eth1
            tag: 3564
            Interface eth1
    ovs_version: "3.1.0"

where eth0 and eth1 are so to say representors, and also

Code:
# devlink dev eswitch show pci/0000:81:00.0
pci/0000:81:00.0: mode switchdev

# driverctl list-devices network
0000:81:00.0 ice
0000:81:00.1 ice
0000:81:01.0 vfio-pci
0000:81:01.1 iavf

After software upgrade within pve v. 8.2 i moved from kernel 6.8.4 to 6.8.8-2 and when virtual computer starts up and especially arrives to configuring network then pve host gives

Code:
2024-07-15T12:18:49.261183+03:00 valgustaja1 qm[3923]: start VM 1102: UPID:valgustaja1:00000F53:0000582D:6694E979:qmstart:1102:root@pam:
...
2024-07-15T12:18:49.363026+03:00 valgustaja1 kernel: [  225.838639] iavf 0000:81:01.0: Removing device
2024-07-15T12:18:49.951211+03:00 valgustaja1 systemd[1]: Created slice qemu.slice - Slice /qemu.
2024-07-15T12:18:49.957030+03:00 valgustaja1 systemd[1]: Started 1102.scope.
2024-07-15T12:18:50.475063+03:00 valgustaja1 kernel: [  226.951037] vfio-pci 0000:81:01.0: enabling device (0000 -> 0002)
2024-07-15T12:18:50.769838+03:00 valgustaja1 qm[3920]: <root@pam> end task UPID:valgustaja1:00000F53:0000582D:6694E979:qmstart:1102:root@pam: OK
2024-07-15T12:18:52.216805+03:00 valgustaja1 pvedaemon[3999]: starting vnc proxy UPID:valgustaja1:00000F9F:00005954:6694E97C:vncproxy:1102:root@pam:
2024-07-15T12:18:52.217078+03:00 valgustaja1 pvedaemon[2665]: <root@pam> starting task UPID:valgustaja1:00000F9F:00005954:6694E97C:vncproxy:1102:root@pam:
2024-07-15T12:19:34.456984+03:00 valgustaja1 kernel: [  270.755914] BUG: kernel NULL pointer dereference, address: 000000000000003f
2024-07-15T12:19:34.456998+03:00 valgustaja1 kernel: [  270.756271] #PF: supervisor read access in kernel mode
2024-07-15T12:19:34.456999+03:00 valgustaja1 kernel: [  270.756554] #PF: error_code(0x0000) - not-present page
2024-07-15T12:19:34.457000+03:00 valgustaja1 kernel: [  270.756831] PGD 355f71067 P4D 0
2024-07-15T12:19:34.457000+03:00 valgustaja1 kernel: [  270.757101] Oops: 0000 [#1] PREEMPT SMP NOPTI
2024-07-15T12:19:34.457001+03:00 valgustaja1 kernel: [  270.757365] CPU: 31 PID: 491 Comm: kworker/31:1 Tainted: P           O       6.8.8-2-pve #1
2024-07-15T12:19:34.457001+03:00 valgustaja1 kernel: [  270.757628] Hardware name: Supermicro AS -1115CS-TNR/H13SSW, BIOS 1.6 10/05/2023
2024-07-15T12:19:34.457001+03:00 valgustaja1 kernel: [  270.757888] Workqueue: ice ice_service_task [ice]
2024-07-15T12:19:34.457002+03:00 valgustaja1 kernel: [  270.758170] RIP: 0010:ice_lag_move_new_vf_nodes+0x82/0x1c0 [ice]
2024-07-15T12:19:34.457002+03:00 valgustaja1 kernel: [  270.758452] Code: 68 01 49 89 c4 0f 85 49 01 00 00 4d 8b 75 28 49 8d 86 e8 0a 00 00 4d 8b ae a0 47 00 00 48 89 c7 48 89 44 24 08 e8 1e 46 ba e8 <41> f6 45 3f 01 0f 84 e1 00 00 00 49 83 7d 10 00 45 0f b6 7d 3e 48
2024-07-15T12:19:34.457003+03:00 valgustaja1 kernel: [  270.758987] RSP: 0018:ff4352c94227fbc0 EFLAGS: 00010246
2024-07-15T12:19:34.457003+03:00 valgustaja1 kernel: [  270.759252] RAX: 0000000000000000 RBX: 00000000ffffffff RCX: 0000000000000000
2024-07-15T12:19:34.457004+03:00 valgustaja1 kernel: [  270.759515] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
2024-07-15T12:19:34.457004+03:00 valgustaja1 kernel: [  270.759773] RBP: ff4352c94227fc18 R08: 0000000000000000 R09: 0000000000000000
2024-07-15T12:19:34.457004+03:00 valgustaja1 kernel: [  270.760033] R10: 0000000000000000 R11: 0000000000000000 R12: ff3cd473d2593028
2024-07-15T12:19:34.457005+03:00 valgustaja1 kernel: [  270.760296] R13: 0000000000000000 R14: ff3cd471ba8581a0 R15: 0000000000000000
2024-07-15T12:19:34.457005+03:00 valgustaja1 kernel: [  270.760561] FS:  0000000000000000(0000) GS:ff3cd4a00c980000(0000) knlGS:0000000000000000
2024-07-15T12:19:34.457005+03:00 valgustaja1 kernel: [  270.760828] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
2024-07-15T12:19:34.457005+03:00 valgustaja1 kernel: [  270.761093] CR2: 000000000000003f CR3: 0000000346806002 CR4: 0000000000f71ef0
2024-07-15T12:19:34.457006+03:00 valgustaja1 kernel: [  270.761364] PKRU: 55555554
2024-07-15T12:19:34.457006+03:00 valgustaja1 kernel: [  270.761630] Call Trace:
2024-07-15T12:19:34.457007+03:00 valgustaja1 kernel: [  270.761898]  <TASK>
2024-07-15T12:19:34.457007+03:00 valgustaja1 kernel: [  270.762162]  ? show_regs+0x6d/0x80
2024-07-15T12:19:34.457007+03:00 valgustaja1 kernel: [  270.762429]  ? __die+0x24/0x80
2024-07-15T12:19:34.457008+03:00 valgustaja1 kernel: [  270.762690]  ? page_fault_oops+0x176/0x500
2024-07-15T12:19:34.457008+03:00 valgustaja1 kernel: [  270.762950]  ? srso_alias_return_thunk+0x5/0xfbef5
2024-07-15T12:19:34.457008+03:00 valgustaja1 kernel: [  270.763214]  ? ice_sched_find_node_by_teid+0x71/0xb0 [ice]
2024-07-15T12:19:34.457009+03:00 valgustaja1 kernel: [  270.763499]  ? do_user_addr_fault+0x2f9/0x6b0
2024-07-15T12:19:34.457009+03:00 valgustaja1 kernel: [  270.763757]  ? exc_page_fault+0x83/0x1b0
2024-07-15T12:19:34.457009+03:00 valgustaja1 kernel: [  270.764014]  ? asm_exc_page_fault+0x27/0x30
2024-07-15T12:19:34.457009+03:00 valgustaja1 kernel: [  270.764266]  ? ice_lag_move_new_vf_nodes+0x82/0x1c0 [ice]
2024-07-15T12:19:34.457009+03:00 valgustaja1 kernel: [  270.764534]  ? srso_alias_return_thunk+0x5/0xfbef5
2024-07-15T12:19:34.457009+03:00 valgustaja1 kernel: [  270.764778]  ice_vc_cfg_qs_msg+0xa3/0x680 [ice]
2024-07-15T12:19:34.457010+03:00 valgustaja1 kernel: [  270.765035]  ? ice_vc_send_msg_to_vf+0x39/0xa0 [ice]
2024-07-15T12:19:34.457010+03:00 valgustaja1 kernel: [  270.765288]  ice_vc_process_vf_msg+0x5b4/0xb60 [ice]
2024-07-15T12:19:34.457010+03:00 valgustaja1 kernel: [  270.765539]  __ice_clean_ctrlq+0x2e7/0xa90 [ice]
2024-07-15T12:19:34.457011+03:00 valgustaja1 kernel: [  270.765787]  ? srso_alias_return_thunk+0x5/0xfbef5
2024-07-15T12:19:34.457011+03:00 valgustaja1 kernel: [  270.766017]  ice_service_task+0xade/0x10b0 [ice]
2024-07-15T12:19:34.457011+03:00 valgustaja1 kernel: [  270.766256]  ? add_timer+0x20/0x40
2024-07-15T12:19:34.457011+03:00 valgustaja1 kernel: [  270.766473]  ? srso_alias_return_thunk+0x5/0xfbef5
2024-07-15T12:19:34.457011+03:00 valgustaja1 kernel: [  270.766684]  ? srso_alias_return_thunk+0x5/0xfbef5
2024-07-15T12:19:34.457012+03:00 valgustaja1 kernel: [  270.766889]  process_one_work+0x16a/0x350
2024-07-15T12:19:34.457012+03:00 valgustaja1 kernel: [  270.767089]  worker_thread+0x306/0x440
2024-07-15T12:19:34.457012+03:00 valgustaja1 kernel: [  270.767289]  ? __pfx_worker_thread+0x10/0x10
2024-07-15T12:19:34.457012+03:00 valgustaja1 kernel: [  270.767492]  kthread+0xef/0x120
2024-07-15T12:19:34.457012+03:00 valgustaja1 kernel: [  270.767694]  ? __pfx_kthread+0x10/0x10
2024-07-15T12:19:34.457012+03:00 valgustaja1 kernel: [  270.767899]  ret_from_fork+0x44/0x70
2024-07-15T12:19:34.457013+03:00 valgustaja1 kernel: [  270.768101]  ? __pfx_kthread+0x10/0x10
2024-07-15T12:19:34.457013+03:00 valgustaja1 kernel: [  270.768301]  ret_from_fork_asm+0x1b/0x30
2024-07-15T12:19:34.457014+03:00 valgustaja1 kernel: [  270.768502]  </TASK>
2024-07-15T12:19:34.457014+03:00 valgustaja1 kernel: [  270.768697] Modules linked in: tcp_diag inet_diag vfio_pci vfio_pci_core vfio_iommu_type1 vfio iommufd act_vlan act_mirred act_skbedit cls_matchall act_gact cls_flower sch_ingress iavf nfnetlink_cttimeout ebtable_filter ebtables ip_set ip6table_raw iptable_raw ip6table_filter ip6_tables iptable_filter sctp ip6_udp_tunnel udp_tunnel nf_tables bonding tls openvswitch nsh nf_conncount nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 softdog nfnetlink_log binfmt_misc nfnetlink rpcrdma intel_rapl_msr intel_rapl_common sunrpc amd64_edac edac_mce_amd rdma_ucm ib_iser libiscsi scsi_transport_iscsi rdma_cm iw_cm kvm_amd ib_cm ipmi_ssif kvm irqbypass crct10dif_pclmul polyval_clmulni polyval_generic ghash_clmulni_intel sha256_ssse3 sha1_ssse3 aesni_intel crypto_simd cryptd dax_hmem cxl_acpi rapl cxl_core pcspkr irdma i40e ib_uverbs acpi_ipmi ast ib_core i2c_algo_bit ipmi_si k10temp ccp ipmi_devintf ipmi_msghandler joydev input_leds mac_hid vhost_net vhost vhost_iotlb tap efi_pstore dmi_sysfs ip_tables x_tables autofs4
2024-07-15T12:19:34.457016+03:00 valgustaja1 kernel: [  270.768776]  rndis_host cdc_ether usbnet mii hid_generic usbmouse usbhid hid zfs(PO) spl(O) btrfs blake2b_generic raid10 raid1 raid0 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c xhci_pci xhci_pci_renesas crc32_pclmul ice nvme ahci gnss xhci_hcd nvme_core libahci i2c_piix4 nvme_auth
2024-07-15T12:19:34.457016+03:00 valgustaja1 kernel: [  270.771408] CR2: 000000000000003f
2024-07-15T12:19:34.457017+03:00 valgustaja1 kernel: [  270.771646] ---[ end trace 0000000000000000 ]---
2024-07-15T12:19:34.457017+03:00 valgustaja1 kernel: [  270.930129] RIP: 0010:ice_lag_move_new_vf_nodes+0x82/0x1c0 [ice]
2024-07-15T12:19:34.457017+03:00 valgustaja1 kernel: [  270.930457] Code: 68 01 49 89 c4 0f 85 49 01 00 00 4d 8b 75 28 49 8d 86 e8 0a 00 00 4d 8b ae a0 47 00 00 48 89 c7 48 89 44 24 08 e8 1e 46 ba e8 <41> f6 45 3f 01 0f 84 e1 00 00 00 49 83 7d 10 00 45 0f b6 7d 3e 48
2024-07-15T12:19:34.457018+03:00 valgustaja1 kernel: [  270.930950] RSP: 0018:ff4352c94227fbc0 EFLAGS: 00010246
2024-07-15T12:19:34.457018+03:00 valgustaja1 kernel: [  270.931203] RAX: 0000000000000000 RBX: 00000000ffffffff RCX: 0000000000000000
2024-07-15T12:19:34.457019+03:00 valgustaja1 kernel: [  270.931457] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
2024-07-15T12:19:34.457019+03:00 valgustaja1 kernel: [  270.931710] RBP: ff4352c94227fc18 R08: 0000000000000000 R09: 0000000000000000
2024-07-15T12:19:34.457019+03:00 valgustaja1 kernel: [  270.931964] R10: 0000000000000000 R11: 0000000000000000 R12: ff3cd473d2593028
2024-07-15T12:19:34.457020+03:00 valgustaja1 kernel: [  270.932222] R13: 0000000000000000 R14: ff3cd471ba8581a0 R15: 0000000000000000
2024-07-15T12:19:34.457020+03:00 valgustaja1 kernel: [  270.932482] FS:  0000000000000000(0000) GS:ff3cd4a00c980000(0000) knlGS:0000000000000000
2024-07-15T12:19:34.457021+03:00 valgustaja1 kernel: [  270.932743] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
2024-07-15T12:19:34.457021+03:00 valgustaja1 kernel: [  270.933002] CR2: 000000000000003f CR3: 0000000346806002 CR4: 0000000000f71ef0
2024-07-15T12:19:34.457021+03:00 valgustaja1 kernel: [  270.933264] PKRU: 55555554
2024-07-15T12:19:34.457022+03:00 valgustaja1 kernel: [  270.933523] note: kworker/31:1[491] exited with irqs disabled

I believe it is related not to ovs but specificly to using network card virtual functions. Card firmware etc is

Code:
# devlink dev info pci/0000:81:00.0
pci/0000:81:00.0:
  driver ice
  serial_number 00-01-00-ff-ff-00-00-00
  versions:
      fixed:
        board.id K58132-000
      running:
        fw.mgmt 7.2.4
        fw.mgmt.api 1.7.10
        fw.mgmt.build 0xe49dbde8
        fw.undi 1.3346.0
        fw.psid.api 4.20
        fw.bundle_id 0x800177ba
        fw.app.name ICE OS Default Package
        fw.app 1.3.36.0
        fw.app.bundle_id 0xc0000001
        fw.netlist 2.40.5000-2.f.0
        fw.netlist.build 0x85001ebf
      stored:
        fw.undi 1.3346.0
        fw.psid.api 4.20
        fw.bundle_id 0x800177ba
        fw.netlist 2.40.5000-2.f.0
        fw.netlist.build 0x85001ebf

I would appreciate very much if you could comment on this i need to do something differently or maybe just confirm that it is known phenomena and solution is already in works :) (Looking around forum i saw also other posts about 6.8.8-2 kernel giving errors.) https://www.auul.pri.ee/wiki/Intel_...emu_virtuaalse_arvuti_juurde_-_vf_representor has longer version on this topic although in Estonian languge. Mostly i based my setup on https://edc.intel.com/content/www/u...ript-b-switchdev-mode-with-ovs-configuration/ text.


Best regards,

Imre
 
Last edited:
We have also run into similar issues with latest kernel 6.8.8-4-pve and intel E810-XXV NIC. We are not not using OVS but make also use of SR-IOV and VF, and pass those VF to VM's. One result of the issues was that the VF were not properly working inside the VM. We had to switch back to / pin an older kernel version.

Code:
[   53.311357] BUG: kernel NULL pointer dereference, address: 000000000000003f
[   53.311696] #PF: supervisor read access in kernel mode
[   53.312025] #PF: error_code(0x0000) - not-present page
[   53.312354] PGD 0 P4D 0 
[   53.312688] Oops: 0000 [#1] PREEMPT SMP NOPTI
[   53.313022] CPU: 2 PID: 226 Comm: kworker/2:2 Tainted: P           O       6.8.8-4-pve #1
[   53.313363] Hardware name: Dell Inc. OptiPlex 7070/0YNVJG, BIOS 1.22.0 07/03/2023
[   53.313702] Workqueue: ice ice_service_task [ice]
[   53.314074] RIP: 0010:ice_lag_move_new_vf_nodes+0x82/0x1c0 [ice]
[   53.314450] Code: 68 01 49 89 c4 0f 85 49 01 00 00 4d 8b 75 28 49 8d 86 e8 0a 00 00 4d 8b ae a0 47 00 00 48 89 c7 48 89 44 24 08 e8 1e a6 1a c4 <41> f6 45 3f 01 0f 84 e1 00 00 00 49 83 7d 10 00 45 0f b6 7d 3e 48
[   53.314822] RSP: 0018:ffffa1d580607bc0 EFLAGS: 00010246
[   53.315201] RAX: 0000000000000000 RBX: 00000000ffffffff RCX: 0000000000000000
[   53.315588] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
[   53.315974] RBP: ffffa1d580607c18 R08: 0000000000000000 R09: 0000000000000000
[   53.316357] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8c3b575a1828
[   53.316742] R13: 0000000000000000 R14: ffff8c3b5c7d01a0 R15: 0000000000000000
[   53.317130] FS:  0000000000000000(0000) GS:ffff8c4a7e300000(0000) knlGS:0000000000000000
[   53.317520] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[   53.317913] CR2: 000000000000003f CR3: 000000060f636006 CR4: 00000000003726f0
[   53.318305] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[   53.318700] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[   53.319096] Call Trace:
[   53.319493]  <TASK>
[   53.319889]  ? show_regs+0x6d/0x80
[   53.320286]  ? __die+0x24/0x80
[   53.320681]  ? page_fault_oops+0x176/0x500
[   53.321079]  ? ice_sched_find_node_by_teid+0x71/0xb0 [ice]
[   53.321513]  ? do_user_addr_fault+0x2f9/0x6b0
[   53.321909]  ? exc_page_fault+0x83/0x1b0
[   53.322308]  ? asm_exc_page_fault+0x27/0x30
[   53.322705]  ? ice_lag_move_new_vf_nodes+0x82/0x1c0 [ice]
[   53.323131]  ice_vc_cfg_qs_msg+0xa3/0x680 [ice]
[   53.323542]  ice_vc_process_vf_msg+0x5b4/0xb60 [ice]
[   53.323952]  __ice_clean_ctrlq+0x2e7/0xa90 [ice]
[   53.324356]  ice_service_task+0xade/0x10b0 [ice]
[   53.324762]  process_one_work+0x16a/0x350
[   53.325141]  worker_thread+0x306/0x440
[   53.325521]  ? __pfx_worker_thread+0x10/0x10
[   53.325899]  kthread+0xef/0x120
[   53.326279]  ? __pfx_kthread+0x10/0x10
[   53.326655]  ret_from_fork+0x44/0x70
[   53.327029]  ? __pfx_kthread+0x10/0x10
[   53.327405]  ret_from_fork_asm+0x1b/0x30
[   53.327780]  </TASK>
[   53.328155] Modules linked in: tcp_diag inet_diag cfg80211 veth vfio_pci vfio_pci_core vfio_iommu_type1 vfio iommufd ebtable_filter ebtables ip_set ip6table_raw iptable_raw ip6table_filter ip6_tables iptable_filter ipmi_devintf ipmi_msghandler nf_tables nvme_fabrics 8021q garp mrp sunrpc bonding tls softdog nfnetlink_log nfnetlink binfmt_misc intel_rapl_msr intel_rapl_common intel_uncore_frequency intel_uncore_frequency_common intel_tcc_cooling x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel irdma ib_uverbs iavf kvm i915 irqbypass crct10dif_pclmul polyval_clmulni polyval_generic ghash_clmulni_intel sha256_ssse3 mei_hdcp mei_pxp sha1_ssse3 aesni_intel drm_buddy crypto_simd ttm cryptd drm_display_helper dell_wmi rapl cec dell_smbios dcdbas ledtrig_audio dell_wmi_aio intel_cstate cmdlinepart dell_wmi_sysman spi_nor rc_core mei_me dell_wmi_descriptor intel_wmi_thunderbolt wmi_bmof pcspkr firmware_attributes_class sparse_keymap ib_core ee1004 mei i2c_algo_bit intel_pmc_core mtd intel_pch_thermal intel_vsec
[   53.328194]  pmt_telemetry pmt_class acpi_pad input_leds joydev mac_hid vhost_net vhost vhost_iotlb tap efi_pstore dmi_sysfs ip_tables x_tables autofs4 zfs(PO) spl(O) btrfs blake2b_generic xor raid6_pq libcrc32c hid_generic usbkbd usbmouse usbhid hid nvme xhci_pci nvme_core xhci_pci_renesas spi_intel_pci e1000e i40e crc32_pclmul ice nvme_auth spi_intel ahci i2c_i801 video intel_lpss_pci xhci_hcd libahci i2c_smbus gnss intel_lpss idma64 wmi pinctrl_cannonlake
[   53.331318] CR2: 000000000000003f
[   53.331821] ---[ end trace 0000000000000000 ]---
[   54.551846] RIP: 0010:ice_lag_move_new_vf_nodes+0x82/0x1c0 [ice]
[   54.552604] Code: 68 01 49 89 c4 0f 85 49 01 00 00 4d 8b 75 28 49 8d 86 e8 0a 00 00 4d 8b ae a0 47 00 00 48 89 c7 48 89 44 24 08 e8 1e a6 1a c4 <41> f6 45 3f 01 0f 84 e1 00 00 00 49 83 7d 10 00 45 0f b6 7d 3e 48
[   54.553167] RSP: 0018:ffffa1d580607bc0 EFLAGS: 00010246
[   54.553756] RAX: 0000000000000000 RBX: 00000000ffffffff RCX: 0000000000000000
[   54.554282] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
[   54.554850] RBP: ffffa1d580607c18 R08: 0000000000000000 R09: 0000000000000000
[   54.555470] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8c3b575a1828
[   54.556045] R13: 0000000000000000 R14: ffff8c3b5c7d01a0 R15: 0000000000000000
[   54.556615] FS:  0000000000000000(0000) GS:ffff8c4a7e300000(0000) knlGS:0000000000000000
[   54.557187] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[   54.557769] CR2: 000000000000003f CR3: 000000010ad0c003 CR4: 00000000003726f0
[   54.558276] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[   54.558909] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[   54.559473] note: kworker/2:2[226] exited with irqs disabled
[   55.978355] BUG: kernel NULL pointer dereference, address: 000000000000003f
[   55.978884] #PF: supervisor read access in kernel mode
[   55.979403] #PF: error_code(0x0000) - not-present page
[   55.979921] PGD 0 P4D 0 
[   55.980437] Oops: 0000 [#2] PREEMPT SMP NOPTI
[   55.980955] CPU: 1 PID: 1001 Comm: kworker/1:3 Tainted: P      D    O       6.8.8-4-pve #1
[   55.981473] Hardware name: Dell Inc. OptiPlex 7070/0YNVJG, BIOS 1.22.0 07/03/2023
[   55.981991] Workqueue: ice ice_service_task [ice]
[   55.982544] RIP: 0010:ice_lag_move_new_vf_nodes+0x82/0x1c0 [ice]
[   55.983080] Code: 68 01 49 89 c4 0f 85 49 01 00 00 4d 8b 75 28 49 8d 86 e8 0a 00 00 4d 8b ae a0 47 00 00 48 89 c7 48 89 44 24 08 e8 1e a6 1a c4 <41> f6 45 3f 01 0f 84 e1 00 00 00 49 83 7d 10 00 45 0f b6 7d 3e 48
[   55.983590] RSP: 0018:ffffa1d591ffbbc0 EFLAGS: 00010246
[   55.984105] RAX: 0000000000000000 RBX: 00000000ffffffff RCX: 0000000000000000
[   55.984631] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
[   55.985259] RBP: ffffa1d591ffbc18 R08: 0000000000000000 R09: 0000000000000000
[   55.985778] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8c3b575a2828
[   55.986303] R13: 0000000000000000 R14: ffff8c3b56ae01a0 R15: 0000000000000000
[   55.986820] FS:  0000000000000000(0000) GS:ffff8c4a7e280000(0000) knlGS:0000000000000000
[   55.987339] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[   55.987854] CR2: 000000000000003f CR3: 000000060f636001 CR4: 00000000003726f0
[   55.988372] Call Trace:
[   55.988888]  <TASK>
[   55.989403]  ? show_regs+0x6d/0x80
[   55.989919]  ? __die+0x24/0x80
[   55.990433]  ? page_fault_oops+0x176/0x500
[   55.990950]  ? ice_sched_find_node_by_teid+0x71/0xb0 [ice]
[   55.991502]  ? do_user_addr_fault+0x2f9/0x6b0
[   55.992020]  ? exc_page_fault+0x83/0x1b0
[   55.992538]  ? asm_exc_page_fault+0x27/0x30
[   55.993054]  ? ice_lag_move_new_vf_nodes+0x82/0x1c0 [ice]
[   55.993606]  ice_vc_cfg_qs_msg+0xa3/0x680 [ice]
[   55.994155]  ice_vc_process_vf_msg+0x5b4/0xb60 [ice]
[   55.994706]  __ice_clean_ctrlq+0x2e7/0xa90 [ice]
[   55.995248]  ice_service_task+0xade/0x10b0 [ice]
[   55.995788]  process_one_work+0x16a/0x350
[   55.996306]  worker_thread+0x306/0x440
[   55.996819]  ? __pfx_worker_thread+0x10/0x10
[   55.997332]  kthread+0xef/0x120
[   55.997850]  ? __pfx_kthread+0x10/0x10
[   55.998363]  ret_from_fork+0x44/0x70
[   55.998882]  ? __pfx_kthread+0x10/0x10
[   55.999395]  ret_from_fork_asm+0x1b/0x30
[   55.999917]  </TASK>
[   56.000434] Modules linked in: tcp_diag inet_diag cfg80211 veth vfio_pci vfio_pci_core vfio_iommu_type1 vfio iommufd ebtable_filter ebtables ip_set ip6table_raw iptable_raw ip6table_filter ip6_tables iptable_filter ipmi_devintf ipmi_msghandler nf_tables nvme_fabrics 8021q garp mrp sunrpc bonding tls softdog nfnetlink_log nfnetlink binfmt_misc intel_rapl_msr intel_rapl_common intel_uncore_frequency intel_uncore_frequency_common intel_tcc_cooling x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel irdma ib_uverbs iavf kvm i915 irqbypass crct10dif_pclmul polyval_clmulni polyval_generic ghash_clmulni_intel sha256_ssse3 mei_hdcp mei_pxp sha1_ssse3 aesni_intel drm_buddy crypto_simd ttm cryptd drm_display_helper dell_wmi rapl cec dell_smbios dcdbas ledtrig_audio dell_wmi_aio intel_cstate cmdlinepart dell_wmi_sysman spi_nor rc_core mei_me dell_wmi_descriptor intel_wmi_thunderbolt wmi_bmof pcspkr firmware_attributes_class sparse_keymap ib_core ee1004 mei i2c_algo_bit intel_pmc_core mtd intel_pch_thermal intel_vsec
[   56.000472]  pmt_telemetry pmt_class acpi_pad input_leds joydev mac_hid vhost_net vhost vhost_iotlb tap efi_pstore dmi_sysfs ip_tables x_tables autofs4 zfs(PO) spl(O) btrfs blake2b_generic xor raid6_pq libcrc32c hid_generic usbkbd usbmouse usbhid hid nvme xhci_pci nvme_core xhci_pci_renesas spi_intel_pci e1000e i40e crc32_pclmul ice nvme_auth spi_intel ahci i2c_i801 video intel_lpss_pci xhci_hcd libahci i2c_smbus gnss intel_lpss idma64 wmi pinctrl_cannonlake
[   56.004259] CR2: 000000000000003f
[   56.004785] ---[ end trace 0000000000000000 ]---
[   57.160259] RIP: 0010:ice_lag_move_new_vf_nodes+0x82/0x1c0 [ice]
[   57.161134] Code: 68 01 49 89 c4 0f 85 49 01 00 00 4d 8b 75 28 49 8d 86 e8 0a 00 00 4d 8b ae a0 47 00 00 48 89 c7 48 89 44 24 08 e8 1e a6 1a c4 <41> f6 45 3f 01 0f 84 e1 00 00 00 49 83 7d 10 00 45 0f b6 7d 3e 48
[   57.161762] RSP: 0018:ffffa1d580607bc0 EFLAGS: 00010246
[   57.162507] RAX: 0000000000000000 RBX: 00000000ffffffff RCX: 0000000000000000
[   57.163244] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
[   57.163962] RBP: ffffa1d580607c18 R08: 0000000000000000 R09: 0000000000000000
[   57.164634] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8c3b575a1828
[   57.165343] R13: 0000000000000000 R14: ffff8c3b5c7d01a0 R15: 0000000000000000
[   57.166037] FS:  0000000000000000(0000) GS:ffff8c4a7e280000(0000) knlGS:0000000000000000
[   57.166742] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[   57.167569] CR2: 000000000000003f CR3: 000000010ad0c005 CR4: 00000000003726f0
[   57.168446] note: kworker/1:3[1001] exited with irqs disabled
 

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!