From mboxrd@z Thu Jan 1 00:00:00 1970 From: Amit Shah Subject: Re: Extending virtio_console to support multiple ports Date: Sun, 30 Aug 2009 18:47:38 +0530 Message-ID: <20090830131738.GC3401@amit-x200.redhat.com> References: <1251181044-3696-1-git-send-email-amit.shah@redhat.com> <20090826112718.GA11117@amit-x200.redhat.com> <4A980D18.30106@codemonkey.ws> <20090830101057.GB32563@amit-x200.redhat.com> <4A9A7525.6010707@codemonkey.ws> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: qemu-devel@nongnu.org, kvm@vger.kernel.org, virtualization@lists.linux-foundation.org To: Anthony Liguori Return-path: Received: from mx1.redhat.com ([209.132.183.28]:4743 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753458AbZH3NSF (ORCPT ); Sun, 30 Aug 2009 09:18:05 -0400 Content-Disposition: inline In-Reply-To: <4A9A7525.6010707@codemonkey.ws> Sender: kvm-owner@vger.kernel.org List-ID: On (Sun) Aug 30 2009 [07:48:37], Anthony Liguori wrote: > Amit Shah wrote: >> I did think about that as well, but there are problems: >> >> - vnc clients (at least tigervnc) wants to receive the entire clipboard >> in a single flush command. So in the pre-allocated buffers scenario we >> could run short of the available buffers in some cases. So there will >> have to be a flag with each buffer that says 'there's more data >> pending for this particular write' which will have to be passed on to >> qemu and qemu will then flush it once it receives all the data >> > > No flags, assume it's a streaming protocol and don't assume anything > about message sizes. IOW, when you send clipboard data, send size and > then the data. QEMU consumes bytes until it reaches size. Same intent but a different method: I'll have to specify that particular data is "size" and that data after this special data is the actual data stream. >> - A lock has to be introduced to fetch one unused buffer from the list >> and pass it on to the host. And this lock has to be a spinlock, just >> because writes can be called from irq context. > > I don't see a problem here. You mean you don't see a problem in using a spinlock vs not using one? Userspace will typically send the entire buffer to be transmitted in one system call. If it's large, the system call will have to be broken into several. This results in multiple guest system calls, each one to be handled with a spinlock held. Compare this with the entire write handled in one system call in the current method. Amit