Re: panic: init died (signal 10, exit 0)

2021-06-07 Thread Theo de Raadt
> It loops until the kernel has halted the machine. init process > jumps between signal handler and page fault trap. Hmm. That is probably ok.

Re: panic: init died (signal 10, exit 0)

2021-06-07 Thread Alexander Bluhm
On Mon, Jun 07, 2021 at 11:34:26AM -0600, Theo de Raadt wrote: > > When I came up with this diff in 2017, it was not considered the > > correct fix. Syncing file system and some UVM logic was changed. > > This improved the situation, but never fixed it. > > I guess this got started after my hiber

Re: panic: init died (signal 10, exit 0)

2021-06-07 Thread Theo de Raadt
Alexander Bluhm wrote: > When I came up with this diff in 2017, it was not considered the > correct fix. Syncing file system and some UVM logic was changed. > This improved the situation, but never fixed it. I guess this got started after my hibernate/unmount change? > @@ -842,10 +842,13 @@ tr

Re: panic: init died (signal 10, exit 0)

2021-06-07 Thread Alexander Bluhm
On Mon, Jun 07, 2021 at 05:53:23PM +0200, Paul de Weerd wrote: > syncing disks... done > panic: init died (signal 10, exit 0) I am using this local diff to avoid the panic. After VFS shutdown, init cannot map a missing page. It is the page that contains the signal handler's code. Traditionally

panic: init died (signal 10, exit 0)

2021-06-07 Thread Paul de Weerd
Hi all, I've got a couple of VMs that I update quite frequently. I use a script to automate the update (in place untarring of the various sets) on each VM, and have another script on the host that iterates over the VMs and upgrades each sequentially, orchestrating the process. After the orchestr