Re: Beadm can't create snapshot

2022-09-12 Thread Ryan Moeller
On 8/29/22 11:28 AM, Ryan Moeller wrote: On 8/29/22 10:14 AM, Thomas Laus wrote: On 8/17/22 10:35, Thomas Laus wrote: I attempted to create a ZFS snapshot after upgrading this morning and received this error After all of the discussion to compare and contrast beadm vs. bectl my read only

Re: panic: data abort in critical section or under mutex (was: Re: panic: Unknown kernel exception 0 esr_el1 2000000 (on 14-CURRENT/aarch64 Feb 28))

2022-09-12 Thread Dmitry Salychev
(kgdb) bt #0 breakpoint () at /usr/src/sys/arm64/include/cpufunc.h:36 #1 kdb_enter (why=, msg=) at /usr/src/sys/kern/subr_kdb.c:508 #2 0x00460268 in vpanic (fmt=, ap=...) at /usr/src/sys/kern/kern_shutdown.c:967 #3 0x00460018 in panic (fmt=0x12 ) at /usr/src/sys/kern/kern_shut

Re: Beadm can't create snapshot

2022-09-12 Thread Thomas Laus
On 9/12/22 05:29, Ryan Moeller wrote: Here's the patch for the kernel and brief instructions: https://reviews.freebsd.org/P547 That worked. I was not familiar with patching a file using git. My experience has always used the 'patch' utility and a unified diff. I just made a backup of the

Re: panic: data abort in critical section or under mutex (was: Re: panic: Unknown kernel exception 0 esr_el1 2000000 (on 14-CURRENT/aarch64 Feb 28))

2022-09-12 Thread Mark Millard
On 2022-Sep-12, at 05:10, Dmitry Salychev wrote: > > Hi, > > It seems that the recent 14-CURRENT/aarch64 (866e021) with DPAA2 drivers > panics under network throughtput stress test in random places 3 of your examples get a signal handler called at the exact same instruction: #6 0x004

WITH_BHYVE_SNAPSHOT broken after 9cc9abf4

2022-09-12 Thread Filipe da Silva Santos
int vcpu declared in line 1247 isn't being used, since it's now being redefined inside the for loop in line 1589. diff --git a/usr.sbin/bhyve/bhyverun.c b/usr.sbin/bhyve/bhyverun.c index 550cc9d15..27f1d8ea8 100644 --- a/usr.sbin/bhyve/bhyverun.c +++ b/usr.sbin/bhyve/bhyverun.c @@ -1244,7 +1244,6

Re: WITH_BHYVE_SNAPSHOT broken after 9cc9abf4

2022-09-12 Thread Emmanuel Vadot
On Mon, 12 Sep 2022 23:05:29 + Filipe da Silva Santos wrote: > int vcpu declared in line 1247 isn't being used, since it's now being > redefined inside the for loop in line 1589. > > diff --git a/usr.sbin/bhyve/bhyverun.c b/usr.sbin/bhyve/bhyverun.c > index 550cc9d15..27f1d8ea8 100644 > ---