Re: if_netisr(): trade NET_LOCK() for NET_RLOCK()

2019-06-04 Thread Martin Pieuchot
On 04/06/19(Tue) 01:37, Alexandr Nedvedicky wrote: > Hello, > > diff below is just cosmetic change, which has no impact on current > functionality, because there is just single network task to deliver packets to > IP stack. I just want to push this small change to tree to minimize delta > between

Re: [Patch] Driver for Keyspan USA-19HS

2019-06-04 Thread Tracey Emery
On Mon, Jun 03, 2019 at 11:44:37PM -0400, Cody Cutler wrote: > Hi jcs and tech, the following is a patch which implements jcs's feedback and > adds a man page. > > Note that one must execute `make -C sys/dev/usb' after applying to build. > > Thanks! > > diff --git share/man/man4/Makefile

Re: [patch] use acme-client to sign certificated with ecdsa keys

2019-06-04 Thread Renaud Allard
On 6/3/19 11:53 AM, Renaud Allard wrote: On 5/29/19 9:58 AM, Florian Obser wrote: On Wed, May 22, 2019 at 01:33:11PM +0200, Renaud Allard wrote: The key needs to be generated manually i.e.: openssl ecparam -genkey -name secp384r1 -out privkey.pem why not let acme-client generate the key?

Re: Pump my sched: fewer SCHED_LOCK() & kill p_priority

2019-06-04 Thread Mike Larkin
On Mon, Jun 03, 2019 at 11:50:14AM +0200, Solene Rapenne wrote: > On Sat, Jun 01, 2019 at 06:55:20PM -0300, Martin Pieuchot wrote: > > Diff below exists mainly for documentation and test purposes. If > > you're not interested about how to break the scheduler internals in > > pieces, don't read

Re: [patch] rsync: fix another double close socket descriptor

2019-06-04 Thread Sebastian Benoit
Christian Weisgerber(na...@mips.inka.de) on 2019.06.03 14:39:14 -: > On 2019-06-02, Hiltjo Posthuma wrote: > > > I noticed when using openrsync with a remote and a ssh_prog set (-e option) > > the > > socket is closed twice also. > > Yes, we need to decide whether rsync_socket() should

Re: if_netisr(): trade NET_LOCK() for NET_RLOCK()

2019-06-04 Thread Alexandr Nedvedicky
Hello, I see, I owe some clarification to share wider context of this change. On Tue, Jun 04, 2019 at 10:32:57AM -0300, Martin Pieuchot wrote: > On 04/06/19(Tue) 01:37, Alexandr Nedvedicky wrote: > > Hello, > > > > diff below is just cosmetic change, which has no impact on current > >

Re: bgpd set nexthop 198.51.100.42 clarifications

2019-06-04 Thread Claudio Jeker
On Wed, May 29, 2019 at 03:21:34PM +0200, Claudio Jeker wrote: > On Tue, May 28, 2019 at 07:09:00PM +0200, Job Snijders wrote: > > On Tue, May 28, 2019 at 05:17:08PM +0200, Claudio Jeker wrote: > > > On Tue, May 28, 2019 at 01:28:32PM +0200, Job Snijders wrote: > > > > On Mon, May 13, 2019 at

Re: net80211: fix ifconfig mode command

2019-06-04 Thread Stefan Sperling
On Wed, May 22, 2019 at 02:49:43PM +0200, Stefan Sperling wrote: > On Mon, Apr 15, 2019 at 04:56:52PM +0200, Stefan Sperling wrote: > > The ifconfig mode command is broken; It is supposed to force a wireless > > interface into 11a/b/g/n media mode. This stopped working some time ago, > > probably

Re: bfd: respond to poll sequence from peer

2019-06-04 Thread Claudio Jeker
On Mon, Jun 03, 2019 at 08:37:17PM +1000, Mitchell Krome wrote: > Hi, > > Testing bfd against frr on linux, their bfd implementation sends polls > as soon as the session is up even if the session timers haven't > changed from what it was advertising while it was in the down state. > Currently

Re: Pump my sched: fewer SCHED_LOCK() & kill p_priority

2019-06-04 Thread Hrvoje Popovski
On 2.6.2019. 21:41, Martin Pieuchot wrote: > On 01/06/19(Sat) 18:55, Martin Pieuchot wrote: >> Diff below exists mainly for documentation and test purposes. If >> you're not interested about how to break the scheduler internals in >> pieces, don't read further and go straight to testing! >