Re: bridge: drop gif(4) support

2016-08-30 Thread David Gwynne
ok > On 31 Aug 2016, at 02:09, Martin Pieuchot wrote: > >

Enabling rasops24

2016-08-30 Thread YASUOKA Masahiko
Enabling rasops24 in files.amd64 makes QEMU with UEFI start working. But.. the background color of the kernel message is sometimes red or green where it should be blue. ok for files.amd64? comments for the color problem? Index: sys/arch/amd64/conf/files.amd64

Re: Estonian keymap

2016-08-30 Thread Mart Tõnso
This should be ok now: Index: sys/dev/pckbc/wskbdmap_mfii.c === RCS file: /cvs/src/sys/dev/pckbc/wskbdmap_mfii.c,v retrieving revision 1.43 diff -u -p -r1.43 wskbdmap_mfii.c --- sys/dev/pckbc/wskbdmap_mfii.c 14 Apr 2013 19:32:

Re: [patch] cwm: Always keep client visible

2016-08-30 Thread Vadim Vygonets
Version 3 of the patch fixes region border calculation in client_keep_visible(). Quoth Vadim Vygonets on Mon, Jul 18, 2016: > cwm makes a client active only when the mouse pointer enters the > window. Thus, once a client is off screen and another becomes > active, it's lost forever. > > The atta

bridge: drop gif(4) support

2016-08-30 Thread Martin Pieuchot
6.0 is out, that means etherip(4) has been around for more than two releases, times to remove gif(4) support from bridge? ok? Index: net/if_bridge.c === RCS file: /cvs/src/sys/net/if_bridge.c,v retrieving revision 1.280 diff -u -p -

Re: cwm: Three tiny patches

2016-08-30 Thread Vadim Vygonets
Quoth Vadim Vygonets on Sun, Dec 13, 2015: > cwm-cycling-urgency.diff > Don't clear urgency flag while cycling Version 2 of the patch clears the urgency flag after cycling. Vadik. -- You have good days and bad days, and depression's something that, you know, is always with you.

Re: Estonian keymap

2016-08-30 Thread Mart Tõnso
Hello, > > Updated Estonian keymap patch for current. Original from 2005 at > > http://marc.info/?l=openbsd-tech&m=112873075504474 > > The tabs in your diff seem to have suffered from copy/paste (maybe your > MUA is at fault). As is, the diff doesn't apply. Well, this is embarrassing... Let's

Re: remove ifdef from ftpd

2016-08-30 Thread Ted Unangst
Jeremie Courreges-Anglas wrote: > I think that's a better choice. > > > > >> > >> > -#else > >> > -while (fgets(line, sizeof(line), fd) != NULL) { > >> > -line[strcspn(line, "\n")] = '\0'; > >> > -lreply(530, "%s", line); > >> > -

Re: relayd TLS ticket and session support accross processes

2016-08-30 Thread Bob Beck
Quite Frankly, we're happy to support what's needed in relayd, But first relayd needs to actually convert to use libtls instead of bare knuckles shit Until then we're just making the problem worse. IMO, we should convert relayd to use libtls - (add what we need to libtls to support it) before ad

Re: remove ifdef from ftpd

2016-08-30 Thread Jeremie Courreges-Anglas
"Ted Unangst" writes: > Jeremie Courreges-Anglas wrote: >> Here the code attempts to deal with IPv4-mapped IPv6 addresses, >> something that won't show up on OpenBSD. We don't support them on >> purpose, to avoid surprises and this kind of ugly code. >> >> One could argue that if someone ported

Re: Estonian keymap

2016-08-30 Thread Jeremie Courreges-Anglas
Hi, > Updated Estonian keymap patch for current. Original from 2005 at > http://marc.info/?l=openbsd-tech&m=112873075504474 The tabs in your diff seem to have suffered from copy/paste (maybe your MUA is at fault). As is, the diff doesn't apply. -- jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293

Re: remove ifdef from ftpd

2016-08-30 Thread Ted Unangst
Jeremie Courreges-Anglas wrote: > Here the code attempts to deal with IPv4-mapped IPv6 addresses, > something that won't show up on OpenBSD. We don't support them on > purpose, to avoid surprises and this kind of ugly code. > > One could argue that if someone ported the ftpd code to another OS, h

Re: 'struct route' and syncache

2016-08-30 Thread Jeremie Courreges-Anglas
Martin Pieuchot writes: > Use 'sc_route{4,6}' directly instead of casting to the almost extinct > 'struct route *'. This help fixing remaining use of 'struct route'. > > ok? ok -- jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF DDCC 0DFA 74AE 1524 E7EE

Re: remove ifdef from ftpd

2016-08-30 Thread Jeremie Courreges-Anglas
"Ted Unangst" writes: > stop testing for stuff we have. ok, but there's possible concern over one chunk. > Index: ftpd.c > === > RCS file: /cvs/src/libexec/ftpd/ftpd.c,v > retrieving revision 1.219 > diff -u -p -r1.219 ftpd.c > ---

Re: relayd TLS ticket and session support accross processes

2016-08-30 Thread Reyk Floeter
On Tue, Aug 30, 2016 at 03:51:04PM +0200, Claudio Jeker wrote: > On Tue, Aug 30, 2016 at 02:44:17PM +0200, Reyk Floeter wrote: > > On Tue, Aug 30, 2016 at 01:22:49PM +0200, Claudio Jeker wrote: > > > Here is the latest version of the ticket and tls session cache support. > > > Tickets can be disabl

Re: relayd TLS ticket and session support accross processes

2016-08-30 Thread Claudio Jeker
On Tue, Aug 30, 2016 at 02:44:17PM +0200, Reyk Floeter wrote: > On Tue, Aug 30, 2016 at 01:22:49PM +0200, Claudio Jeker wrote: > > Here is the latest version of the ticket and tls session cache support. > > Tickets can be disabled and also the session timeout is configurable. > > Same code as befor

