add m_defrag to pcn driver

2015-03-31 Thread Kimberley Manning
Hi, This diff makes the pcn driver use m_defrag for fragmented mbuf chains, cheers, Kim Index: if_pcn.c === RCS file: /cvs/src/sys/dev/pci/if_pcn.c,v retrieving revision 1.36 diff -u -p -r1.36 if_pcn.c --- if_pcn.c14 Mar 2015

Re: tls_accept_socket() error message

2015-03-31 Thread Joel Sing
On Tuesday 31 March 2015, Tim van der Molen wrote: httpd/server.c contains the following: ret = tls_accept_socket(srv-srv_tls_ctx, clt-clt_tls_ctx, clt-clt_s); [...] } else if (ret != 0) { log_warnx(%s: TLS accept failed - %s, __func__,

[PATCH]: move UTF8_getc/UTF8_putc declarations to asn1.h

2015-03-31 Thread Austin English
Hello, This patch moves UTF8_getc and UTF8_putc from asn1_locl.h to asn1.h. These functions are exported in asn1.h in OpenSSL, and is used by some applications, e.g., PKIX-SSH (http://roumenpetrov.info/openssh/). I've sent a pull request on GitHub, for reference:

Use LIST for upd(4) sensors

2015-03-31 Thread David Higgs
This was much more straightforward than expected. - Replace an array with a LIST of allocated sensors. - Remove or rescope variables counting sensors. - Allocated sensors are always attached. - Drop an unnecessary size calculation. Thanks. --david --- a/upd.c +++ b/upd.c @@ -23,6 +23,7 @@

Simplify upd(4) attach

2015-03-31 Thread David Higgs
First in what will probably be a slow trickle, as I split my original big diff into more-easily reviewed chunks and test each in sequence. This patch makes upd_attach less confusing: 1. Ignore all bogus report IDs up front, they shouldn't be queried. 2. When a sensor is attached, it will be

csh.1: single and double quotes, backticks and tildas

2015-03-31 Thread Theo Buehler
Inspired by a recent commit of bentley@, I decided to clean up the quoting characters in the csh man-page a bit: Force ASCII versions of `, ', and ~ when appropriate, that is, escape them as \(ga, \(aq, and \(ti in code snippets, commands, etc. For the sake of consistency use \(dq instead of \

Re: ef(4), eg(4), el(4), ex(4) and ie(4)

2015-03-31 Thread Miod Vallat
I'm afraid my ISA ec(4) seems to no longer work. Blinks red during POST, doesn't get detected by the kernel (yes, it's jumped correctly). Does that mean we can cvs rm the driver? :) I think I have another one somewhere, but I can't find it at the moment. It might have commited suicide by

Tcl/Tk entry in www/57.html

2015-03-31 Thread Alexey Suslikov
Hi tech@. Tcl/Tk 8.5.16 and 8.6.2 line (Some highlights section) appears twice: ... Tcl/Tk 8.5.16 and 8.6.2 TeX Live 2013 Tcl/Tk 8.5.16 and 8.6.2 ...

sort: useless use of cat

2015-03-31 Thread Tobias Stoeckmann
I see a useless use of cat in here. Manual page: When called with the -d option, it must decompress standard input to standard output. Index: file.c === RCS file: /cvs/src/usr.bin/sort/file.c,v retrieving revision 1.4 diff -u -p -u

Re: ef(4), eg(4), el(4), ex(4) and ie(4)

2015-03-31 Thread Miod Vallat
What, no ec? No ep? Why play favorites??? You're asking for tricky ones! Enjoy :) I'm afraid my ISA ec(4) seems to no longer work. Blinks red during POST, doesn't get detected by the kernel (yes, it's jumped correctly). However, the elink3.c change works on ep1 at pci0 dev 15 function 0

Re: sort output file permissions

2015-03-31 Thread Tobias Stoeckmann
Setting permissions without setting owner and group can have rather inconvenient results. See this example with latest code: $ touch test $ chgrp wheel test $ chmod g+w test $ ls -l test -rw-rw-r-- 1 tobias wheel 0 Mar 31 20:05 test $ ./sort -o test test $ ls -l test -rw-rw-r-- 1 tobias

Re: ef(4), eg(4), el(4), ex(4) and ie(4)

2015-03-31 Thread Martin Pieuchot
On 31/03/15(Tue) 18:06, Miod Vallat wrote: What, no ec? No ep? Why play favorites??? You're asking for tricky ones! Enjoy :) I'm afraid my ISA ec(4) seems to no longer work. Blinks red during POST, doesn't get detected by the kernel (yes, it's jumped correctly). Does that mean we

Re: Do you need/prefer the non-DUID option in the installer?

2015-03-31 Thread frantisek holop
Theo de Raadt, 30 Mar 2015 18:09: IIRC 'bioctl -d' cannot deal with DUID's. not a showstopper, just sayin' Sounds like you might use this. Want to trial a diff that adds support? If it is wrong, don't worry, someone will hate your bad diff, and do it right. (That is pretty much the

Re: Tcl/Tk entry in www/57.html

2015-03-31 Thread Stuart Henderson
On 2015/03/31 19:09, Alexey Suslikov wrote: Hi tech@. Tcl/Tk 8.5.16 and 8.6.2 line (Some highlights section) appears twice: ... Tcl/Tk 8.5.16 and 8.6.2 TeX Live 2013 Tcl/Tk 8.5.16 and 8.6.2 ... Thanks, fixed.

Small Port Testing Guide tweak

2015-03-31 Thread Brian Callahan
Brought to my attention in a private conversation: Is there any reason this shouldn't be port-lib-depends-check? bsd.port.mk(5) prefers port-lib-depends-check. Also, lib-depends-check can't be run before package whereas port-lib-depends-check can. OK? ~Brian Index: testing.html