Re: release.8 - .fs -> .img

2020-08-19 Thread Theo Buehler
On Wed, Aug 19, 2020 at 11:42:39PM -0700, na...@airpost.net wrote: > Update the name of the install image. Fixed, thanks. > > Index: release.8 > === > RCS file: /cvs/src/share/man/man8/release.8,v > retrieving revision 1.95 > diff -

release.8 - .fs -> .img

2020-08-19 Thread navan
Update the name of the install image. Index: release.8 === RCS file: /cvs/src/share/man/man8/release.8,v retrieving revision 1.95 diff -u -p -r1.95 release.8 --- release.8 29 Apr 2020 15:02:51 - 1.95 +++ release.8 20 Aug

Re: Make pipex more common for pppac and pppx

2020-08-19 Thread YASUOKA Masahiko
Hi, Thank you for your comments. On Mon, 17 Aug 2020 00:15:08 +0300 Vitaliy Makkoveev wrote: > I like your idea to kill `pipex_iface_context'. I had trying to keep it > by myself and this was wrong way. Could you rework your diff to be > against the recent sources? I'm sorry the diff was for th

ldapd(8): fix, simplify UUID timestamp code

2020-08-19 Thread Scott Cheloha
Hi, I was auditing the tree for odd-looking time structure usage and I came across the UUID code in ldapd(8), uuid.c. time_cmp() is backwards. Or the caller is misusing it. One or the other. It returns -1 if tv1 exceeds tv2 but the comments in the caller indicate the opposite impression. I do

Re: openrsync(1): add support for IPv6-only hosts

2020-08-19 Thread Florian Obser
On Wed, Aug 19, 2020 at 12:20:19AM +0200, Klemens Nanni wrote: > On Tue, Aug 18, 2020 at 09:58:56AM +0200, Sasha Romijn wrote: > > The current openrsync client is not able to connect to dual-stack remote > > hosts, when the local host does not have any IPv4 connectivity. This is > > because conne

Re: PATCH: VMD fixes for PCI Config Space and BAR Allocation [passthrough PCI support]

2020-08-19 Thread Dave Voutila
Jordan Hargrave writes: > This is the first patch for adding PCI passthrough support to VMD. > I am splitting up the necessary changes into smaller patches. > > This code fixes the pci device union for accessing PCI config space >= 0x40 > pcidump -xxx would return garbage data due to union overl

Re: Fewer pool_get() in kqueue_register()

2020-08-19 Thread Visa Hankala
On Wed, Aug 19, 2020 at 12:10:12PM +0200, Martin Pieuchot wrote: > On 18/08/20(Tue) 15:30, Visa Hankala wrote: > > On Tue, Aug 18, 2020 at 11:04:47AM +0200, Martin Pieuchot wrote: > > > Diff below changes the order of operations in kqueue_register() to get > > > rid of an unnecessary pool_get(). W

Re: Fewer pool_get() in kqueue_register()

2020-08-19 Thread Martin Pieuchot
On 18/08/20(Tue) 15:30, Visa Hankala wrote: > On Tue, Aug 18, 2020 at 11:04:47AM +0200, Martin Pieuchot wrote: > > Diff below changes the order of operations in kqueue_register() to get > > rid of an unnecessary pool_get(). When an event is already present on > > the list try to acquire it first.