Panasonic Toughbook CF-30mk2

2016-08-30 Thread Dylan
I was asked to send a dmesg after successful installation. I have only done minimal testing of hardware features so far, but basic functionality definitely works. WiFi works (after downloading the firmware over a wired link), sleep works, waking works, and WiFi works after sleep (after I added /etc

remove ifdef from ftpd

2016-08-30 Thread Ted Unangst
stop testing for stuff we have. Index: ftpd.c === RCS file: /cvs/src/libexec/ftpd/ftpd.c,v retrieving revision 1.219 diff -u -p -r1.219 ftpd.c --- ftpd.c 26 Aug 2016 06:32:10 - 1.219 +++ ftpd.c 30 Aug 2016 12:50:04

Re: relayd TLS ticket and session support accross processes

2016-08-30 Thread Reyk Floeter
On Tue, Aug 30, 2016 at 01:22:49PM +0200, Claudio Jeker wrote: > Here is the latest version of the ticket and tls session cache support. > Tickets can be disabled and also the session timeout is configurable. > Same code as before with man page diff > Nice work! I'm curious how this impact produc

Re: Heads up to Xen users following -current

2016-08-30 Thread Mike Belopuhov
On Aug 30, 2016 10:56 AM, "Claudio Jeker" wrote: > > On Tue, Aug 30, 2016 at 10:48:53AM +0200, Mike Belopuhov wrote: > > On Tue, Aug 30, 2016 at 08:31 +0200, Mark Kettenis wrote: > > > > Date: Tue, 30 Aug 2016 07:48:09 +0200 > > > > From: Mike Belopuhov > > > > > > > > On Tue, Aug 30, 2016 at 09:

Re: Heads up to Xen users following -current

2016-08-30 Thread Alexander Bluhm
On Tue, Aug 30, 2016 at 09:58:59AM +1000, David Gwynne wrote: > On Mon, Aug 29, 2016 at 08:30:37PM +0200, Alexander Bluhm wrote: > > em 82573E drops to 200 MBit/sec output, 82546GB and 82540EM do only > > 10 MBit anymore. > > does this diff help those chips? No, it does not change anything. > >

relayd TLS ticket and session support accross processes

2016-08-30 Thread Claudio Jeker
Here is the latest version of the ticket and tls session cache support. Tickets can be disabled and also the session timeout is configurable. Same code as before with man page diff Will commit this soonish unless somebody complains -- :wq Claudio Index: Makefile =

Re: syslogd tls config errors

2016-08-30 Thread Bob Beck
Looks good to me. ok beck@ On Mon, Aug 29, 2016 at 09:37:00PM +0200, Alexander Bluhm wrote: > Hi, > > Add more information into syslogd tls config error messages. > > ok? > > bluhm > > Index: usr.sbin/syslogd/syslogd.c > ==

Re: syslogd tls config errors

2016-08-30 Thread Sebastian Benoit
ok Alexander Bluhm(alexander.bl...@gmx.net) on 2016.08.29 21:37:00 +0200: > Hi, > > Add more information into syslogd tls config error messages. > > ok? > > bluhm > > Index: usr.sbin/syslogd/syslogd.c > === > RCS file: /data/mirr

Re: pool_setipl for rt bits

2016-08-30 Thread Claudio Jeker
On Tue, Aug 30, 2016 at 07:36:09PM +1000, David Gwynne wrote: > ok? Needs to be OK or we have a serious issue. > Index: radix.c > === > RCS file: /cvs/src/sys/net/radix.c,v > retrieving revision 1.52 > diff -u -p -r1.52 radix.c > --

Re: Heads up to Xen users following -current

2016-08-30 Thread Claudio Jeker
On Tue, Aug 30, 2016 at 10:48:53AM +0200, Mike Belopuhov wrote: > On Tue, Aug 30, 2016 at 08:31 +0200, Mark Kettenis wrote: > > > Date: Tue, 30 Aug 2016 07:48:09 +0200 > > > From: Mike Belopuhov > > > > > > On Tue, Aug 30, 2016 at 09:58 +1000, David Gwynne wrote: > > > > On Mon, Aug 29, 2016 at 0

Re: removing expired once rules in pf_purge_thread()

2016-08-30 Thread Alexandr Nedvedicky
Hello, On Tue, Aug 30, 2016 at 10:53:56AM +1000, David Gwynne wrote: > > > On 17 Dec 2015, at 13:30, Richard Procter > > wrote: > > > > > > Hi Sasha, > > > > On Fri, 18 Dec 2015, Alexandr Nedvedicky wrote: > > > >>> Right. I'll just note though that the patch as it stands allows > >>> mul

pool_setipl for rt bits

2016-08-30 Thread David Gwynne
ok? Index: radix.c === RCS file: /cvs/src/sys/net/radix.c,v retrieving revision 1.52 diff -u -p -r1.52 radix.c --- radix.c 6 Nov 2015 18:07:57 - 1.52 +++ radix.c 30 Aug 2016 09:35:21 - @@ -1225,6 +1225,7 @@ rn_in

Re: Heads up to Xen users following -current

2016-08-30 Thread Mike Belopuhov
On Tue, Aug 30, 2016 at 08:31 +0200, Mark Kettenis wrote: > > Date: Tue, 30 Aug 2016 07:48:09 +0200 > > From: Mike Belopuhov > > > > On Tue, Aug 30, 2016 at 09:58 +1000, David Gwynne wrote: > > > On Mon, Aug 29, 2016 at 08:30:37PM +0200, Alexander Bluhm wrote: > > > > On Mon, Aug 29, 2016 at 07:1