amd64 ramdisk_cd, add mount_msdos

2011-05-16 Thread Stuart Henderson
Useful for following http://www.openbsd.org/faq/faq4.html#getdmesg, amongst other things... ok? Index: list.local === RCS file: /cvs/src/distrib/amd64/ramdisk_cd/list.local,v retrieving revision 1.17 diff -u -p -r1.17 list.local ---

Frank Sinatra - Colecciones y Pendrive de Regalo

2011-05-16 Thread Discos MP3 - Solo de Oferta
FRANKSINATRA Click aqui para ver los tiacute;tulos Coleccioacute;n compuesta por 5 voacute;lumenes y 100 tiacute;tulos Remasterizados 2008 The

Re: vmmap replacement, please test

2011-05-16 Thread Eivind E
On Wed, 11 May 2011, Ariane van der Steldt wrote: Hi, The newest version of vmmap (as of now) is vmmap_sys.diff.26 Since the diff is scheduled to go in may 20 and has a lot of changes and fixes, please test this diff and report any failures and successes. If I start a program with this patch

Re: amd64 ramdisk_cd, add mount_msdos

2011-05-16 Thread Stuart Henderson
On 2011/05/16 11:33, Mark Kettenis wrote: Date: Mon, 16 May 2011 10:05:37 +0100 From: Stuart Henderson s...@spacehopper.org Useful for following http://www.openbsd.org/faq/faq4.html#getdmesg, amongst other things... ok? Did you build floppies? I did a full mkr, though the floppy

Re: amd64 ramdisk_cd, add mount_msdos

2011-05-16 Thread Mark Kettenis
Date: Mon, 16 May 2011 10:54:37 +0100 From: Stuart Henderson s...@spacehopper.org Cc: tech@openbsd.org Mail-Followup-To: Mark Kettenis mark.kette...@xs4all.nl, tech@openbsd.org Content-Disposition: inline X-spacehopper-MailScanner-ID: DF36C1316C.AA8E4 X-spacehopper-MailScanner: Found to be

Re: alc(4) support for Atheros AR815x

2011-05-16 Thread Stuart Henderson
So far, only had reports from L1C and the new devices (which is not the point of sending out this sort of diff). This is a fairly large diff and changes behaviour for existing devices. Has anyone with a currently-working L2C tested this to make sure it doesn't break their nic? On 2011/05/01

ifconfig(8) tunnel and address families

2011-05-16 Thread Stuart Henderson
Re http://permalink.gmane.org/gmane.os.openbsd.misc/185629 To set IPv6 tunnel endpoints for gif/gre, you have to use syntax like ifconfig gif0 inet6 tunnel 1::1 2::2 rather than just ifconfig gif0 tunnel 1::1 2::2. This is because settunnel provides an af hint to getaddrinfo, so it only considers

Re: macppc: support for Dynamic Frequency Switching

2011-05-16 Thread Martin Pieuchot
On 15/05/11(Sun) 21:24, Stuart Henderson wrote: On 2011/05/15 15:56, Martin Pieuchot wrote: Updated diff, now looking for oks for the driver and the manpage. This diff doesn't include the cpu.c/cpu.h part Right. Here's the complete diff. I've also fixed the typo you told me. Index:

iSCSI in recent Supermicro boards

2011-05-16 Thread Alexey Suslikov
Hello. Does anybody know about iSCSI BIOS settings in recent Supermicro boards? For example, manual for X8SIL family says: 1-7 iSCSI Support The X8SIL/X8SIL-F/X8SIL-V motherboard supports the iSCSI Internet Protocol. iSCSI is an IP networking standard used to link and manage data storage, and

Re: amd64 pmap diff to g/c ifdef _LP64

2011-05-16 Thread Mike Belopuhov
On Fri, Apr 08, 2011 at 18:27 -0400, Brad wrote: On Thu, Apr 07, 2011 at 09:00:45PM -0400, Brad wrote: Some _LP64 ifdef's leftover from rev 1.1. They appear to be unnecessary since this code is only for amd64 anyway and thus a 64-bit arch. Actually using the same if defined checks as

Re: typo in icmp6(4)

2011-05-16 Thread Jason McIntyre
On Sun, May 08, 2011 at 08:27:31AM +0100, Jason McIntyre wrote: On Sat, May 07, 2011 at 09:29:21PM +0200, Andreas Bartelt wrote: Hello, I've noticed a typo in the icmp6(4) man page regarding icmp6 type 4 code 2. Diff is attached. i've looked at the rfc, and {net,free}bsd man

Re: typo in icmp6(4)

2011-05-16 Thread Mike Belopuhov
On Mon, May 16, 2011 at 6:45 PM, Jason McIntyre j...@cava.myzen.co.uk wrote: On Sun, May 08, 2011 at 08:27:31AM +0100, Jason McIntyre wrote: On Sat, May 07, 2011 at 09:29:21PM +0200, Andreas Bartelt wrote: Hello, I've noticed a typo in the icmp6(4) man page regarding icmp6 type 4 code 2.

Re: vmmap replacement, please test

2011-05-16 Thread Amit Kulkarni
there is a newer diff; I won't post the whole thing but in uvm_map.c around line 5954, replace this: KASSERT(start = srcmap-min_offset end = srcmap-max_offset); with this: if ((start PAGE_MASK) != 0 || (end PAGE_MASK) != 0 || end start) return EINVAL;

Re: iSCSI in recent Supermicro boards

2011-05-16 Thread Chris Cappuccio
This is some kind of BIOS boot-up support The chips on this board are run-of-the-mill em OpenBSD 4.9-current (GENERIC.MP) #32: Sat Apr 23 18:16:16 PDT 2011 ch...@celery.ykwc.com:/usr/src/sys/arch/amd64/compile/GENERIC.MP real mem = 8580038656 (8182MB) avail mem = 8337596416 (7951MB) mainbus0

Re: typo in icmp6(4)

2011-05-16 Thread Jason McIntyre
On Mon, May 16, 2011 at 06:54:20PM +0200, Mike Belopuhov wrote: On Mon, May 16, 2011 at 6:45 PM, Jason McIntyre j...@cava.myzen.co.uk wrote: On Sun, May 08, 2011 at 08:27:31AM +0100, Jason McIntyre wrote: On Sat, May 07, 2011 at 09:29:21PM +0200, Andreas Bartelt wrote: Hello, I've

Re: vmmap replacement, please test

2011-05-16 Thread Stuart Henderson
On 2011/05/16 13:04, Amit Kulkarni wrote: there is a newer diff; I won't post the whole thing but in uvm_map.c around line 5954, replace this: KASSERT(start = srcmap-min_offset end = srcmap-max_offset); with this: if ((start PAGE_MASK) != 0 || (end PAGE_MASK) != 0

Re: vmmap replacement, please test

2011-05-16 Thread Eivind E
On Mon, 16 May 2011, Stuart Henderson wrote: On 2011/05/16 11:37, Eivind E wrote: If I start a program with this patch (usually I just use top), then gdb top `pgrep top`, then bt, the machine hangs. there is a newer diff; I won't post the whole thing but in uvm_map.c around line 5954,