Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Nov 2009 07:18:39 +0000 (UTC)
From:      Kip Macy <kmacy@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r199735 - head/sys/dev/xen/console
Message-ID:  <200911240718.nAO7Id0O008886@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kmacy
Date: Tue Nov 24 07:18:38 2009
New Revision: 199735
URL: http://svn.freebsd.org/changeset/base/199735

Log:
  remove annoying printf that cripples kdb on PV guests

Modified:
  head/sys/dev/xen/console/console.c

Modified: head/sys/dev/xen/console/console.c
==============================================================================
--- head/sys/dev/xen/console/console.c	Tue Nov 24 07:17:51 2009	(r199734)
+++ head/sys/dev/xen/console/console.c	Tue Nov 24 07:18:38 2009	(r199735)
@@ -132,7 +132,6 @@ xc_cngetc(struct consdev *dev)
 	
 	CN_LOCK(cn_mtx);
 	if ((rp - rc)) {
-		/* if (kdb_active) printf("%s:%d\n", __func__, __LINE__); */
 		/* we need to return only one char */
 		ret = (int)rbuf[RBUF_MASK(rc)];
 		rc++;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200911240718.nAO7Id0O008886>