Re: sigpause.3: Make the Xr bold

2022-12-12 Thread Jason McIntyre
On Mon, Dec 12, 2022 at 06:19:17PM -0500, Josiah Frentsos wrote: > Index: sigpause.3 > === > RCS file: /cvs/src/lib/libc/compat-43/sigpause.3,v > retrieving revision 1.14 > diff -u -p -r1.14 sigpause.3 > --- sigpause.317 Jul 20

Re: pvbus: pass M_ZERO properly

2022-12-12 Thread Michael Knudsen
We can detect this class of error by redefining the flags to use the high bits instead of the low ones. This way the malloc() KMEMSTAT value check triggers because 0x1000 is greater than the maximum type value. I tested the following, and it boots fine, and when I moved M_ZERO to the type fie

sigpause.3: Make the Xr bold

2022-12-12 Thread Josiah Frentsos
Index: sigpause.3 === RCS file: /cvs/src/lib/libc/compat-43/sigpause.3,v retrieving revision 1.14 diff -u -p -r1.14 sigpause.3 --- sigpause.3 17 Jul 2013 05:42:10 - 1.14 +++ sigpause.3 12 Dec 2022 23:13:44 - @@ -38,8 +38

Re: vmd(8): create a proper e820 bios memory map

2022-12-12 Thread Dave Voutila
Mischa writes: > On 2022-12-12 16:36, Dave Voutila wrote: >> Mischa writes: >> >>> On 2022-12-12 16:02, Dave Voutila wrote: Mischa writes: > Hi Dave, > Great stuff!! > Everything is patched, build and booted. > What is the best way to test this? Start guests as

pull request

2022-12-12 Thread horisontd...@yandex.ru
diff ip_carp.c old_ip_carp.c 801,803d800 <     if (sc == NULL) <         return (ENOMEM); <

Re: Unlock minherit(2)

2022-12-12 Thread Klemens Nanni
On Wed, Nov 30, 2022 at 08:44:01PM +, Klemens Nanni wrote: > struct uvm_map's .addr is protected by the map's lock and .{min,max}_offset > are immutable. > > uvm_map_inherit() locks the VM map upon entry, sets the desired inheritance > mode for the given address range (validated outside the lo

Re: vmd(8): create a proper e820 bios memory map

2022-12-12 Thread Mischa
On 2022-12-12 16:36, Dave Voutila wrote: Mischa writes: On 2022-12-12 16:02, Dave Voutila wrote: Mischa writes: Hi Dave, Great stuff!! Everything is patched, build and booted. What is the best way to test this? Start guests as usual. I'd say the only thing definitively to manually check i

Re: vmd(8): create a proper e820 bios memory map

2022-12-12 Thread Dave Voutila
Mischa writes: > On 2022-12-12 16:02, Dave Voutila wrote: >> Mischa writes: >> >>> Hi Dave, >>> Great stuff!! >>> Everything is patched, build and booted. >>> What is the best way to test this? >> Start guests as usual. I'd say the only thing definitively to >> manually >> check is that they s

Re: vmd(8): create a proper e820 bios memory map

2022-12-12 Thread Mischa
On 2022-12-12 16:02, Dave Voutila wrote: Mischa writes: Hi Dave, Great stuff!! Everything is patched, build and booted. What is the best way to test this? Start guests as usual. I'd say the only thing definitively to manually check is that they see the same amount of physical memory as bef

Re: sxitimer(4): switch to clockintr

2022-12-12 Thread Mark Kettenis
> Date: Fri, 09 Dec 2022 18:46:13 +0100 > From: Mark Kettenis > > > Date: Fri, 9 Dec 2022 11:28:43 -0600 > > From: Scott Cheloha > > > > sxitimer(4) is the fourth and final armv7 clock interrupt driver that > > needs to switch to clockintr. > > > > - Remove everything related to STATTIMER. We

Re: vmd(8): create a proper e820 bios memory map

2022-12-12 Thread Dave Voutila
Mischa writes: > Hi Dave, > > Great stuff!! > Everything is patched, build and booted. > > What is the best way to test this? Start guests as usual. I'd say the only thing definitively to manually check is that they see the same amount of physical memory as before the patch. > Start a bunch o

Re: vmd(8): create a proper e820 bios memory map

2022-12-12 Thread Mischa
Hi Dave, Great stuff!! Everything is patched, build and booted. What is the best way to test this? Start a bunch of VMs with bsd.rd? Does this still need to be a decompressed bsd.rd? Mischa On 2022-12-10 23:51, Dave Voutila wrote: tech@, The below diff tweaks how vmd and vmm define memory

Re: bgpctl switch ometric to timespec

2022-12-12 Thread Theo Buehler
On Fri, Dec 09, 2022 at 12:56:44PM +0100, Claudio Jeker wrote: > cheloha@ switched the bgpctl code to use struct timespec and a monotonic > clock. Adjust the ometric code to use a timespec internally so that there > is no need to convert from timespec to timeval. ok tb