Re: Patch for Atheros AR8161/AR8162/AR8171/AR8172 chipsets

2016-07-17 Thread Jonathan Gray
On Sun, Jul 17, 2016 at 10:52:33PM -0400, Jason Hunt wrote: > Below is a patch to add support for Atheros AR8161, AR8162, AR8171, and > AR8172 chipsets. A version of this was originally submitted by Atanas > Vladimirov in early 2015 (see reference below) but never merged, so I > have updated it

Patch for Atheros AR8161/AR8162/AR8171/AR8172 chipsets

2016-07-17 Thread Jason Hunt
Below is a patch to add support for Atheros AR8161, AR8162, AR8171, and AR8172 chipsets. A version of this was originally submitted by Atanas Vladimirov in early 2015 (see reference below) but never merged, so I have updated it for current and have been using it all afternoon without any issues:

Re: initialize variables patch for bn_nist.c

2016-07-17 Thread Ted Unangst
Brent Cook wrote: > I didn't notice it at first, because the patch wasn't inline, but the union > here needed to be initialized with memset or use a different kind of > initializer. > > I went with the memset on top of your patch: > > --- bn_nist.c 17 Jul 2016 21:21:40 - 1.16 > +++

Re: Better for mount(2)

2016-07-17 Thread Vadim Zhukov
Here is an improved version, after a lot of feedback from jmc@. Quick list of changes: * the unmount description moved closer to the top, since we mention it in flags description anyway; * list of mount options is now sorted; * the description of the MNT_RELOAD flag was added; * the

Re: initialize variables patch for bn_nist.c

2016-07-17 Thread Brent Cook
I didn't notice it at first, because the patch wasn't inline, but the union here needed to be initialized with memset or use a different kind of initializer. I went with the memset on top of your patch: --- bn_nist.c 17 Jul 2016 21:21:40 - 1.16 +++ bn_nist.c 17 Jul 2016 22:00:45

Re: [PATCH] Callback-based interface to libtls

2016-07-17 Thread Bob Beck
Excellent. Im currently travelling but I think you will be hearing from Joel Aside from any minor changes i will say i basically like your diff, we may need to wait for after OpenBSD 6.0 to put it in (few weeks) as we are close to release and api changes now can hurt ports but thank you very

[PATCH] Callback-based interface to libtls

2016-07-17 Thread Tobias Pape
Hi all, I'm Tobias and fond of using libtls. I have a certain use case, where I want to do TLS/SSL but can only work with buffers/callbacks and not sockets or FDs. In p(l)ain openssl, this is doable, but not nice. Libtls does not yet have such a facility. I did a patch (or Pull-Request in