All of lore.kernel.org
 help / color / mirror / Atom feed
From: Avi Kivity <avi@redhat.com>
To: Ian Molton <ian.molton@collabora.co.uk>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Implement a virtio GPU transport
Date: Sun, 10 Oct 2010 17:11:22 +0200	[thread overview]
Message-ID: <4CB1D79A.6070805@redhat.com> (raw)
In-Reply-To: <4CAC9CD1.2050601@collabora.co.uk>

  On 10/06/2010 05:59 PM, Ian Molton wrote:
> This patch implements a virtio-based transport for use by a 
> virtualised OpenGL passthrough implementation.
>
> The libGL and qemu-gl code to support this patch are available here:
>
> http://gitorious.org/vm-gl-accel/qemu-gl
> http://gitorious.org/vm-gl-accel/qemu-libgl
>
>
> Comments please!

1. copy qemu-devel an virtualization@, many virtio developers live there.

2. should start with a patch to the virtio-pci spec to document what 
you're doing


> +static int put_data(struct virtio_gl_data *gldata)
> +{
> +	struct scatterlist *sg, *sg_list;
> +	unsigned int count, ret, o_page, i_page, sg_entries;
> +	struct virtio_gl_header *header =
> +				(struct virtio_gl_header *)gldata->buffer;
> +
> +	ret = header->buf_size;
> +
> +	o_page = (header->buf_size + PAGE_SIZE-1)>>  PAGE_SHIFT;

...

> +	sg_init_table(sg_list, sg_entries);
> +
> +	sg = vmalloc_to_sg(sg_list, gldata->buffer, o_page);
> +	sg = vmalloc_to_sg(sg, gldata->buffer, i_page);
> +
> +	if (!sg) {
> +		ret = -EIO;
> +		goto out_free;
> +	}
> +
> +	/* Transfer data */
> +	if (virtqueue_add_buf(vq, sg_list, o_page, i_page, (void *)1)>= 0) {
> +		virtqueue_kick(vq);
> +		/* Chill out until it's done with the buffer. */
> +		while (!virtqueue_get_buf(vq,&count))
> +			cpu_relax();
> +	}
> +

This is pretty gross, and will burn lots of cpu if the hypervisor 
processes the queue asynchronously.

-- 
error compiling committee.c: too many arguments to function


  reply	other threads:[~2010-10-10 15:11 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-10-06 15:59 [PATCH] Implement a virtio GPU transport Ian Molton
2010-10-10 15:11 ` Avi Kivity [this message]
2010-10-19 10:31   ` Ian Molton
2010-10-19 10:31     ` [Qemu-devel] " Ian Molton
2010-10-19 10:39     ` Avi Kivity
2010-10-19 10:39       ` [Qemu-devel] " Avi Kivity
2010-10-27 13:00       ` Ian Molton
2010-10-27 13:00         ` Ian Molton
2010-10-28  9:27         ` Avi Kivity
2010-10-28  9:27           ` Avi Kivity
2010-10-28 11:54           ` Ian Molton
2010-10-28 11:54             ` Ian Molton
2010-10-28 14:24             ` Avi Kivity
2010-10-28 14:24               ` Avi Kivity
2010-10-28 14:43               ` Anthony Liguori
2010-10-28 14:43                 ` Anthony Liguori
2010-10-28 19:50                 ` Ian Molton
2010-10-28 19:50                   ` Ian Molton
2010-10-28 20:14                   ` Anthony Liguori
2010-10-28 20:14                     ` Anthony Liguori
2010-10-28 21:41                     ` Ian Molton
2010-10-28 21:41                       ` Ian Molton
2010-10-28 19:52               ` Ian Molton
2010-11-01 10:42                 ` Avi Kivity
2010-11-01 13:21                   ` Anthony Liguori
2010-11-01 13:21                     ` Anthony Liguori
2010-11-01 15:49                     ` Ian Molton
2010-11-01 15:49                       ` Ian Molton
2010-11-01 15:57                       ` Anthony Liguori
2010-11-01 15:57                         ` Anthony Liguori
2010-11-03 17:49                         ` Ian Molton
2010-11-03 17:49                           ` Ian Molton
2010-11-01 15:50                   ` Ian Molton
2010-10-29 11:18         ` Rusty Russell
2010-10-29 11:18           ` Rusty Russell
2010-10-29 11:49           ` Ed Tomlinson
2010-10-29 11:49             ` Ed Tomlinson
2010-10-29 11:49             ` Ed Tomlinson
2010-10-29 13:05           ` Anthony Liguori
2010-10-29 13:05             ` Anthony Liguori
2010-11-01 11:53             ` Alon Levy
2010-11-01 11:53               ` Alon Levy
2010-11-01 13:28               ` Anthony Liguori
2010-11-01 13:28                 ` Anthony Liguori
2010-11-03 18:03                 ` Ian Molton
2010-11-03 18:03                   ` Ian Molton
2010-11-03 18:17                   ` Anthony Liguori
2010-11-03 18:17                     ` Anthony Liguori
2010-11-05 18:05                     ` Ian Molton
2010-11-05 18:05                       ` Ian Molton
2010-11-10 17:22                       ` Ian Molton
2010-11-10 17:22                         ` Ian Molton
2010-11-10 17:47                         ` Anthony Liguori
2010-11-10 17:47                           ` Anthony Liguori
2010-11-12 12:14                           ` Ian Molton
2010-11-12 12:14                             ` Ian Molton
2010-11-12 13:21                             ` Anthony Liguori
2010-11-12 13:21                               ` Anthony Liguori
2010-11-04  9:13                   ` Alon Levy
2010-11-04  9:13                     ` Alon Levy
2010-11-05 17:57                     ` Ian Molton
2010-11-05 17:57                       ` Ian Molton
2010-11-03 17:50           ` Ian Molton
2010-11-03 17:50             ` Ian Molton

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4CB1D79A.6070805@redhat.com \
    --to=avi@redhat.com \
    --cc=ian.molton@collabora.co.uk \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.