Re: buildkernel is broken

2022-07-07 Thread Ryan Stone
Do you have VNET disabled in your kernel config? I believe that this was fixed by 37f604b49d4a. On Thu, Jul 7, 2022 at 1:07 AM Steve Kargl wrote: > > -std=iso9899:1999 -Werror /usr/src/sys/netinet/tcp_input.c > --- modules-all --- > /usr/src/sys/netpfil/ipfw/ip_dn_io.c:674:4: error: 'continue' s

problem with bhyve, ryzen 5800x, freebsd guest

2022-07-07 Thread Andriy Gapon
I have a strange issue with running an 'appliance' image based on FreeBSD 12 in bhyve on a machine with Ryzen 5800x processor. The problem is that the guest would run for a while and then the host would suddenly reset itself. It appears like a triple fault or something with similar consequ

Re: problem with bhyve, ryzen 5800x, freebsd guest

2022-07-07 Thread Vitaliy Gusev
You probably should set up a dump device to get crash info, stack, etc. —— Vitaliy Gusev > On 7 Jul 2022, at 15:29, Andriy Gapon wrote: > > > I have a strange issue with running an 'appliance' image based on FreeBSD 12 > in bhyve on a machine with Ryzen 5800x processor. > > The problem is th

Re: buildkernel is broken

2022-07-07 Thread Steve Kargl
Yes, I do. Deleting the line allows to code to compile. -- steve On Thu, Jul 07, 2022 at 08:24:47AM -0400, Ryan Stone wrote: > Do you have VNET disabled in your kernel config? I believe that this > was fixed by 37f604b49d4a. > > On Thu, Jul 7, 2022 at 1:07 AM Steve Kargl > wrote: > > > > -st

Re: buildkernel is broken

2022-07-07 Thread Ryan Stone
Okay, update your tree and it should be fixed then.

Re: buildkernel is broken

2022-07-07 Thread Steve Kargl
On Thu, Jul 07, 2022 at 10:38:43AM -0400, Ryan Stone wrote: > Okay, update your tree and it should be fixed then. Is it possible to pull just that fix? I spent part of yesterday building world, and contrary to popular belief, not all hardware contain a 32-core uber-fast ryzen cpu. Can people ple

Re: buildkernel is broken

2022-07-07 Thread Ryan Stone
You could "git cherry-pick -n 37f604b49d4a; git restore --unstaged sys/net/vnet.h" to apply the fix to your local tree without committing it or leaving it staged for commit. On Thu, Jul 7, 2022 at 10:50 AM Steve Kargl wrote: > > On Thu, Jul 07, 2022 at 10:38:43AM -0400, Ryan Stone wrote: > > Okay

Re: buildkernel is broken

2022-07-07 Thread Warner Losh
Or you could cherry-pick the fix. When you update git pull --rebase will automatically drop it when you rebase past that spot. Or if you have a branch, you can do the same to the branch and when you rebase past the fix, it will automatically drop. Warner On Thu, Jul 7, 2022 at 9:25 AM Ryan Stone

Re: buildkernel is broken

2022-07-07 Thread Steve Kargl
Thanks, but root[216] git cherry-pick -n 37f604b49d4a fatal: bad revision '37f604b49d4a' root[217] pwd /usr/src -- steve On Thu, Jul 07, 2022 at 11:24:47AM -0400, Ryan Stone wrote: > You could "git cherry-pick -n 37f604b49d4a; git restore --unstaged > sys/net/vnet.h" to apply the fix to your lo

Re: buildkernel is broken

2022-07-07 Thread Warner Losh
On Thu, Jul 7, 2022 at 10:37 AM Steve Kargl < s...@troutmask.apl.washington.edu> wrote: > Thanks, but > > root[216] git cherry-pick -n 37f604b49d4a > fatal: bad revision '37f604b49d4a' > root[217] pwd > /usr/src git fetch maybe? Warner > -- > steve > > On Thu, Jul 07, 2022 at 11:24:47AM -04

Re: buildkernel is broken

2022-07-07 Thread Steve Kargl
On Thu, Jul 07, 2022 at 10:37:40AM -0600, Warner Losh wrote: > On Thu, Jul 7, 2022 at 10:37 AM Steve Kargl < > s...@troutmask.apl.washington.edu> wrote: > > > Thanks, but > > > > root[216] git cherry-pick -n 37f604b49d4a > > fatal: bad revision '37f604b49d4a' > > root[217] pwd > > /usr/src > > >

Re: buildkernel is broken

2022-07-07 Thread Kyle Evans
On Thu, Jul 7, 2022 at 10:01 AM Steve Kargl wrote: > > On Thu, Jul 07, 2022 at 10:37:40AM -0600, Warner Losh wrote: > > On Thu, Jul 7, 2022 at 10:37 AM Steve Kargl < > > s...@troutmask.apl.washington.edu> wrote: > > > > > Thanks, but > > > > > > root[216] git cherry-pick -n 37f604b49d4a > > > fata

Accessibility in the FreeBSD installer and console

