Re: [patch] pf_norm: clear IPv4 reserved flag

2011-09-07 Thread Steffen Wendzel
Am Donnerstag, den 08.09.2011, 06:48 +0200 schrieb Otto Moerbeek: > On Wed, Sep 07, 2011 at 03:56:18PM +0200, Steffen Wendzel wrote: > > > Good idea, thx. > > > > @OpenBSD-tech: here is the new diff. > > Obviously not correct. Sorry for that, you are right. Howevr, my original patch works fine

Re: Sandybridge graphics support: part 1 basic kernel support.

2011-09-07 Thread Owain Ainsworth
On Thu, Sep 08, 2011 at 05:25:46AM +0100, Owain Ainsworth wrote: > A few months ago jcs@ got a sandybridge laptop, he did some work to get > it almost working. I continued this a few months ago in edmonton at > c2k11. Since then kettenis@ who has hardware has made yet more progress. > > Now the pl

Re: Sandybridge graphics support: part 1 basic kernel support.

2011-09-07 Thread Theo de Raadt
> diff --git dev/pci/agpreg.h dev/pci/agpreg.h > index 4e3af78..47d5748 100644 > --- dev/pci/agpreg.h > +++ dev/pci/agpreg.h > @@ -1,4 +1,4 @@ > -/* $OpenBSD$ */ > +/* $OpenBSD: agpreg.h,v 1.12 2008/12/24 05:42:58 oga Exp $ */ > /* $NetBSD: agpreg.h,v 1.1 2001/09/10 10:01:02 fvdl Exp $

Re: [patch] pf_norm: clear IPv4 reserved flag

2011-09-07 Thread Otto Moerbeek
On Wed, Sep 07, 2011 at 03:56:18PM +0200, Steffen Wendzel wrote: > Good idea, thx. > > @OpenBSD-tech: here is the new diff. Obviously not correct. -Otto > > -Steffen > > cvs server: Diffing . > Index: pf_norm.c > ===

Re: USB nitpicking

2011-09-07 Thread Loganaden Velvindron
I don't have any atu(4) device. However, I do have an OHCI HUB with a keyboard hooked. No breakage up to now, and the ukbd still works fine. ohci0 at pci4 dev 0 function 0 "AT&T/Lucent USB 2-port" rev 0x10: apic 1 int 16, version 1.0, legacy support usb1 at ohci0: USB revision 1.0 uhub1 at usb1

Sandybridge graphics support: part 1 basic kernel support.

2011-09-07 Thread Owain Ainsworth
A few months ago jcs@ got a sandybridge laptop, he did some work to get it almost working. I continued this a few months ago in edmonton at c2k11. Since then kettenis@ who has hardware has made yet more progress. Now the plan is to get this into the tree, but first some precursors. This kernel pa

USB nitpicking

2011-09-07 Thread Michael Knudsen
if_atu.c includes kthread.h but it doesn't actually have any threads, so include timeout.h instead since that's what's needed (usbdi.h pulls in struct timeout). ohci.c uses 0 instead of NULL in a pointer assignment. -m. Index: if_atu.c

REPARAMOS IMPRESORAS LASER HP Y PLOTTERS HP, REVISION SIN CARGO

2011-09-07 Thread REPARACION IMPRESORAS HP Y PLOTTERS
SERVICIO TECNICO ON SITE IMPRESORAS LASER HP Y PLOTTERS HP IMPRESORAS LASER HP MEDIANO Y GRAN FORMATO 2420N, 2600N, 3700N, P3005, 4000, 4050N, 4250, 4350DTN, 5500DTN, 8000N, 8550N, 9000 PLOTTERS HP 70, 110 PLUSNR, 350C, 450C, 500C, 750C, 800, 1050C TECNICOS CERTIFICADOS, REPUESTOS ORIGINALES so

Re: diff to PackageLocator.pm to support multiple installpath entries

2011-09-07 Thread Marc Espie
On Wed, Sep 07, 2011 at 12:26:30PM +0200, Marian Hettwer wrote: > Hi there, > > see attached diff to PackageLocator.pm. > It seems like in it's current version it doesn't support multiple > installpath entries, like: > > installpath = ftp://mymirror/localrepo > installpath += ftp://mymirror/offic

Re: [patch] pf_norm: clear IPv4 reserved flag

2011-09-07 Thread Steffen Wendzel
Good idea, thx. @OpenBSD-tech: here is the new diff. -Steffen cvs server: Diffing . Index: pf_norm.c === RCS file: /cvs/src/sys/net/pf_norm.c,v retrieving revision 1.140 diff -u -p -r1.140 pf_norm.c --- pf_norm.c 18 Jul 2011 21:0

diff to PackageLocator.pm to support multiple installpath entries

2011-09-07 Thread Marian Hettwer
Hi there, see attached diff to PackageLocator.pm. It seems like in it's current version it doesn't support multiple installpath entries, like: installpath = ftp://mymirror/localrepo installpath += ftp://mymirror/officialrepo Before it was only honoring the first entry, no matter whether += or

Re: ssl(8) manpage: update key size and algorithm recommendations

2011-09-07 Thread Jason McIntyre
On Thu, Sep 01, 2011 at 11:20:32PM -0400, Lawrence Teo wrote: > This diff changes the ssl(8) man page to use a key size of 2048 bits > when generating the RSA private key for use with httpd. Increasing > numbers of CAs will no longer accept 1024-bit RSA CSRs as a response to > NIST's draft publica

[patch] pf_norm: clear IPv4 reserved flag

2011-09-07 Thread Steffen Wendzel
Hi list, it would be nice, if the reserved flag in the IP would be cleared by pf_norm to eliminate covert channels using the bit. Here is a small patch for that. regards, Steffen Index: pf_norm.c === RCS file: /cvs/src/sys/net/pf_no