fonttosfnt: merge changes to fix fonts for new pango

2020-10-09 Thread Christopher Zimmermann
Hi Matthieu, you already gave an ok some time ago to merge changes to fonttosfnt. Now that my changes have been tested and merged upstream I'd like to integrate them into xenocara. May I ask for another ok? Christopher Index: fonttosfnt.c

Re: timeout(9): add clock-based timeouts (attempt 2)

2020-10-09 Thread Scott Cheloha
Hey, > On Oct 7, 2020, at 8:49 PM, 内藤 祐一郎 wrote: > > Hi. > > I'm looking forward to this patch is committed. > Because this patch solves my problem about CARP timeout. > > IIJ, a company that I am working for, is using carp(4) on VMware ESXi hosts > for VPN and web gateway services. > > One

Re: timeout(9): add clock-based timeouts (attempt 2)

2020-10-09 Thread Theo de Raadt
> I think this is good to go. ok kettenis@ > > Did briefly discuss with Theo during k2k20 and the consensus was it > should go in after relase. Which is now! Agree.

NSD 4.3.3

2020-10-09 Thread Stuart Henderson
Here's an update to NSD 4.3.3. Any tests/comments/OKs? diff in order; - changelog - code changes - manpage changes - autoconf foo doc/ChangeLog | 55 doc/RELNOTES | 24 dbaccess.c |4 - ipc.c |1 mini_event.h |

Re: NSD 4.3.3

2020-10-09 Thread Stuart Henderson
On 2020/10/09 21:35, Stuart Henderson wrote: > Here's an update to NSD 4.3.3. Any tests/comments/OKs? Updated to reinstate the pledge lost in nsd.c (merge error as we had a local commit post 4.3.2), spotted by tb. (I didn't reorder the diff for easier reading this time). Index: Makefile.in

Re: timeout(9): add clock-based timeouts (attempt 2)

2020-10-09 Thread Mark Kettenis
> From: Scott Cheloha > Date: Fri, 9 Oct 2020 13:03:05 -0500 > > Hey, > > > On Oct 7, 2020, at 8:49 PM, 内藤 祐一郎 wrote: > > > > Hi. > > > > I'm looking forward to this patch is committed. > > Because this patch solves my problem about CARP timeout. > > > > IIJ, a company that I am working

xhci zero length transfers 'leak' one transfer buffer count

2020-10-09 Thread Jonathon Fletcher
In xhci_xfer_get_trb, the count of transfer buffers in the pipe (xp->free_trbs) is always decremented but the count of transfer buffers used in the transfer (xx->ntrb) is not incremented for zero-length transfers. The result of this is that, at the end of a zero length transfer, xp->free_trbs

Re: Please test: switch select(2) to kqfilters

2020-10-09 Thread Martin Pieuchot
On 02/10/20(Fri) 12:19, Martin Pieuchot wrote: > Diff below modifies the internal implementation of {p,}select(2) to > query kqfilter handlers instead of poll ones. > > I deliberately left {p,}poll(2) untouched to ease the transition. > > This diff includes some kqueue refactoring from visa@.