Re: [patch] simplify old_filename handling in ed(1)

2018-05-23 Thread Otto Moerbeek
On Wed, May 23, 2018 at 10:39:11PM +0200, Martijn van Duren wrote: > On 05/23/18 17:17, Otto Moerbeek wrote: > > On Tue, May 22, 2018 at 07:14:34PM +0200, Martijn van Duren wrote: > > > >> Does anyone still love ed enough to give me an OK? > >> > >> On 05/05/18 14:36, Martijn van Duren wrote: > >

Re: dwiic(4) fix

2018-05-23 Thread Mike Larkin
On Tue, May 22, 2018 at 05:43:01PM +0200, Mark Kettenis wrote: > > Date: Mon, 21 May 2018 17:25:47 -0700 > > From: Mike Larkin > > > > On Mon, May 21, 2018 at 12:44:47PM +0200, Mark Kettenis wrote: > > > The diff below fixes I2C_OP_WRITE_WITH_STOP operations. Currently we > > > run the read comp

Re: [patch] simplify old_filename handling in ed(1)

2018-05-23 Thread Martijn van Duren
On 05/23/18 17:17, Otto Moerbeek wrote: > On Tue, May 22, 2018 at 07:14:34PM +0200, Martijn van Duren wrote: > >> Does anyone still love ed enough to give me an OK? >> >> On 05/05/18 14:36, Martijn van Duren wrote: >>> Hello tech@, >>> >>> The following patch simplifies the filename handling for e

Re: monitor mode for iwm(4)

2018-05-23 Thread Bruno Flueckiger
Works as expected on a 3165 device: iwm0 at pci2 dev 0 function 0 "Intel Dual Band Wireless AC 3165" rev 0x81, msi iwm0: hw rev 0x210, fw ver 16.242414.0, address xx:xx:xx:xx:xx:xx Cheers, Bruno On 23.05.18 12:31, Stefan Sperling wrote: > This diff implements monitor mode for iwm(4). > > To use

Re: cdce0 troubles on RPi3, few ways to fix, which one to choose?

2018-05-23 Thread Hiltjo Posthuma
On Mon, May 21, 2018 at 08:47:29PM +0200, Karel Gardas wrote: > > Hi, > > I do have 2 USB ethernet adapters based on Realtek 8153: > > TP-Link UE 300 > Lenovo Thinkpad USB 3.0 Gigabit Adapter > > both adapters work well with 6.3-current on amd64 platform. If however I try > to use them on RPi3

Re: monitor mode for iwm(4)

2018-05-23 Thread Carlos Cardenas
Looks good on a 7260. ok ccardenas@ +--+ Carlos On Wed, May 23, 2018 at 12:31:45PM +0200, Stefan Sperling wrote: > This diff implements monitor mode for iwm(4). > > To use it, enable 11n mode, monitor mode, and configure a channel (e.g. 11): > > ifconfig iwm0 mode 11n mediaopt monitor >

Re: [patch] simplify old_filename handling in ed(1)

2018-05-23 Thread Otto Moerbeek
On Tue, May 22, 2018 at 07:14:34PM +0200, Martijn van Duren wrote: > Does anyone still love ed enough to give me an OK? > > On 05/05/18 14:36, Martijn van Duren wrote: > > Hello tech@, > > > > The following patch simplifies the filename handling for ed and removes > > a few BACKWARDS flags. This

Re: monitor mode for iwm(4)

2018-05-23 Thread Base Pr1me
Works fine on 8265. On Wed, May 23, 2018 at 4:31 AM, Stefan Sperling wrote: > This diff implements monitor mode for iwm(4). > > To use it, enable 11n mode, monitor mode, and configure a channel (e.g. > 11): > > ifconfig iwm0 mode 11n mediaopt monitor > ifconfig iwm0 chan 11 >

Re: Unlock 16 network-related syscalls

2018-05-23 Thread Theo Buehler
On Wed, May 23, 2018 at 02:39:20PM +0200, Martin Pieuchot wrote: > On 23/05/18(Wed) 11:14, Hrvoje Popovski wrote: > > On 22.5.2018. 17:03, Theo Buehler wrote: > > > I applied the diff, made syscalls, then built and installed a new > > > kernel. With that, I ran into a reliable complete lockup on my

Re: Unlock 16 network-related syscalls

2018-05-23 Thread Mathieu -
Martin Pieuchot wrote: > On 23/05/18(Wed) 11:14, Hrvoje Popovski wrote: > > On 22.5.2018. 17:03, Theo Buehler wrote: > > > I applied the diff, made syscalls, then built and installed a new > > > kernel. With that, I ran into a reliable complete lockup on my x230 by > > > starting in an xterm > > >

Re: Unlock 16 network-related syscalls

2018-05-23 Thread Martin Pieuchot
On 23/05/18(Wed) 11:14, Hrvoje Popovski wrote: > On 22.5.2018. 17:03, Theo Buehler wrote: > > I applied the diff, made syscalls, then built and installed a new > > kernel. With that, I ran into a reliable complete lockup on my x230 by > > starting in an xterm > > > > # make -j 3 build 2>&1 | tee -

monitor mode for iwm(4)

2018-05-23 Thread Stefan Sperling
This diff implements monitor mode for iwm(4). To use it, enable 11n mode, monitor mode, and configure a channel (e.g. 11): ifconfig iwm0 mode 11n mediaopt monitor ifconfig iwm0 chan 11 ifconfig iwm0 up This command should now display wireless frames on the air: t

Re: Unlock 16 network-related syscalls

2018-05-23 Thread Mathieu -
Martin Pieuchot wrote: > By assuming that `f_data' is immutable, which AFAIK is true for sockets, > we can remove the KERNEL_LOCK() from the following syscalls iff files are > refcounted in an MP-safe way. > > This diff includes the EBUSY check in dup2(2) which is currently required > to avoid rac

Re: Unlock 16 network-related syscalls

2018-05-23 Thread Hrvoje Popovski
On 22.5.2018. 17:03, Theo Buehler wrote: > I applied the diff, made syscalls, then built and installed a new > kernel. With that, I ran into a reliable complete lockup on my x230 by > starting in an xterm > > # make -j 3 build 2>&1 | tee -a /home/theo/buildlog > > and then navigating firefox to y

Re: EVP_PKEY_asn1_{new,copy}(): pointless zeroing + a tiny bug

2018-05-23 Thread Brent Cook
ok bcook@ On Wed, May 23, 2018 at 2:11 AM, Theo Buehler wrote: > Very minor polishing, really: > > Since we converted EVP_PKEY_asn1_new() to using calloc(), there's no > need to set the structure to zero manually with an odd spelling of NULL. > Besides, the list of zeroed members is incomplete:

EVP_PKEY_asn1_{new,copy}(): pointless zeroing + a tiny bug

2018-05-23 Thread Theo Buehler
Very minor polishing, really: Since we converted EVP_PKEY_asn1_new() to using calloc(), there's no need to set the structure to zero manually with an odd spelling of NULL. Besides, the list of zeroed members is incomplete: it misses sig_print. Copy-pasting this list is likely the reason why EVP_P