Re: install(1) could fail due to race

2019-02-06 Thread Lauri Tirkkonen
On Sun, Jan 27 2019 10:37:52 -0500, Ted Unangst wrote: > Ingo Schwarze wrote: > > If people here agree with the general direction of making -S the > > default and removing the fragile non-S mode (see the patch below), > > i'll run a full make build and make release and then ask for OKs. > > Just c

Re: games/fortune translation fix

2019-02-06 Thread Ingo Schwarze
Hi Scott, Scott Cheloha wrote on Tue, Feb 05, 2019 at 12:02:39AM -0600: > Oof, folks I think we've missed the forest for the trees here. > > By focussing on the minutiae of the Latin translation we've discarded > the English motto ("through to the stars") that imho > anchored the whole thing. >

help kmem pressure in pool

2019-02-06 Thread Ted Unangst
We have iterated on various designs to reduce pressure on kmem map over time. One of the problems is that sometimes you want to allocate something in intr context (NOWAIT), and other times in process context (WAITOK), but then at free time they get all glommed together. This happens in pool. Since

pfctl: anchor names must not be empty, unify sanity checks

2019-02-06 Thread Klemens Nanni
When using anchors, they ought to have a non-empty name or none at all. By accident, I discovered the following: $ printf 'anchor ""\n' | pfctl -vnf- pass all no state No errors and it parses in a potentially harmful way. Other use cases behave badly as well: $ printf '

[PATCH] mg: {beginning,end}-of-buffer don't set marks in Emacs

2019-02-06 Thread Leonid Bobrov
Hi! Going to end and begging of buffer doesn't set marks in Emacs. Index: basic.c === RCS file: /cvs/src/usr.bin/mg/basic.c,v retrieving revision 1.47 diff -u -p -u -p -r1.47 basic.c --- basic.c 10 Oct 2015 09:13:14 - 1.

Re: install(1) could fail due to race

2019-02-06 Thread Ingo Schwarze
Hi Ted, Ted Unangst wrote on Sun, Jan 27, 2019 at 10:37:52AM -0500: > Ingo Schwarze wrote: >> If people here agree with the general direction of making -S the >> default and removing the fragile non-S mode (see the patch below), >> i'll run a full make build and make release and then ask for OKs.

uhci(4): fix delayed completions for isochronous transfers

2019-02-06 Thread Alexandre Ratchov
When an isochronous transfer of n frames is scheduled, the last frame i.e. frame number (n - 1) is set to generate an interrupt. To figure out which transfer generated the interrupt, the interrupt handler iterates over all outstanding transfers and checks if the last TD of the transfer is active.