qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [5869] Virtio core support


From: Anthony Liguori
Subject: Re: [Qemu-devel] [5869] Virtio core support
Date: Thu, 04 Dec 2008 13:54:47 -0600
User-agent: Thunderbird 2.0.0.17 (X11/20080925)

Anthony Liguori wrote:
Revision: 5869
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5869
Author:   aliguori
Date:     2008-12-04 19:38:57 +0000 (Thu, 04 Dec 2008)


Added: trunk/hw/virtio.c
===================================================================
--- trunk/hw/virtio.c                           (rev 0)
+++ trunk/hw/virtio.c   2008-12-04 19:38:57 UTC (rev 5869)
@@ -0,0 +1,847 @@
+/*
+ * Virtio Support
+ *
+ * Copyright IBM, Corp. 2007
+ *
+ * Authors:
+ *  Anthony Liguori   <address@hidden>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2.  See
+ * the COPYING file in the top-level directory.
+ *
+ */
+
+#include <inttypes.h>
+#include <err.h>
+
+#include "virtio.h"
+#include "sysemu.h"
+
+//#define VIRTIO_ZERO_COPY

I left this here to simplify merging with kvm-userspace.git. I don't have any intention of enabling it though and it will disappear once we get the DMA API committed.

I didn't want anyone to think there are any plans to enable it as it enables code that does bad things (touching guest physical memory directly).

Regards,

Anthony Liguori





reply via email to

[Prev in Thread] Current Thread [Next in Thread]