Re: softdep by default on AMD64

2015-07-29 Thread Theo de Raadt
> Theo de Raadt wrote: > > > I understand that you guys are having fun with this. If you think this > > > is actually an issue, though, it's probably a good idea to suggest an > > > FAQ change. "Generally reliable" is a pretty lukewarm review compared to > > > the current FAQ, which doesn't mention

small typo in www/faq/ports/guide.html

2015-07-29 Thread Clemens Goessnitzer
Hello @tech, I attached a patch to correct a small typo in www/faq/ports/guide.html. It is my very first patch, so please forgive any mistakes I made. Best regards, Clemens Index: guide.html === RCS file: /cvs/www/faq/ports/guide

Re: softdep by default on AMD64

2015-07-29 Thread Michael McConville
Theo de Raadt wrote: > > I understand that you guys are having fun with this. If you think this > > is actually an issue, though, it's probably a good idea to suggest an > > FAQ change. "Generally reliable" is a pretty lukewarm review compared to > > the current FAQ, which doesn't mention any downs

Re: softdep by default on AMD64

2015-07-29 Thread Theo de Raadt
> I understand that you guys are having fun with this. If you think this > is actually an issue, though, it's probably a good idea to suggest an > FAQ change. "Generally reliable" is a pretty lukewarm review compared to > the current FAQ, which doesn't mention any downsides: > > http://www.o

Re: softdep by default on AMD64

2015-07-29 Thread Michael McConville
Артур Истомин wrote: > On Tue, Jul 28, 2015 at 06:19:11AM -0700, Chris Cappuccio wrote: > > ?? ?? [art.is...@yandex.ru] wrote: > > > On Fri, Jul 24, 2015 at 07:56:07AM +0100, Nicholas Marriott wrote: > > > > "generally reliable" HAHAHAHAHA > > > > > > Why irony? It's more or le

Re: softdep by default on AMD64

2015-07-29 Thread Bob Beck
Ffs + softdep + soft raid crypto: Sounds like you have a case of Bill Murray http://m.youtube.com/watch?v=bOtMizMQ6oM On 29 Jul 2015 18:33, "Michael McConville" wrote: > Артур Истомин wrote: > > Yeh, cutting edge.. I have system lock/freeze every time with > > bittorent (aria2 or rtorrent) when

Re: softdep by default on AMD64

2015-07-29 Thread Michael McConville
Артур Истомин wrote: > Yeh, cutting edge.. I have system lock/freeze every time with > bittorent (aria2 or rtorrent) when net bandwidth 5 mbit/s or more :) > > (ffs+softdep on softraid crypto) I've been getting I/O errors and other strange problems with softraid crypto, both with and without sof

Re: softdep by default on AMD64

2015-07-29 Thread Артур Истомин
On Tue, Jul 28, 2015 at 06:19:11AM -0700, Chris Cappuccio wrote: > ?? ?? [art.is...@yandex.ru] wrote: > > On Fri, Jul 24, 2015 at 07:56:07AM +0100, Nicholas Marriott wrote: > > > "generally reliable" HAHAHAHAHA > > > > Why irony? It's more or less true for ALL modern computing

Re: fixes for coverity warnings to cat(1)

2015-07-29 Thread Sevan Janiyan
On 29/07/2015 23:24, Todd C. Miller wrote: > I don't really see any need for this diff. ugh, sorry if I wasted your time, thanks for the explanation. Sevan

Re: Add support for SGR parameters 39 and 49

2015-07-29 Thread Matthew Martin
On Sun, Jul 12 2015 at 12:23:48 -0500, Matthew Martin wrote: > Currently on the console > echo '\033[34mblue\033[39m white' > will echo both words with a blue foreground. Add support for SGR 39 and > 49 that reset the fg and bg color respectively back to default. > > - Matthew Martin > > > Index: w

Re: fixes for coverity warnings to cat(1)

2015-07-29 Thread Todd C. Miller
On Wed, 29 Jul 2015 17:41:19 -0400, "Ted Unangst" wrote: > when does fileno(stdin) return -1? It looks like _file in struct __sFILE (aka FILE) is only -1 for non-files, e.g. for things like snprintf(). I've verified that fileno(stdin) still returns 0 even when stdin is closed. This is true rega

Re: fixes for coverity warnings to cat(1)

2015-07-29 Thread Ted Unangst
Sevan Janiyan wrote: > > > On 21/07/2015 00:16, Sevan Janiyan wrote: > > Hi, > > Attached is a diff for a couple of issues raised by coverity, obtained > > from NetBSD src/bin/cat/cat.c r1.53 & r1.54 > > > >>From the commit message in NetBSD CVS: > > "bin/cat/cat.c 976654 Argument cannot be nega

Re: fixes for coverity warnings to cat(1)

2015-07-29 Thread Todd C. Miller
Note that fileno() does not set errno so you should probably set errno to EBADF before the calls to warn() or err(). - todd

Re: fixes for coverity warnings to cat(1)

2015-07-29 Thread Sevan Janiyan
On 21/07/2015 00:16, Sevan Janiyan wrote: > Hi, > Attached is a diff for a couple of issues raised by coverity, obtained > from NetBSD src/bin/cat/cat.c r1.53 & r1.54 > >>From the commit message in NetBSD CVS: > "bin/cat/cat.c 976654 Argument cannot be negative > (missing ch

envy: recover after missed interrupts

2015-07-29 Thread Alexandre Ratchov
This diff allows the audio(4) driver to properly recover, when the envy(4) device misses interrupts. Fixes permanent distortion on MP systems. OK? Index: envy.c === RCS file: /cvs/src/sys/dev/pci/envy.c,v retrieving revision 1.60 dif