Re: bpfilter_create kassert panic

2016-07-24 Thread Martin Natano
On Sun, Jul 24, 2016 at 09:31:08AM -0400, Ted Unangst wrote: > Alexander Bluhm wrote: > > Hi, > > > > When running some scapy regression tests, a current i386 machine > > triggered this panic. > > dunno if this is best. maybe. the refcounting of units implies that they can > last longer than clos

Re: thunderbird segfault: mmap W^X violation

2016-08-07 Thread Martin Natano
On Sun, Aug 07, 2016 at 01:43:08PM +0200, Peter N. M. Hansteen wrote: > > /var/log/messages reports > > Aug 7 13:34:27 elke /bsd: thunderbird(10425): mmap W^X violation You will need the wxallowed mount option on /usr/local as long as you use ports that map w|x pages. See http://www.openb

make ${

2016-10-08 Thread Martin Natano
On Fri, Oct 07, 2016 at 09:03:40AM -0400, Dario Niedermann wrote: > >Synopsis:make: empty expansion of $( >Category:user > >Environment: > System : OpenBSD 5.8 > Details : OpenBSD 5.8 (GENERIC.MP) #1: Wed Oct 14 19:40:42 CEST 2015 > > jas...@stab

Re: make ${

2016-10-08 Thread Martin Natano
> > > > Now, this was observed on OpenBSD 5.8, but a search for the changes and > > fixes between that version and 6.0 doesn't show any changes for make. > > > > >How-To-Repeat: > > === TEST MAKEFILE === > > a.o:# just touch 'a.c' before running this makefile > > > > .c.o: >

pkg_add "signify: write to stdout: Broken pipe"

2016-10-12 Thread Martin Natano
I've seen this since the new signing method has been implemented. I blamed it on something being out of date/sync on my machine, but after updating to the latest snapshot yesterday (the one from ftp.fr) it becomes clear that either something is seriously hosed on my system or there is an issue in p

Re: pkg_add "signify: write to stdout: Broken pipe"

2016-10-12 Thread Martin Natano
On Wed, Oct 12, 2016 at 11:21:51AM +0200, Marc Espie wrote: > > Hum, what does it say if you remove the signify step, e.g., > pkg_add -Dunsigned ? natano@watschnbaum:~$ pkg_add -Dunsigned -nuix vim natano@watschnbaum:~$ ^D

Re: your mail

2016-10-14 Thread Martin Natano
On Fri, Oct 07, 2016 at 09:03:40AM -0400, Dario Niedermann wrote: > >Synopsis:make: empty expansion of $( >Category:user > >Environment: > System : OpenBSD 5.8 > Details : OpenBSD 5.8 (GENERIC.MP) #1: Wed Oct 14 19:40:42 CEST 2015 > > jas...@stab

Re: bad kernel id in bsd file

2016-10-16 Thread Martin Natano
On Sun, Oct 16, 2016 at 12:31:20PM +0200, Theo Buehler wrote: > On Sun, Oct 16, 2016 at 11:13:09AM +0100, Stuart Henderson wrote: > > I'm OK with that. > > Thanks, I think I prefer the version with quotes, for consistency and > safety. Still ok? OK. > > Index: newvers.sh >

Re: pkg_add "signify: write to stdout: Broken pipe"

2016-11-23 Thread Martin Natano
On Tue, Nov 22, 2016 at 04:21:58PM +0100, Marc Espie wrote: > I'm pretty sure you have something funky in your shell, > I've been able to reproduce this finally. > > $ trap "" PIPE > $ $ pkg_add -nuix screen-- > quirks-2.270 signed on 2016-11-21T13:44:48Z > Error from > http://ftp.fr.openbsd.org/

Re: CVS: cvs.openbsd.org: src

2016-04-01 Thread Martin Natano
On Fri, Apr 01, 2016 at 10:21:10PM +0200, Martijn van Duren wrote: > On 03/31/16 22:00, Martin Natano wrote: > > CVSROOT:/cvs > > Module name:src > > Changes by: nat...@cvs.openbsd.org 2016/03/31 14:00:17 > > > > Modified files: > > sys/s

Re: Small lock.c patch

2016-05-28 Thread Martin Natano
On Fri, May 27, 2016 at 11:05:30PM -0300, Gleydson Soares wrote: > > Ted Unangst writes: > > > ilya.kali...@gmail.com wrote: > >> Brace belongs to switch statement, not while loop > >> > >> RCS file: /cvs/src/usr.bin/lock/lock.c,v > >> retrieving revision 1.32 > >> diff -u -p -r1.32 lock.c > >>

Re: pax pledge issue

2017-04-16 Thread Martin Natano
On Sat, Apr 15, 2017 at 10:27:19PM +0200, Matthieu Herrb wrote: > On 6.1 and -current. run 'pax' without any argment. > > $ pax > Abort (core dumped) > Exit 134 > > $ dmesg | tail -1 > pax(81327): syscall 54 "tty" > > $ ktrace pax > $ kdump | tail -4 > 19681 pax CALL ioctl(0,MTIOCGET,0x7f

Re: pax pledge issue

2017-04-17 Thread Martin Natano
On Sun, Apr 16, 2017 at 09:23:37AM -0600, Theo de Raadt wrote: > > I am quite averse to pledge inserting errnos rather than failure > because it creates a "posix variant" rather than "enforcement", > however I was wondering about doing a bit different here since the > tape ioctl's are not really P

Re: Missing LVM (Logical Volume Manager)

2018-11-17 Thread Martin Natano
Please don't use bugs@ for feature requests. The safest bet for getting a feature in the future is to send a diff. ... this said, I think your particular problem can be solved by using bioctl(8) to build a softraid with CONCAT discipline to combine physical disk partitions into a "logical volume".

Re: hw.sensors.acpithinkpad0.temp* disappear after suspend

2013-06-28 Thread Martin Natano
Here the output from the printf: acpithinkpad0: invalid temperature: 128 acpithinkpad0: invalid temperature: 128 acpithinkpad0: invalid temperature: 128 acpithinkpad0: invalid temperature: 128 acpithinkpad0: invalid temperature: 128 acpithinkpad0: invalid temperature: 128 acpithinkpad0: invalid tem

Re: hw.sensors.acpithinkpad0.temp* disappear after suspend

2013-06-29 Thread Martin Natano
My original diff would be an improvement, but I think it is not sufficient, because I have found some more problems with the refresh code. The return value of aml_evalinteger is not checked and it sporadically _does_ return ACPI_E_BADVALUE. When aml_evalinteger returns non-zero, tmp is not touched

Re: hw.sensors.acpithinkpad0.temp* disappear after suspend

2013-06-29 Thread Martin Natano
:s/My original diff/Vadim Zhukovs updated diff/ Sorry for the noise.

ksh prints garbage when using keybinding in search-history

2013-07-03 Thread Martin Natano
>Synopsis: ksh prints garbage when using keybinding in search-history >Category: system user >Environment: System : OpenBSD 5.3 Details : OpenBSD 5.3-current (GENERIC.MP) #17: Wed Jul 3 07:43:40 CEST 2013 nat...@watschnbaum.my.domain:/h