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

Doug Barton dougb at FreeBSD.org
Sat Jul 11 08:27:49 UTC 2009


Author: dougb
Date: Sat Jul 11 08:27:48 2009
New Revision: 195617
URL: http://svn.freebsd.org/changeset/base/195617

Log:
  MFC r193131, Crank the debug level necessary to display the "Label foo is
  removed" and "Label for provider ..." messages up from 0 to 1.

Modified:
  stable/7/sys/geom/label/   (props changed)
  stable/7/sys/geom/label/g_label.c   (contents, props changed)

Modified: stable/7/sys/geom/label/g_label.c
==============================================================================
--- stable/7/sys/geom/label/g_label.c	Sat Jul 11 08:25:43 2009	(r195616)
+++ stable/7/sys/geom/label/g_label.c	Sat Jul 11 08:27:48 2009	(r195617)
@@ -104,7 +104,7 @@ static void
 g_label_orphan(struct g_consumer *cp)
 {
 
-	G_LABEL_DEBUG(0, "Label %s removed.",
+	G_LABEL_DEBUG(1, "Label %s removed.",
 	    LIST_FIRST(&cp->geom->provider)->name);
 	g_slice_orphan(cp);
 }
@@ -113,7 +113,7 @@ static void
 g_label_spoiled(struct g_consumer *cp)
 {
 
-	G_LABEL_DEBUG(0, "Label %s removed.",
+	G_LABEL_DEBUG(1, "Label %s removed.",
 	    LIST_FIRST(&cp->geom->provider)->name);
 	g_slice_spoiled(cp);
 }
@@ -181,7 +181,7 @@ g_label_create(struct gctl_req *req, str
 	g_access(cp, -1, 0, 0);
 	g_slice_config(gp, 0, G_SLICE_CONFIG_SET, (off_t)0, mediasize,
 	    pp->sectorsize, name);
-	G_LABEL_DEBUG(0, "Label for provider %s is %s.", pp->name, name);
+	G_LABEL_DEBUG(1, "Label for provider %s is %s.", pp->name, name);
 	return (gp);
 }
 
@@ -203,7 +203,7 @@ g_label_destroy(struct g_geom *gp, boole
 			return (EBUSY);
 		}
 	} else {
-		G_LABEL_DEBUG(0, "Label %s removed.",
+		G_LABEL_DEBUG(1, "Label %s removed.",
 		    LIST_FIRST(&gp->provider)->name);
 	}
 	g_slice_spoiled(LIST_FIRST(&gp->consumer));


More information about the svn-src-stable mailing list