[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH] Console Daemon
Ian Pratt wrote: Today it buffers N bytes worth of data in memory regardless of whether the tty is connected (or reading from). How much it buffers is configurable via the store (by default the buffer has no limit so ensure console data is never lost).If you connect and disconnect do you continue from where you left off or get sent the last N bytes again? You continue where you left off. I think the former behaviour is definitely preferable, or at the very least should be a configuration option. What I was thinking is having the following layout in the store: /domain/<uuid>/console/tty /domain/<uuid>/console/limit /domain/<uuid>/console/historytty is obviously the tty for the domain (if tty doesn't exist, it means someone is connected already) limit is the maximum amount of data (in bytes) that will be bufferedhistory is the amount of history (in bytes) that will be saved. When a client reconnects, they will first receive whatever's in the history. Does this seem agreeable? In the current scheme, a tty is allocated for each domain whenever data arrives for the domain or if consoled detects a new domain was created. It currently polls to see if new domains were created every second. You can avoid the race condition by signalling consoled which will break it out of it's select loop. Not very pretty but it solves the problem of something like xm create -c.Please can you explain how tty's get allocated. Regards, Anthony Liguori Thanks,IanKeeping a history wouldn't be a hard change. I'll submit some patches.Regards, Anthony LiguoriThanks, Ian _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |