Re: lib/libfuse: Handle signals that get sent to any thread

2018-10-29 Thread Ted Unangst
Rian Hunter wrote: > Another gentle bump on this patch: this looks about right.

Re: lib/libfuse: Handle signals that get sent to any thread

2018-10-29 Thread Rian Hunter
Another gentle bump on this patch: Index: lib/libfuse/fuse.c === RCS file: /cvs/src/lib/libfuse/fuse.c,v retrieving revision 1.49 diff -u -r1.49 fuse.c --- lib/libfuse/fuse.c 5 Jul 2018 10:57:31 - 1.49 +++

Re: diff: Fix send(2) EACCES mistake

2018-10-29 Thread Jan Klemkow
On Sun, Oct 28, 2018 at 10:58:34PM +, Jason McIntyre wrote: > On Sun, Oct 28, 2018 at 09:40:33PM +0100, Jan Klemkow wrote: > > Unlike the manpage saids or one might think , sendto(2) sets errno to > > EHOSTUNREACH instead of EACCES in cases of blocking by pf(4) or not > > enabled broadcasts.

unveil ospf6d's parent proc

2018-10-29 Thread Remi Locherer
Hi, ospf6d does not support reloading so its parent proc does not need filesystem access with the exception of the control socket cleanup on exit. Once we teach it how to reload the config it is easy to unveil "/" readonly as I just did for ospfd. OK? Remi cvs diff: Diffing . Index: ospf6d.c

Re: odd condition/test in PF lexer

2018-10-29 Thread Todd C. Miller
OK millert@ - todd

Re: odd condition/test in PF lexer

2018-10-29 Thread Theo de Raadt
> the if() condition at line 5282 does not make sense as it is > granted by earlier line 5279 the `c` variable holds backslash > only. ok with me.

Re: odd condition/test in PF lexer

2018-10-29 Thread Alexandr Nedvedicky
Hello, I think time has come to ask for OKs. The updated patch is below. The issue has been found within PF's parse.y here: 5279 } else if (c == '\\') { 5280 if ((next = lgetc(quotec)) == EOF) 5281 return (0); 5282

Re: diff: Fix send(2) EACCES mistake

2018-10-29 Thread Tom Smyth
yeah I agree with Jason, grammar would dictate that if you want to form a sentance with "a" followed by word beginning a vowel or having a silent consonant between the a and the vowel then an n would be inserted after the a would be inserted to make the sentence easier to pronounce ... but

Re: Regression in "Add support to create and convert disk images from existing images"

2018-10-29 Thread Greg Steuck
> > For the record, reyk@ committed a similar fix yesterday so you should > be able to use a recent snapshot at this point. > Confirmed that Oct 29 snapshot is working fine. Thanks for the prompt fix! -- nest.cx is Gmail hosted, use PGP for anything private. Key: http://goo.gl/6dMsr

Re: NTPd server using DVB-T as clocksource

2018-10-29 Thread Chris Cappuccio
Lars Schotte [l...@gustik.eu] wrote: > Well, I know that OpenBSD currently has no support for DVB-T but Linux > does, so I would run that RaspberryPi with Linux. However, the question > would be how to pair its output with OpenNTPd or NTPd. > OpenBSD actually does support some of the ugen

Re: ksh: fc -s and SIGINT

2018-10-29 Thread Anton Lindqvist
On Mon, Oct 29, 2018 at 09:55:38AM +0100, Martijn van Duren wrote: > On 10/28/18 8:13 PM, Anton Lindqvist wrote: > > Hi, > > Bug reported by miod@, how to reproduce: > > > > $ command -v r > > alias r='fc -s' > > $ sleep 5 > > $ r sleep > > ^C # abort sleep before finishing > > $ r

Re: bgpd, remove some no longer needed linked lists

2018-10-29 Thread Claudio Jeker
On Mon, Oct 29, 2018 at 10:58:36AM +0100, Claudio Jeker wrote: > With the last commit the rde_aspath no longer needs to have a list of > prefixes and also the peer no longer need to have a list of aspaths. > This diff removes both and replaces the list of prefixes with a refcount. > The big

bgpd, remove some no longer needed linked lists

2018-10-29 Thread Claudio Jeker
With the last commit the rde_aspath no longer needs to have a list of prefixes and also the peer no longer need to have a list of aspaths. This diff removes both and replaces the list of prefixes with a refcount. The big benefit of this is that struct rde_aspath can now be shared between sessions

faq16 vmm - missing "rcctl start vmd"

2018-10-29 Thread Marcus MERIGHI
Hello, just had a reason to spin up a vmm(4) instance and followed the new faq16 (thanks!). One step was missing for me, patch follows. Marcus Index: faq16.html === RCS file: /cvs/www/faq/faq16.html,v retrieving revision 1.2 diff

Re: ksh: fc -s and SIGINT

2018-10-29 Thread Martijn van Duren
On 10/28/18 8:13 PM, Anton Lindqvist wrote: > Hi, > Bug reported by miod@, how to reproduce: > > $ command -v r > alias r='fc -s' > $ sleep 5 > $ r sleep > ^C # abort sleep before finishing > $ r sleep > ksh: fc: history function called recursively > > The c_fc() function has some

[PATCH] Support for alternate FIFO for sasyncd(8)

2018-10-29 Thread Bartosz Kuźma
Hello, I'm using pair of OpenBSD routers with several isakmpd daemons running in different rdomains synchronizing SA database with sasyncd. Currently sasyncd works only with default isakmpd FIFO path. The following patch will fix this issue: Index: monitor.c