changeset 816:0f9c421d8504

This shouldn't be needed using qemu 0.10 and later.
author Rob Landley <rob@landley.net>
date Wed, 02 Sep 2009 20:01:03 -0500
parents 8129df56091b
children a6cb42614a1d
files sources/patches/linux-2.6.25-shutup.patch
diffstat 1 files changed, 0 insertions(+), 19 deletions(-) [+]
line wrap: on
line diff
--- a/sources/patches/linux-2.6.25-shutup.patch	Wed Aug 26 02:37:57 2009 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-QEMU 0.9.1 keeps a constant stream of data coming into the IRQ as long as
-there's serial input.  (Current svn has a rate limiter, but there hasn't
-been a release yet.)  This makes Linux think the device has gone nuts, and
-it prints lots of spurious warnings.  Make it shut up.
-
-diff -r 1ec969ad38de drivers/serial/8250.c
---- a/drivers/serial/8250.c	Wed Jul 02 19:29:16 2008 -0700
-+++ b/drivers/serial/8250.c	Sun Jul 06 18:12:09 2008 -0500
-@@ -1494,8 +1494,8 @@
- 
- 		if (l == i->head && pass_counter++ > PASS_LIMIT) {
- 			/* If we hit this, we're dead. */
--			printk(KERN_ERR "serial8250: too much work for "
--				"irq%d\n", irq);
-+//			printk(KERN_ERR "serial8250: too much work for "
-+//				"irq%d\n", irq);
- 			break;
- 		}
- 	} while (l != end);