2022-07-07 Thread Hans Petter Selasky
Hi, The only argument I've heard from some non-sighted friends about not using FreeBSD natively is that ooh, MacOSX is so cool. It starts speaking from the start if I press this and this key. Is anyone here working on or wanting such a feature? I mean it should be so much easier to text to sp

Re: buildkernel is broken

2022-07-07 Thread Warner Losh
On Thu, Jul 7, 2022 at 11:21 AM Kyle Evans wrote: > On Thu, Jul 7, 2022 at 10:01 AM Steve Kargl > wrote: > > > > On Thu, Jul 07, 2022 at 10:37:40AM -0600, Warner Losh wrote: > > > On Thu, Jul 7, 2022 at 10:37 AM Steve Kargl < > > > s...@troutmask.apl.washington.edu> wrote: > > > > > > > Thanks,

Re: buildkernel is broken

2022-07-07 Thread Kristof Provost
On 7 Jul 2022, at 19:00, Steve Kargl wrote: On Thu, Jul 07, 2022 at 10:37:40AM -0600, Warner Losh wrote: On Thu, Jul 7, 2022 at 10:37 AM Steve Kargl < s...@troutmask.apl.washington.edu> wrote: Thanks, but root[216] git cherry-pick -n 37f604b49d4a fatal: bad revision '37f604b49d4a' root[217] p

Re: buildkernel is broken

2022-07-07 Thread Steve Kargl
On Thu, Jul 07, 2022 at 07:59:29PM +0200, Kristof Provost wrote: > On 7 Jul 2022, at 19:00, Steve Kargl wrote: > > > The fix in > > 37f604b49d4a seems rather questionable especially given > > that there is no comment about why the macro is expanded > > to a zero-trip loop. > > > I’m not sure how I

Re: Accessibility in the FreeBSD installer and console

2022-07-07 Thread Klaus Küchemann
> Am 07.07.2022 um 19:32 schrieb Hans Petter Selasky : > > Hi, > > The only argument I've heard from some non-sighted friends about not using > FreeBSD natively is that ooh, MacOSX is so cool. It starts speaking from the > start if I press this and this key. Is anyone here working on or wanti

Re: Accessibility in the FreeBSD installer and console

2022-07-07 Thread John Kennedy
On Thu, Jul 07, 2022 at 10:11:52PM +0200, Klaus Küchemann wrote: > > Am 07.07.2022 um 19:32 schrieb Hans Petter Selasky : > > The only argument I've heard from some non-sighted friends about not using > > FreeBSD natively is that ooh, MacOSX is so cool. It starts speaking from > > the start if I

Re: Accessibility in the FreeBSD installer and console

2022-07-07 Thread John Kennedy
On Thu, Jul 07, 2022 at 10:11:52PM +0200, Klaus Küchemann wrote: > > Am 07.07.2022 um 19:32 schrieb Hans Petter Selasky : > > The only argument I've heard from some non-sighted friends about not using > > FreeBSD natively is that ooh, MacOSX is so cool. It starts speaking from > > the start if I

Re: Accessibility in the FreeBSD installer and console

2022-07-07 Thread Hans Petter Selasky
On 7/7/22 23:26, John Kennedy wrote: On Thu, Jul 07, 2022 at 10:11:52PM +0200, Klaus Küchemann wrote: Am 07.07.2022 um 19:32 schrieb Hans Petter Selasky : The only argument I've heard from some non-sighted friends about not using FreeBSD natively is that ooh, MacOSX is so cool. It starts speaki

Re: Accessibility in the FreeBSD installer and console

2022-07-07 Thread Klaus Küchemann
> Am 07.07.2022 um 23:26 schrieb John Kennedy : > > On Thu, Jul 07, 2022 at 10:11:52PM +0200, Klaus Küchemann wrote: >>> Am 07.07.2022 um 19:32 schrieb Hans Petter Selasky : >>> The only argument I've heard from some non-sighted friends about not using >>> FreeBSD natively is that ooh, MacOSX

Re: Accessibility in the FreeBSD installer and console

2022-07-07 Thread Klaus Küchemann
> Am 07.07.2022 um 23:48 schrieb Hans Petter Selasky : > > On 7/7/22 23:26, John Kennedy wrote: >> On Thu, Jul 07, 2022 at 10:11:52PM +0200, Klaus Küchemann wrote: Am 07.07.2022 um 19:32 schrieb Hans Petter Selasky : The only argument I've heard from some non-sighted friends about not

Re: FreeBSD is a great operating system!

2022-07-07 Thread Turritopsis Dohrnii Teo En Ming
Dear Hans Petter Selasky, Why do you say FreeBSD license is a killer? Regards, Mr. Turritopsis Dohrnii Teo En Ming Targeted Individual in Singapore On Wed, 6 Jul 2022 at 16:13, Hans Petter Selasky wrote: > > On 7/6/22 10:07, Turritopsis Dohrnii Teo En Ming wrote: > > Subject: FreeBSD is a grea