From owner-freebsd-current@FreeBSD.ORG Mon Aug 2 17:34:48 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BB8416A4CE for ; Mon, 2 Aug 2004 17:34:48 +0000 (GMT) Received: from imap.univie.ac.at (mailbox-lmtp.univie.ac.at [131.130.1.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47B6B43D39 for ; Mon, 2 Aug 2004 17:34:45 +0000 (GMT) (envelope-from le@FreeBSD.org) Received: from le.vpn.univie.ac.at (le.vpn.univie.ac.at [131.130.222.177]) by imap.univie.ac.at (8.12.10/8.12.10) with ESMTP id i72HYaoV1015126; Mon, 2 Aug 2004 19:34:38 +0200 Date: Mon, 2 Aug 2004 19:34:39 +0200 (CEST) From: Lukas Ertl To: Daniel Eriksson In-Reply-To: Message-ID: <20040802193340.R905@korben.in.tern> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-DCC-ZID-Univie-Metrics: mx8 4248; Body=2 Fuz1=2 Fuz2=2 cc: freebsd-current@FreeBSD.org Subject: RE: Vinum status X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Aug 2004 17:34:48 -0000 On Mon, 2 Aug 2004, Daniel Eriksson wrote: > Lukas Ertl wrote: > >> Yes, I still need to implement some details. Round-robin >> reads is one of them. > > Could you also verify if sysinstall works for you when gvinum is active? I'm > running gvinum on two machines (one with multiple arrays, both stripes and > mirrors, and the other with one big raid 5 array), and sysinstall fails on > both with a "BARF 257" (seen once) or "BARF 259" (seen all the time) during > the probing phase just before the menu is supposed to come up. This patch should fix it. You need to recompile libdisk and sysinstall. ---8<--- Index: open_disk.c =================================================================== RCS file: /usr/local/bsdcvs/src/lib/libdisk/open_disk.c,v retrieving revision 1.4 diff -u -r1.4 open_disk.c --- open_disk.c 21 Apr 2004 23:21:13 -0000 1.4 +++ open_disk.c 2 Aug 2004 17:33:08 -0000 @@ -263,6 +263,8 @@ ; /* nothing */ else if (!strcmp(t, "APPLE")) i = Add_Chunk(d, off, len, n, apple, 0, 0, sn); + else if (strstr(t, "VINUM") != NULL) + ; /* nothing */ else { printf("BARF %d\n", __LINE__); exit(0); ---8<--- cheers, le -- Lukas Ertl http://homepage.univie.ac.at/l.ertl/ le@FreeBSD.org http://people.freebsd.org/~le/