<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel">
    <title>gmane.comp.emulators.kvm.devel</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91583"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91582"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91581"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91578"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91577"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91576"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91575"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91574"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91573"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91572"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91571"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91570"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91569"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91568"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91567"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91566"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91565"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91563"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91562"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91561"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91583">
    <title>UDP problem with virtio...</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91583</link>
    <description>&lt;pre&gt;Hi,


I am running a guest that exposes a NFS share to be used by a TViX box. The TViX box is not that advanced and uses NFS over UDP instead of TCP.
What I am seeing is that when I use the virtio network driver, the TViX box cannot mount the filesystem. However, when I use rtl8139 instead, it can.

The problem is easily reproduced:
1. Create a guest that uses a virtio network interface (bridging setup)
2. Expose an NFS share on the guest
3. mount the NFS share using 'mount -o udp host:/share /localdir'
4. verify that the NFS share cannot be mounted.
5. Modify the guest to use rtl8139 device emulation and stop the guest and start it
6. mount the NFS share using 'mount -o udp host:/share /localdir'
7. Verify tha the NFS share can be mounted

Now the bug reporting guidelines say that I should always use the latest KVM version but compiling KVM from source and using that is not really an option. The server is important enough not to mess around with. Therefore, my question is whether this problem has been seen &lt;/pre&gt;</description>
    <dc:creator>Erik Brakkee</dc:creator>
    <dc:date>2012-05-25T20:55:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91582">
    <title>[PATCH v2] KVM: Cleanup the kvm_print functions and introduce pr_XX wrappers</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91582</link>
    <description>&lt;pre&gt;Introduces a couple of print functions, which are essentially wrappers
around standard printk functions, with a KVM: prefix.

Functions introduced or modified are:
 - kvm_err(fmt, ...)
 - kvm_info(fmt, ...)
 - kvm_debug(fmt, ...)
 - kvm_pr_unimpl(fmt, ...)
 - pr_unimpl(vcpu, fmt, ...) -&amp;gt; vcpu_unimpl(vcpu, fmt, ...)

Applies to kvm-next

Changelog[2]:
 - Added PID to print functions
 - Renamed vcpu_pr_unimpl to vcpu_unimpl

 Signed-off-by: Christoffer Dall &amp;lt;c.dall&amp;lt; at &amp;gt;virtualopensystems.com&amp;gt;
---
 arch/x86/kvm/svm.c       |    6 +++--
 arch/x86/kvm/vmx.c       |    2 +-
 arch/x86/kvm/x86.c       |   54 +++++++++++++++++++++++-----------------------
 include/linux/kvm_host.h |   17 +++++++++-----
 4 files changed, 42 insertions(+), 37 deletions(-)

diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c
index f75af40..7a41878 100644
--- a/arch/x86/kvm/svm.c
+++ b/arch/x86/kvm/svm.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -3185,8 +3185,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static int svm_set_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 data)
 break;
 case MSR_IA32_DEBUGCTLMSR:
 if (&lt;/pre&gt;</description>
    <dc:creator>Christoffer Dall</dc:creator>
    <dc:date>2012-05-25T16:22:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91581">
    <title>Re: Guest hangs after some stress tests</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91581</link>
    <description>&lt;pre&gt;
If kvmclock is not enabled a number of problems arise (miscalibrated
loops per jiffy, sched_clock using tsc's out of sync on smp). Should
set the hypervisor cpuid bit (see 49ab56ac6e1b907b7da).

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo&amp;lt; at &amp;gt;vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

&lt;/pre&gt;</description>
    <dc:creator>Marcelo Tosatti</dc:creator>
    <dc:date>2012-05-25T15:37:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91578">
    <title>Re: [PATCH v4 13/16] net: Make "info network" output more readable info</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91578</link>
    <description>&lt;pre&gt;OK, done
No matter. :)



&lt;/pre&gt;</description>
    <dc:creator>Zhi Yong Wu</dc:creator>
    <dc:date>2012-05-25T14:56:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91577">
    <title>Re: [PATCH v3] uq/master: Expose CPUID leaf 7 only for -cpu host</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91577</link>
    <description>&lt;pre&gt;
Fixed and sent v4.

&lt;/pre&gt;</description>
    <dc:creator>Eduardo Habkost</dc:creator>
    <dc:date>2012-05-25T14:56:07</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91576">
    <title>[PATCH v4] uq/master: Expose CPUID leaf 7 only for -cpu host</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91576</link>
    <description>&lt;pre&gt;Changes v3 -&amp;gt; v4:
  - Wrap line at cpu_x86_fill_host() to make checkpatch.pl happy

Changes v2 -&amp;gt; v3;
  - Check for kvm_enabled() before setting cpuid_7_0_ebx_features

Changes v1 -&amp;gt; v2:
  - Use kvm_arch_get_supported_cpuid() instead of host_cpuid() on
    cpu_x86_fill_host().

  We should use GET_SUPPORTED_CPUID for all bits on "-cpu host"
  eventually, but I am not changing all the other CPUID leaves because
  we may not be able to test such an intrusive change in time for 1.1.

Description of the bug:

Since QEMU 0.15, the CPUID information on CPUID[EAX=7,ECX=0] is being
returned unfiltered to the guest, directly from the GET_SUPPORTED_CPUID
return value.

The problem is that this makes the resulting CPU feature flags
unpredictable and dependent on the host CPU and kernel version. This
breaks live-migration badly if migrating from a host CPU that supports
some features on that CPUID leaf (running a recent kernel) to a kernel
or host CPU that doesn't support it.

Migration also is incorrect (the virtual CP&lt;/pre&gt;</description>
    <dc:creator>Eduardo Habkost</dc:creator>
    <dc:date>2012-05-25T14:55:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91575">
    <title>Re: [PATCH v4 13/16] net: Make "info network" output more readable info</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91575</link>
    <description>&lt;pre&gt;
Then non-hub needs adjustment to a single space as well. Just remove the
two spaces I added to indent the categories (VLAN vs. non-VLAN listing)
for _both_ peer lines.

(I love nit-picking discussions :) )

Jan

&lt;/pre&gt;</description>
    <dc:creator>Jan Kiszka</dc:creator>
    <dc:date>2012-05-25T14:50:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91574">
    <title>Re: [PATCH v4 13/16] net: Make "info network" output more readable info</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91574</link>
    <description>&lt;pre&gt;Yeah, but it is three spaces, not one. You can check the code in
do_info_network. For non-hub peers, it is also three spaces.
That is the result i got when i was running the code.



&lt;/pre&gt;</description>
    <dc:creator>Zhi Yong Wu</dc:creator>
    <dc:date>2012-05-25T14:44:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91573">
    <title>Re: [PATCH v3] uq/master: Expose CPUID leaf 7 only for -cpu host</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91573</link>
    <description>&lt;pre&gt;
checkpatch.pl?

Jan

&lt;/pre&gt;</description>
    <dc:creator>Jan Kiszka</dc:creator>
    <dc:date>2012-05-25T14:42:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91572">
    <title>Re: [PATCH v4 13/16] net: Make "info network" output more readable info</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91572</link>
    <description>&lt;pre&gt;
This line is for printing peers attached to a hub, isn't it? So it
should be exactly one space, like for the non-hub peers. You should see
it better than I when running the code.

Jan

&lt;/pre&gt;</description>
    <dc:creator>Jan Kiszka</dc:creator>
    <dc:date>2012-05-25T14:40:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91571">
    <title>Re: [PATCH v4 13/16] net: Make "info network" output more readable info</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91571</link>
    <description>&lt;pre&gt;I have noticed this, and split out them to other patch.
This will have the following layout:
(qemu) info network
hub 1
   \ dump.0: type=dump,dump to qemu-vlan1.pcap (len=65536)
   \ user.1: type=user,net=10.0.2.0,restrict=off
   \ virtio-net-pci.0: type=nic,model=virtio-net-pci,macaddr=52:54:00:12:34:58
hub 0
   \ user.0: type=user,net=10.0.2.0,restrict=off
   \ e1000.0: type=nic,model=e1000,macaddr=52:54:00:12:34:57
virtio-net-pci.1: type=nic,model=virtio-net-pci,macaddr=52:54:00:12:34:56
   \ ur: type=tap,ifname=tap0,script=/etc/qemu-ifup,downscript=/etc/qemu-ifdown
^^^
It is three space, not two.
Do you mean that it should be like "monitor_printf(mon, "\\ ");" but
this indention will not match with those peers in hub case.




&lt;/pre&gt;</description>
    <dc:creator>Zhi Yong Wu</dc:creator>
    <dc:date>2012-05-25T14:25:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91570">
    <title>Re: [PATCH] PCI: Mark INTx masking support of Chelsio T310 10GbE NIC as broken</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91570</link>
    <description>&lt;pre&gt;
Sorry, it's documented here:
http://thread.gmane.org/gmane.comp.emulators.kvm.devel/91388. Will
repost with this information included once Alexey provided his tested-by.

Jan


&lt;/pre&gt;</description>
    <dc:creator>Jan Kiszka</dc:creator>
    <dc:date>2012-05-25T14:20:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91569">
    <title>Re: [PATCH v4 13/16] net: Make "info network" output more readable info</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91569</link>
    <description>&lt;pre&gt;
Please don't put reviewed-by tags here before the reviewer had a chance
to look at the code.


This should be obsolete now.


Why introduce a different hub output format at all? Do it in the final
right from the start.


I bet those two prototypes are required by some other patch (or are even
redundant).


Two space too much of indention (you remove them above for the existing
peer \ peer outputs).


Jan

&lt;/pre&gt;</description>
    <dc:creator>Jan Kiszka</dc:creator>
    <dc:date>2012-05-25T14:17:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91568">
    <title>Re: [PATCH] PCI: Mark INTx masking support of Chelsio T310 10GbE NIC as broken</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91568</link>
    <description>&lt;pre&gt;
Please include a reference to a bugzilla, mailing list discussion, or
other details about how this was found and debugged.  Thanks!

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo&amp;lt; at &amp;gt;vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

&lt;/pre&gt;</description>
    <dc:creator>Bjorn Helgaas</dc:creator>
    <dc:date>2012-05-25T14:11:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91567">
    <title>[PATCH v4 13/16] net: Make "info network" output more readable info</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91567</link>
    <description>&lt;pre&gt;From: Zhi Yong Wu &amp;lt;wuzhy&amp;lt; at &amp;gt;linux.vnet.ibm.com&amp;gt;

Reviewed-by:   Jan Kiszka  &amp;lt;jan.kiszka&amp;lt; at &amp;gt;siemens.com&amp;gt;
Signed-off-by: Zhi Yong Wu &amp;lt;wuzhy&amp;lt; at &amp;gt;linux.vnet.ibm.com&amp;gt;
---
 net.c     |   18 ++++++++++++++----
 net.h     |    1 +
 net/hub.c |   23 +++++++++++++++++++++--
 net/hub.h |    1 +
 4 files changed, 37 insertions(+), 6 deletions(-)

diff --git a/net.c b/net.c
index 61dc28d..ae0deec 100644
--- a/net.c
+++ b/net.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -887,6 +887,12 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static const struct {
         },
     },
 #endif /* CONFIG_NET_BRIDGE */
