Re: caesar(6) documents incorrect frequencies

2017-08-09 Thread Matthew Martin
On Tue, Aug 01, 2017 at 08:41:32AM -0500, Matthew Martin wrote: > On Tue, Aug 01, 2017 at 07:38:28AM -0600, Theo de Raadt wrote: > > > On Tue, Aug 01, 2017 at 07:28:39AM -0600, Theo de Raadt wrote: > > > > I've known about ETAONRISHetc basically forever. Where is this new > > > > order (ETSAORINDH

sobind() & socket lock

2017-08-09 Thread Martin Pieuchot
Diff below move solock()/sounlock() outside of sobind(). It's the next logical step to merge all the lock/unlock dances in nfs_connect(). ok? Index: kern/uipc_socket.c === RCS file: /cvs/src/sys/kern/uipc_socket.c,v retrieving revis

wscons(4): remove compiled out case statements

2017-08-09 Thread Frederic Cambus
Hi tech@, Remove some case statements which have been compiled out since 2000. Comments? OK? Index: sys/dev/wscons/wsemul_vt100.c === RCS file: /cvs/src/sys/dev/wscons/wsemul_vt100.c,v retrieving revision 1.35 diff -u -p -r1.35 wsem

Re: show ASN details in bgplg(8)

2017-08-09 Thread Peter Hessler
Sorry for the delay. I just committed this, thanks! On 2017 Jul 19 (Wed) at 21:40:09 +0200 (+0200), Denis Fondras wrote: :Hi, : :I can be useful to display details about an ASN from the looking-glass. : :rt-grav-01.liopen.net> show ip bgp detail as 199881 : :BGP routing table entry for 2a00:6060

faq/ports/guide: Fix old style example

2017-08-09 Thread Klemens Nanni
:: is old style and bsd.port.mk(5) will through a fatal error when using it, $V is now used consistently. Feedback? Comments? Index: guide.html === RCS file: /cvs/www/faq/ports/guide.html,v retrieving revision 1.73 diff -u -p -r1.73

rwlock & panic

2017-08-09 Thread Martin Pieuchot
If the kernel panic'd while holding the NET_LOCK(), typing "boot reboot" wont work. The problem is that if_downall() called in boot() tries to grab the NET_LOCK(). Can we tell rw_enter() to try his best after a panic? This fix my NET_LOCK() debugging experience. ok? Index: kern/kern_rwlock.c =

Re: Add "PNP0303" to acpi_isa_hids[]

2017-08-09 Thread Mark Kettenis
> Authentication-Results: xs4all.nl; spf=pass smtp.mailfrom=openbsd.org; > dkim=pass header.d=gmail.com; dmarc=pass header.from=gmail.com > DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; > d=gmail.com; s=20161025; > h=date:from:to:subject:message-id:reply-to:mime-versio

Add "PNP0303" to acpi_isa_hids[]

2017-08-09 Thread David Coppa
Is the diff below ok? It makes the line "PNP0303" at acpi0 not configured disappear from my dmesg. Index: dev/acpi/acpi.c === RCS file: /cvs/src/sys/dev/acpi/acpi.c,v retrieving revision 1.330 diff -u -p -u -p -r1.330 acpi.c --- d