Re: specify curves via ecdhe statement in httpd.conf

2017-02-03 Thread Joel Sing
On Wednesday 01 February 2017 15:41:29 Andreas Bartelt wrote: > Hello, > > after reading the LibreSSL accouncement from today, I assumed that > specifying ecdhe "auto" in /etc/httpd.conf would enable X25519, P-256 > and P-384 on current. This is correct. > I've noticed that "auto" enables only

Re: make sosetopt responsible for m_free

2017-02-03 Thread David Hill
On Fri, Feb 03, 2017 at 09:50:40AM +0100, Martin Pieuchot wrote: > On 02/02/17(Thu) 12:12, David Hill wrote: > > On Thu, Feb 02, 2017 at 09:34:07AM +0100, Martin Pieuchot wrote: > > > On 01/02/17(Wed) 19:27, David Hill wrote: > > > > Hello - > > > > > > > > This diff makes sosetopt responsible

Re: Help with the NET_LOCK()

2017-02-03 Thread Hrvoje Popovski
On 25.1.2017. 7:32, Martin Pieuchot wrote: > I just enabled the NET_LOCK() again and I'm looking for test reports. > Please go build a kernel from sources or wait for the next snapshot, > run it and report back. > > If you're looking for some small coding tasks related to the NET_LOCK() > just

arm64: flush data and instruction cache before calling kernel

2017-02-03 Thread Patrick Wildt
Hi, turns out that machines (in my case the AMD machine) can have the MMU and caches enabled while running EFI. This means that once we jump into the kernel and disable the MMU, the cache is lost and we kind of crash. To fix that, make sure to clean the data cache and flush the instruction

arm64: properly exit EFI BootServices

2017-02-03 Thread Patrick Wildt
Hi, reading the UEFI specification (and also FreeBSD code) it turns out that to make EFI properly exit, we need to prove that we know the state of the current memory mappings. Otherwise EFI can opt to only do a partial shutdown of its services. It would be nice to eventually parse and use the

Re: 11n support for athn(4)

2017-02-03 Thread Peter Faiman
> On Jan 18, 2017, at 2:02 AM, Stefan Sperling wrote: > > On Wed, Jan 18, 2017 at 09:19:28AM +0100, Uwe Werler wrote: >> On 16. Jan 17:46:48, Uwe Werler wrote: >>> >>> Unfortunately the throughput is very low, only ~7 MBit. With mode 11g I get >>> ~16 MBit. >>> >>> >>>

Re: Add quirks to support M-Audio FastTrack Pro (uaudio)

2017-02-03 Thread Christopher Zimmermann
Hi, thanks for your patience. If some things are still unclear I'll be glad to clarify. Christopher On 2017-02-02 Martin Pieuchot wrote: > On 31/01/17(Tue) 14:05, Christopher Zimmermann wrote: > > On 2017-01-29 Martin Pieuchot wrote: > > > On

arm64: efiboot pass physical esym address

2017-02-03 Thread Patrick Wildt
Hi, due to the previous armv7 non-EFI history, our current efiboot on armv7 still manually modifies a symbol in the kernel before booting it. Since efiboot for arm64 was copied from armv7, this code is still there and the mechanism is partially in use. Why partially? Well, we pass the virtual

Re: net80211: fix bogus rateset in assoc requests in 11b mode

2017-02-03 Thread Stefan Sperling
On Fri, Feb 03, 2017 at 09:49:21AM +0100, Martin Pieuchot wrote: > On 02/02/17(Thu) 22:14, Stefan Sperling wrote: > > Note that rates get fixed up again after association is confirmed, > > via ieee80211_recv_assoc_resp() -> ieee80211_setup_rates(). > > Which is why 11b clients were already working

Re: make sosetopt responsible for m_free

2017-02-03 Thread Martin Pieuchot
On 02/02/17(Thu) 12:12, David Hill wrote: > On Thu, Feb 02, 2017 at 09:34:07AM +0100, Martin Pieuchot wrote: > > On 01/02/17(Wed) 19:27, David Hill wrote: > > > Hello - > > > > > > This diff makes sosetopt responsible for m_free which is much simpler. > > > Requested by bluhm@ > > > > I'd