+    [NET_CLIENT_TYPE_HUB] = {
+        .type = "hubport",
+        .desc = {
+            { /* end of list */ }
+        },
+    },
 };
 
 int net_client_init(Monitor *mon, QemuOpts *opts, int is_netdev)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1068,7 +1074,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; int do_netdev_del(Monitor *mon, const QDict *qdict, QObject **ret_data)
     return 0;
 }
 
-static void print_net_client(Monitor *mon, NetClientState *vc)
+void print_net_client(Monitor *mon, NetClientState *vc)
 {
     monitor_printf(mon, "%s: type=%s,%s\n", vc-&amp;gt;name,
                    ne&lt;/pre&gt;</description>
    <dc:creator>zwu.kernel&lt; at &gt;gmail.com</dc:creator>
    <dc:date>2012-05-25T14:11:04</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91566">
    <title>[PATCH v3] uq/master: Expose CPUID leaf 7 only for -cpu host</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91566</link>
    <description>&lt;pre&gt;[re-submitting to get this in through uq/master]

Changes v2 -&amp;gt; v3;
  - Check for kvm_enabled() before setting cpuid_7_0_ebx_features

Changes v1 -&amp;gt; v2:
  - Use kvm_arch_get_supported_cpuid() instead of host_cpuid() on
    cpu_x86_fill_host().

  We should use GET_SUPPORTED_CPUID for all bits on "-cpu host"
  eventually, but I am not changing all the other CPUID leaves because
  we may not be able to test such an intrusive change in time for 1.1.

Description of the bug:

Since QEMU 0.15, the CPUID information on CPUID[EAX=7,ECX=0] is being
returned unfiltered to the guest, directly from the GET_SUPPORTED_CPUID
return value.

The problem is that this makes the resulting CPU feature flags
unpredictable and dependent on the host CPU and kernel version. This
breaks live-migration badly if migrating from a host CPU that supports
some features on that CPUID leaf (running a recent kernel) to a kernel
or host CPU that doesn't support it.

Migration also is incorrect (the virtual CPU changes under the guest's
feet) &lt;/pre&gt;</description>
    <dc:creator>Eduardo Habkost</dc:creator>
    <dc:date>2012-05-25T14:12:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91565">
    <title>[PATCH v4 13/16] net: Make "info network" output more readable info</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91565</link>
    <description>&lt;pre&gt;From: Zhi Yong Wu &amp;lt;wuzhy&amp;lt; at &amp;gt;linux.vnet.ibm.com&amp;gt;

Reviewed-by:   Jan Kiszka  &amp;lt;jan.kiszka&amp;lt; at &amp;gt;siemens.com&amp;gt;
Signed-off-by: Zhi Yong Wu &amp;lt;wuzhy&amp;lt; at &amp;gt;linux.vnet.ibm.com&amp;gt;
---
 net.c     |   18 ++++++++++++++----
 net.h     |   12 ++++++++++++
 net/hub.c |   23 +++++++++++++++++++++--
 net/hub.h |    1 +
 4 files changed, 48 insertions(+), 6 deletions(-)

diff --git a/net.c b/net.c
index 61dc28d..ae0deec 100644
--- a/net.c
+++ b/net.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -887,6 +887,12 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static const struct {
         },
     },
 #endif /* CONFIG_NET_BRIDGE */
+    [NET_CLIENT_TYPE_HUB] = {
+        .type = "hubport",
+        .desc = {
+            { /* end of list */ }
+        },
+    },
 };
 
 int net_client_init(Monitor *mon, QemuOpts *opts, int is_netdev)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1068,7 +1074,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; int do_netdev_del(Monitor *mon, const QDict *qdict, QObject **ret_data)
     return 0;
 }
 
