svn commit: r241265 - stable/8/sys/geom

Andriy Gapon avg at FreeBSD.org
Sat Oct 6 18:52:07 UTC 2012


Author: avg
Date: Sat Oct  6 18:52:06 2012
New Revision: 241265
URL: http://svn.freebsd.org/changeset/base/241265

Log:
  MFC r240629: g_disk_flushcache definitely should not be traced under
  G_T_TOPOLOGY

Modified:
  stable/8/sys/geom/geom_disk.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/geom/   (props changed)

Modified: stable/8/sys/geom/geom_disk.c
==============================================================================
--- stable/8/sys/geom/geom_disk.c	Sat Oct  6 18:51:43 2012	(r241264)
+++ stable/8/sys/geom/geom_disk.c	Sat Oct  6 18:52:06 2012	(r241265)
@@ -367,7 +367,7 @@ g_disk_start(struct bio *bp)
 			error = ENOIOCTL;
 		break;
 	case BIO_FLUSH:
-		g_trace(G_T_TOPOLOGY, "g_disk_flushcache(%s)",
+		g_trace(G_T_BIO, "g_disk_flushcache(%s)",
 		    bp->bio_to->name);
 		if (!(dp->d_flags & DISKFLAG_CANFLUSHCACHE)) {
 			g_io_deliver(bp, ENODEV);


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