kern/132273: commit references a PR
dfilter service
dfilter at FreeBSD.ORG
Wed May 4 13:10:12 UTC 2011
The following reply was made to PR kern/132273; it has been noted by GNATS.
From: dfilter at FreeBSD.ORG (dfilter service)
To: bug-followup at FreeBSD.org
Cc:
Subject: Re: kern/132273: commit references a PR
Date: Wed, 4 May 2011 13:07:04 +0000 (UTC)
Author: ae
Date: Wed May 4 12:59:11 2011
New Revision: 221433
URL: http://svn.freebsd.org/changeset/base/221433
Log:
When checking existence of providers skip those which are orphaned.
PR: kern/132273
MFC after: 2 week
Modified:
head/sys/geom/label/g_label.c
Modified: head/sys/geom/label/g_label.c
==============================================================================
--- head/sys/geom/label/g_label.c Wed May 4 12:48:02 2011 (r221432)
+++ head/sys/geom/label/g_label.c Wed May 4 12:59:11 2011 (r221433)
@@ -164,6 +164,8 @@ g_label_create(struct gctl_req *req, str
pp2 = LIST_FIRST(&gp->provider);
if (pp2 == NULL)
continue;
+ if ((pp2->flags & G_PF_ORPHAN) != 0)
+ continue;
if (strcmp(pp2->name, name) == 0) {
G_LABEL_DEBUG(1, "Label %s(%s) already exists (%s).",
label, name, pp->name);
_______________________________________________
svn-src-all at freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscribe at freebsd.org"
More information about the freebsd-geom
mailing list