Re: vi.recover doesn't need syscall.ph

2016-11-04 Thread Philip Guenther
On Fri, Nov 4, 2016 at 11:12 PM, Andrew Fresh wrote: > Perl's chdir supports fchdir, just by passing in a dirhandle. > http://perldoc.perl.org/functions/chdir.html ... > OK? ok guenther@

vi.recover doesn't need syscall.ph

2016-11-04 Thread Andrew Fresh
Perl's chdir supports fchdir, just by passing in a dirhandle. http://perldoc.perl.org/functions/chdir.html Since 2005, so unsurprising this is the way it is. https://perl5.git.perl.org/perl.git/commit/c4aca7d03737ddcac23de1ad6d597e98be679214 was released in 5.10. https://metacpan.org/pod/distribu

Re: Kill ifa_ifwithnet()

2016-11-04 Thread Vincent Gross
On Fri, 4 Nov 2016 12:01:58 +0100 Martin Pieuchot wrote: > Rather than trying to keep this old routing table like function alive > by reimplementing rn_refines(), let's get rid of it. > > ok? > > Index: net/route.c > === > RCS file

guest crashes when ping'ing host

2016-11-04 Thread Daniel Bolgheroni
Hi, guest running -current crashes trying to ping host running the same -current snapshot. The configuration is based on a diff to faq6.html from Edd Barrett, which is going to be commited for 6.1: http://marc.info/?l=openbsd-tech&m=147654794511843&w=2 Don't know if it is related to the recent c

Re: Append system start up messages to new /var/log/dmesg in /etc/rc

2016-11-04 Thread Craig Skinner
Resend folks: On 2016-10-19 Wed 14:19 PM |, Craig Skinner wrote: > Hi, > > With dmesg's new -s flag, append each boot's full log to a new > /var/log/dmesg semi-private log file. > > Inspired by Alexander Hall's recent post: > http://marc.info/?l=openbsd-misc&m=147674181621645 > > This works for

Re: SOCKET_LOCK looking for testers

2016-11-04 Thread Simon Mages
Hi, i did some performance measurements with and without your diff on OpenBSD-current. There is no performance difference. I think this is the expected outcome. BR Simon 2016-11-04 10:12 GMT+01:00, Martin Pieuchot : > On 03/11/16(Thu) 11:21, Martin Pieuchot wrote: >> Here's the next iteration o

Kill ifa_ifwithnet()

2016-11-04 Thread Martin Pieuchot
Rather than trying to keep this old routing table like function alive by reimplementing rn_refines(), let's get rid of it. ok? Index: net/route.c === RCS file: /cvs/src/sys/net/route.c,v retrieving revision 1.333 diff -u -p -r1.333 r

Re: libcrypto: get rid of I386_ONLY

2016-11-04 Thread Brent Cook
OK bcook@, looks fine for portable too. > On Nov 4, 2016, at 11:02 AM, Tom Cosgrove > wrote: > Miod Vallat 4-Nov-16 08:53 >>> >> >> I386_ONLY was used to prefer a different assembler sequence in the >> sha512 code, which would be faster on 80386 processors, but slower on >> 80486 and abov

Re: The end of nd6_output()

2016-11-04 Thread Martin Pieuchot
On 30/10/16(Sun) 02:02, Gregor Best wrote: > Hi, > > On Mon, Jun 06, 2016 at 07:16:20PM +0200, Martin Pieuchot wrote: > > [...] > > + if (rt->rt_gateway->sa_family != AF_LINK) { > > + printf("%s: something odd happens\n", __func__); > > + m_freem(m); > > + return (E

Re: libcrypto: get rid of I386_ONLY

2016-11-04 Thread Tom Cosgrove
>>> Miod Vallat 4-Nov-16 08:53 >>> > > I386_ONLY was used to prefer a different assembler sequence in the > sha512 code, which would be faster on 80386 processors, but slower on > 80486 and above. > > This code path has never been enabled, and there are actually no plans > to make libcrypto friendl

Re: Problems with rdomain and net/if.c v1.455

2016-11-04 Thread Claudio Jeker
On Wed, Nov 02, 2016 at 05:44:14PM +0100, Martin Pieuchot wrote: > On 28/10/16(Fri) 16:27, Claudio Jeker wrote: > > On Fri, Oct 28, 2016 at 04:19:35PM +0200, Nils Frohberg wrote: > > > I currently cannot access the local IP of an interface on rdomain 1: > > > > > > Script started on Fri Oct 28 15:

Re: SOCKET_LOCK looking for testers

2016-11-04 Thread Martin Pieuchot
On 03/11/16(Thu) 11:21, Martin Pieuchot wrote: > Here's the next iteration of my diff introducing a rwlock to serialize > the network input path with socket paths. Changes are: > > - more timeout_set_proc() that should fix problems reported by > Chris Jackman. > > - I introduced a set of

libcrypto: get rid of I386_ONLY

2016-11-04 Thread Miod Vallat
I386_ONLY was used to prefer a different assembler sequence in the sha512 code, which would be faster on 80386 processors, but slower on 80486 and above. This code path has never been enabled, and there are actually no plans to make libcrypto friendlier to genuine 80386 chips, so why bother keepin

obsolete bits in libcrypto Makefile

2016-11-04 Thread Miod Vallat
libcrypto no longer needs to use internal headers from libssl; and no longer checks for TERMIOS being defined. Index: Makefile === RCS file: /cvs/src/lib/libcrypto/Makefile,v retrieving revision 1.8 diff -u -p -r1.8 Makefile --- Makef