aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-08-16 07:07:11 +0000
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-08-16 07:07:11 +0000
commit3eeeaba7c99cc12633fc44bef2b26fa1f438e3ba (patch)
tree185f83cea3671b82ff0b177844b5c3208d0f8deb
parent12ef0a954828fabf654cb360c65a72905ceaaf7e (diff)
downloadxen-3eeeaba7c99cc12633fc44bef2b26fa1f438e3ba.tar.gz
xen-3eeeaba7c99cc12633fc44bef2b26fa1f438e3ba.tar.bz2
xen-3eeeaba7c99cc12633fc44bef2b26fa1f438e3ba.zip
Disable xenconsoled throttling for now.
-rw-r--r--tools/console/daemon/io.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/console/daemon/io.c b/tools/console/daemon/io.c
index f334458e55..a6d058acad 100644
--- a/tools/console/daemon/io.c
+++ b/tools/console/daemon/io.c
@@ -329,6 +329,7 @@ void handle_io(void)
ret = select(max_fd + 1, &readfds, &writefds, 0, &tv);
if (tv.tv_sec == 1 && (++num_of_writes % 100) == 0) {
+#if 0
/* FIXME */
/* This is a nasty hack. xcs does not handle the
control channels filling up well at all. We'll
@@ -338,6 +339,7 @@ void handle_io(void)
going away */
tv.tv_usec = 1000;
select(0, 0, 0, 0, &tv);
+#endif
}
enum_domains();