From owner-freebsd-stable@FreeBSD.ORG Sun Dec 15 01:53:31 2013 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28F0394C for ; Sun, 15 Dec 2013 01:53:31 +0000 (UTC) Received: from mail.bsdinfo.com.br (mail.bsdinfo.com.br [67.212.89.78]) by mx1.freebsd.org (Postfix) with ESMTP id E85201E64 for ; Sun, 15 Dec 2013 01:53:30 +0000 (UTC) Received: from mail.bsdinfo.com.br (mail.bsdinfo.com.br [127.0.0.1]) by mail.bsdinfo.com.br (Postfix) with ESMTP id 4660E139DE for ; Sat, 14 Dec 2013 23:54:17 -0200 (BRST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=bsdinfo.com.br; h=content-type:content-type:in-reply-to:references:subject :subject:to:mime-version:user-agent:from:from:date:date :message-id; s=dkim; t=1387072456; x=1387936457; bh=l0cA+izr9Y1T FMYyoz+jFLY955Eb8gR1EEYHBxDK5mc=; b=Rjp2p9koB/QqaCRvdX5SZXaeUue1 hw0J3cOq3tlgufYQhtyxzZUOhDVSNFd6eLANZg1l8v3oEy4IAxLiaoVglxjo3SKI qfpS2IlPGbYCeUjIiPc+mHtIY+vN7hc0/pKw5jCW14Zk8PpCzjAB9CNzU8YdbsiM h1UDRa7qQY4v1M4= X-Virus-Scanned: amavisd-new at mail.bsdinfo.com.br Received: from mail.bsdinfo.com.br ([127.0.0.1]) by mail.bsdinfo.com.br (mail.bsdinfo.com.br [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id KIdrgjtA3yYz for ; Sat, 14 Dec 2013 23:54:16 -0200 (BRST) Received: from MacBook-de-Gondim-2.local (unknown [186.193.54.69]) by mail.bsdinfo.com.br (Postfix) with ESMTPSA id E4C85139D8 for ; Sat, 14 Dec 2013 23:54:15 -0200 (BRST) Message-ID: <52AD0B90.6070209@bsdinfo.com.br> Date: Sat, 14 Dec 2013 23:53:20 -0200 From: Marcelo Gondim User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: Re: geom_stripe problem in freebsd 10.0-rc1 References: <52AB8647.4050202@bsdinfo.com.br> <52ACCB97.5000504@egr.msu.edu> In-Reply-To: <52ACCB97.5000504@egr.msu.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Dec 2013 01:53:31 -0000 Em 14/12/13 19:20, Adam McDougall escreveu: > > On 12/13/2013 17:12, Marcelo Gondim wrote: >> Hi all, >> >> Anyone here seen it? First time I saw it happen. I'm here using a >> FreeBSD 10.0-RC1 and doing some tests with the raid0(geom_stripe) but >> is giving the following : >> >> I'm here with 3 discs being ada0 with the system and have the ADA1 >> and ada2to do the raid 0. >> >> >> # kldload geom_stripe >> # gstripe label -v st0 /dev/ada1 /dev/ada2 >> >> GEOM_STRIPE: Device st0 created (id=2255281675). >> GEOM_STRIPE: Disk ada1 attached to st0. >> GEOM_PART: integrity check failed (ada1, BSD) >> GEOM_STRIPE: Cannot add disk diskid/DISK-MSE421RP27UT1K to st0 >> (error=17). >> GEOM_PART: integrity check failed (diskid/DISK-MSE421RP27UT1K, BSD) >> GEOM_STRIPE: Disk ada2 attached to st0. >> GEOM_STRIPE: Device stripe/st0 activated. >> GEOM_STRIPE: Cannot add disk diskid/DISK-MSK421Y215VYBC to st0 >> (error=17). >> >> # bsdlabel -wB /dev/stripe/st0 >> >> GEOM_PART: integrity check failed (ada1, BSD) >> GEOM_STRIPE: Cannot add disk diskid/DISK-MSK421Y215VYBC to st0 >> (error=17). >> GEOM_STRIPE: Cannot add disk diskid/DISK-MSE421RP27UT1K to st0 >> (error=17). >> GEOM_PART: integrity check failed (diskid/DISK-MSE421RP27UT1K, BSD) >> >> # newfs -U -j /dev/stripe/st0 >> >> >> I can format and mount the st0 but is giving these errorsabove. >> >> # uname -a >> FreeBSD bart.test 10.0-RC1 FreeBSD 10.0-RC1 #0 r259068: Sat Dec 7 >> 17:45:20 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC >> amd64 >> >> []'s >> Gondim >> >> _______________________________________________ >> freebsd-stable@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-stable >> To unsubscribe, send any mail to >> "freebsd-stable-unsubscribe@freebsd.org" > I noticed your messages below mention diskid which caused me some > trouble. > Can you try putting kern.geom.label.disk_ident.enable=0 in > /boot/loader.conf > and rebooting? Hi Adam, Putting this parameterthe messages are gone. []'s