From owner-svn-src-all@freebsd.org Mon Jan 11 23:14:40 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C1772A6C675 for ; Mon, 11 Jan 2016 23:14:40 +0000 (UTC) (envelope-from asomers@gmail.com) Received: from mail-oi0-x22c.google.com (mail-oi0-x22c.google.com [IPv6:2607:f8b0:4003:c06::22c]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8F1F110F8 for ; Mon, 11 Jan 2016 23:14:40 +0000 (UTC) (envelope-from asomers@gmail.com) Received: by mail-oi0-x22c.google.com with SMTP id o124so52718072oia.3 for ; Mon, 11 Jan 2016 15:14:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:cc:content-type; bh=HquYO11oSDYd5Nc7TMUPgIosx0SFZwoFKYBy5sKwNc4=; b=U34MFw/WPjo2S4LNzYmve7tUDVm9D3cbJ9ZQTyitcX7FMhu6SpeYzABlY6IjTnDhY/ hgqNxsXgrQgQwk+bhhUyPVf8qteZmAePNOZKigE24UzD71dDNQ9zQ2Vig9/3yyx5nXJY Geb3larWIOsUdMBJMuZQU2F3MLlGA6IWtwKbnIr5sCwXxNla/DSUQc4E/o8ZRLNCBHNS WFDYmuEgBPWlb+aViCkCZIcfDtzKE95xYzbY8r2V6uFXUkEIOb1eIaE12M9Zs23Y9i9h Tk7inMUfJ9dOH/TzXdPl7L2G1s/LP5UuFbjvuK3kTrodm5YdRx1yMWgs1jritWvgHEFP US7g== MIME-Version: 1.0 X-Received: by 10.202.208.65 with SMTP id h62mt102398260oig.57.1452554079895; Mon, 11 Jan 2016 15:14:39 -0800 (PST) Sender: asomers@gmail.com Received: by 10.202.69.84 with HTTP; Mon, 11 Jan 2016 15:14:39 -0800 (PST) In-Reply-To: <201601112215.u0BMFkhq018699@repo.freebsd.org> References: <201601112215.u0BMFkhq018699@repo.freebsd.org> Date: Mon, 11 Jan 2016 16:14:39 -0700 X-Google-Sender-Auth: G_3LELhmOwmk_dXo2zaU00aiFjc Message-ID: Subject: Re: svn commit: r293708 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs From: Alan Somers Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jan 2016 23:14:40 -0000 I referenced the wrong PR. The correct PR is 205882. On Mon, Jan 11, 2016 at 3:15 PM, Alan Somers wrote: > Author: asomers > Date: Mon Jan 11 22:15:46 2016 > New Revision: 293708 > URL: https://svnweb.freebsd.org/changeset/base/293708 > > Log: > Fix importing l2arc device by guid > > After r292066, vdev_geom verifies both the vdev and pool guids of device > labels during open. However, spare and l2arc devices don't have pool guids, > so opening them by guid will fail (opening by path, when the pathname is > known, still succeeds). This change allows a vdev to be opened by guid if > the label contains no pool_guid, which is the case for inactive spares and > l2arc devices. > > PR: 292066 > Reported by: delphij > Reviewed by: delphij, smh > MFC after: 2 weeks > Sponsored by: Spectra Logic Corp > Differential Revision: https://reviews.freebsd.org/D4861 >