-static void print_net_client(Monitor *mon, NetClientState *vc)
+void print_net_client(Monitor *mon, NetClientState *vc)
 {
     monitor_printf(mon, "%s: type=%s,%s\n", vc-&amp;gt;name,
           &lt;/pre&gt;</description>
    <dc:creator>zwu.kernel&lt; at &gt;gmail.com</dc:creator>
    <dc:date>2012-05-25T14:02:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91563">
    <title>Re: [PATCH v3 13/16] net: Make the monitor output more reasonable hub info</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91563</link>
    <description>&lt;pre&gt;OK. sent out v4 for this patch.



&lt;/pre&gt;</description>
    <dc:creator>Zhi Yong Wu</dc:creator>
    <dc:date>2012-05-25T13:58:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91562">
    <title>Re: [Qemu-devel] [PATCH v3 00/16] net: hub-based networking</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91562</link>
    <description>&lt;pre&gt;On Fri, 25 May 2012 15:47:28 +0200
Paolo Bonzini &amp;lt;pbonzini&amp;lt; at &amp;gt;redhat.com&amp;gt; wrote:


vlan is and the cleanest solution is to drop it.

But that's just my opnion, I won't (and possibly can't) nack this.
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo&amp;lt; at &amp;gt;vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

&lt;/pre&gt;</description>
    <dc:creator>Luiz Capitulino</dc:creator>
    <dc:date>2012-05-25T13:56:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91561">
    <title>Re: [PATCH v3 13/16] net: Make the monitor output more reasonable hub info</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91561</link>
    <description>&lt;pre&gt;
Yes, this is what I was propose. You can just save the peer indentions
in the hub case.

Thanks!
Jan

&lt;/pre&gt;</description>
    <dc:creator>Jan Kiszka</dc:creator>
    <dc:date>2012-05-25T13:49:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91559">
    <title>Re: [Qemu-devel] [PATCH v3 00/16] net: hub-based networking</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.kvm.devel/91559</link>
    <description>&lt;pre&gt;On Fri, 25 May 2012 15:37:15 +0200
Paolo Bonzini &amp;lt;pbonzini&amp;lt; at &amp;gt;redhat.com&amp;gt; wrote:


VDE allows this too :)


Let's start with what is hurting us.


I'm not sure. But note that openvswitch is a better alternative for linux.
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo&amp;lt; at &amp;gt;vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

&lt;/pre&gt;</description>
    <dc:creator>Luiz Capitulino</dc:creator>
    <dc:date>2012-05-25T13:43:22</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.emulators.kvm.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.emulators.kvm.devel</link>
  </textinput>
</rdf:RDF>

