bhyve Linux VM (Debian) stopped working after freebsd-update to 13.2-RELEASE-p2

I recently upgraded to 13.2-RELEASE-p2 and after rebooting, the debian VM I was running simply stopped working.

This is what's in bhyve.log:

Code:
vm exit[0]
        reason          SVM
        rip             0x000000001fb54b60
        inst_length     2
        exitcode        0x7b
        exitinfo1       0x511021d
        exitinfo2       0x1fb54b62

the config file:

Code:
loader="uefi"
graphics="no"
xhci_mouse="no"
cpu=1
memory="512M"
network0_type="virtio-net"
network0_switch="public"
network1_type="virtio-net"
network1_switch="private"
disk0_name="disk0"
disk0_dev="sparse-zvol"
disk0_type="virtio-blk"
uuid="..."
network0_mac="..."
network1_mac="..."
debug="yes"

dmesg only says:
Code:
pid 28741 (bhyve), jid 0, uid 0: exited on signal 6

I'm not sure where to start. CPU is an old AMD Athlon:

Code:
CPU: AMD Athlon(tm) II Neo N36L Dual-Core Processor (1297.88-MHz K8-class CPU)
  Origin="AuthenticAMD"  Id=0x100f63  Family=0x10  Model=0x6  Stepping=3
  Features=0x178bfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,MMX,FXSR,SSE,SSE2,HTT>
  Features2=0x802009<SSE3,MON,CX16,POPCNT>
  AMD Features=0xee500800<SYSCALL,NX,MMX+,FFXSR,Page1GB,RDTSCP,LM,3DNow!+,3DNow!>
  AMD Features2=0x8377f<LAHF,CMP,SVM,ExtAPIC,CR8,ABM,SSE4A,Prefetch,OSVW,IBS,SKINIT,WDT,NodeId>
  SVM: NP,NRIP,NAsids=64
  TSC: P-state invariant
 
Code:
loader="uefi"
Add uefi_vars="yes", Debian doesn't boot from EFI/boot/bootx64.efi, it boots with EFI/debian/shimx64.efi. Without uefi_vars that boot selection isn't saved.

Code:
$ efibootmgr -v
BootCurrent: 0006
Timeout: 0 seconds
BootOrder: 0006,0000,0002,0003,0004,0005
Boot0000* UiApp FvVol(7cb8bdc9-f8eb-4f34-aaea-3ee4af6516a1)/FvFile(462caa21-7614-4503-836e-8ab6f4662331)
Boot0002* UEFI Misc Device      PciRoot(0x0)/Pci(0x4,0x0)N.....YM....R,Y.
Boot0003* UEFI PXEv4 (MAC:589CFC09CD2D) PciRoot(0x0)/Pci(0x5,0x0)/MAC(589cfc09cd2d,1)/IPv4(0.0.0.00.0.0.0,0,0)N.....YM....R,Y.
Boot0004* UEFI PXEv6 (MAC:589CFC09CD2D) PciRoot(0x0)/Pci(0x5,0x0)/MAC(589cfc09cd2d,1)/IPv6([::]:<->[::]:,0,0)N.....YM....R,Y.
Boot0005* EFI Internal Shell    FvVol(7cb8bdc9-f8eb-4f34-aaea-3ee4af6516a1)/FvFile(7c04a583-9e3e-4f1c-ad65-e05268d0b4d1)
Boot0006* debian        HD(1,GPT,36cfbd12-68b8-4838-bd7b-4e360755736e,0x800,0x100000)/File(\EFI\debian\shimx64.efi)
 
Back
Top