svn commit: r199735 - head/sys/dev/xen/console

Kip Macy kmacy at FreeBSD.org
Tue Nov 24 07:18:39 UTC 2009


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++;


More information about the svn-src-all mailing list