|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] xen console output delay
Output to the console is rate-limited to 30 event-channel notifications per 200ms. You could be hitting that limit: see the RATE_LIMIT_ values in tools/console/daemon/io.c: the logic is fairly easily defeated to test if that is what is stalling you. Batching your notifications a bit (e.g., once per console line) might actually smooth things out a bit.
-- Keir
On 14/3/08 00:26, "Dan Kuebrich" <dan.kuebrich@xxxxxxxxx> wrote:
Hello all,
I am working on writing a console driver for an OS on Xen and am running into a strange delay regarding console output. I am using the ring buffer (not the hypercall) for output, and signaling with HYPERVISOR_event_channel_op after every character is written.
The delay seems to occur _only_sometimes_ after a character is output. I have tracked it using GDB and noted that the delay happens after the characters are put into the ring buffer and the event channel is notified. Sometimes, the character appears instantly in the console output. Other times, it takes several seconds to show up.
I am using the standard xenconsole reader. Is there some sort of time-based buffering that occurs in the console output buffer?
The result I would like to achieve is latency-free console output.
Thanks,
dan
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|