svn commit: r222067 - stable/7/sys/geom/label

Andrey V. Elsukov ae at FreeBSD.org
Wed May 18 16:28:29 UTC 2011


Author: ae
Date: Wed May 18 16:28:28 2011
New Revision: 222067
URL: http://svn.freebsd.org/changeset/base/222067

Log:
  MFC r221433:
    When checking existence of providers skip those which are orphaned.
  
    PR:		kern/132273

Modified:
  stable/7/sys/geom/label/g_label.c
Directory Properties:
  stable/7/sys/   (props changed)
  stable/7/sys/cddl/contrib/opensolaris/   (props changed)
  stable/7/sys/contrib/dev/acpica/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)

Modified: stable/7/sys/geom/label/g_label.c
==============================================================================
--- stable/7/sys/geom/label/g_label.c	Wed May 18 16:20:28 2011	(r222066)
+++ stable/7/sys/geom/label/g_label.c	Wed May 18 16:28:28 2011	(r222067)
@@ -161,6 +161,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);


More information about the svn-src-stable-7 mailing list