Re: v6 autoconf, where have my connected routes gone?

2015-08-18 Thread Martin Pieuchot
On 18/08/15(Tue) 14:00, Stuart Henderson wrote: > On 2015/08/18 14:27, Martin Pieuchot wrote: > > On 18/08/15(Tue) 13:05, Stuart Henderson wrote: > > > I'm trying to add v6 to my second ISP connection on pppoe1, unlike my > > > first ISP, this one requires autoconf and dhcpv6-pd to pick up addresse

acpi pci config space access fix

2015-08-18 Thread Mark Kettenis
Here is a new version of the diff to make sure we respect the access size of pci config space reads and writes in acpi code that was backed out. This version adds some code to make sure those reads and writes are properly aligned. This should prevent the panic that some people saw with the previo

Re: netcat non blocking socket

2015-08-18 Thread Alexander Bluhm
On Mon, Aug 17, 2015 at 08:26:21PM +0200, Alexander Bluhm wrote: > When running my pf regression tests, I triggered netcat hanging in > write(2). This is bit strange as poll(2) should check that the socket > is writeable. Disregard the netstat diff, fix poll(2) in the kernel instead. bluhm Inde

Re: "fix" ld -Z on powerpc

2015-08-18 Thread Miod Vallat
> > Date: Tue, 18 Aug 2015 05:03:19 + > > From: Miod Vallat > > > > > I spent some time today figuting out why the binutils update broke ld > > > -Z on powerpc. Turns out to be a fairly thorny issue. > > > > > > The new binutils discard empty setions. As a result the .gotpad0 and > > > .go

[patch] ports.7 macro fixes

2015-08-18 Thread Michael Reed
Hi, This is in the same vein as [1], which replaced the usage of `Ar' with `Cm' where applicable. Besides that, I unindented line 134 because `-offset indent' is already being used, but that's it. Regards, Michael [1]: https://marc.info/?l=openbsd-tech&m=143778713715847&w=2 Index: src/share/

Re: v6 autoconf, where have my connected routes gone?

2015-08-18 Thread Stuart Henderson
On 2015/08/18 14:27, Martin Pieuchot wrote: > On 18/08/15(Tue) 13:05, Stuart Henderson wrote: > > I'm trying to add v6 to my second ISP connection on pppoe1, unlike my > > first ISP, this one requires autoconf and dhcpv6-pd to pick up addresses > > and have them routed. (They are referring to TR-18

Re: v6 autoconf, where have my connected routes gone?

2015-08-18 Thread Martin Pieuchot
On 18/08/15(Tue) 13:05, Stuart Henderson wrote: > I'm trying to add v6 to my second ISP connection on pppoe1, unlike my > first ISP, this one requires autoconf and dhcpv6-pd to pick up addresses > and have them routed. (They are referring to TR-187, > https://www.broadband-forum.org/technical/downl

v6 autoconf, where have my connected routes gone?

2015-08-18 Thread Stuart Henderson
I'm trying to add v6 to my second ISP connection on pppoe1, unlike my first ISP, this one requires autoconf and dhcpv6-pd to pick up addresses and have them routed. (They are referring to TR-187, https://www.broadband-forum.org/technical/download/TR-187.pdf - the "residential gateway" requirements

Re: "fix" ld -Z on powerpc

2015-08-18 Thread Mark Kettenis
> Date: Tue, 18 Aug 2015 06:58:43 -0400 > From: David Higgs > > On Tue, Aug 18, 2015 at 6:22 AM, Mark Kettenis > wrote: > > > > Date: Tue, 18 Aug 2015 05:03:19 + > > > From: Miod Vallat > > > > > > > I spent some time today figuting out why the binutils update broke ld > > > > -Z on powerp

Re: "fix" ld -Z on powerpc

2015-08-18 Thread David Higgs
On Tue, Aug 18, 2015 at 6:22 AM, Mark Kettenis wrote: > > Date: Tue, 18 Aug 2015 05:03:19 + > > From: Miod Vallat > > > > > I spent some time today figuting out why the binutils update broke ld > > > -Z on powerpc. Turns out to be a fairly thorny issue. > > > > > > The new binutils discard

Re: "fix" ld -Z on powerpc

2015-08-18 Thread Mark Kettenis
> Date: Tue, 18 Aug 2015 05:03:19 + > From: Miod Vallat > > > I spent some time today figuting out why the binutils update broke ld > > -Z on powerpc. Turns out to be a fairly thorny issue. > > > > The new binutils discard empty setions. As a result the .gotpad0 and > > .gotpad1 sections h

Re: rtfree(9) and nd6_prefix_{on,off}link

2015-08-18 Thread Martin Pieuchot
On 17/08/15(Mon) 19:24, Alexander Bluhm wrote: > On Mon, Aug 17, 2015 at 07:03:55PM +0200, Martin Pieuchot wrote: > > On 17/08/15(Mon) 18:25, Alexander Bluhm wrote: > > > On Mon, Aug 17, 2015 at 12:34:13PM +0200, Martin Pieuchot wrote: > > > > Ultimately my goal is to use rt_ifa_{add,del}() instead

Re: rtfree(9) and nd6_prefix_{on,off}link

2015-08-18 Thread Alexander Bluhm
On Mon, Aug 17, 2015 at 12:34:13PM +0200, Martin Pieuchot wrote: > Ultimately my goal is to use rt_ifa_{add,del}() instead of > nd6_prefix_{on,off}link() but right now I need to remove the > rt->ref_cnt--. > > This diff does that and reduce the differences between these functions. > > Note that n