<?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.xen.devel">
    <title>gmane.comp.emulators.xen.devel</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.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.xen.devel/160549"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160548"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160547"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160546"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160545"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160544"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160543"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160542"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160541"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160540"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160539"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160538"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160537"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160536"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160535"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160534"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160533"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160532"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160531"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160530"/>
      </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.xen.devel/160549">
    <title>Xen/ARM multiboot (v2) support</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160549</link>
    <description>&lt;pre&gt;Hi Ian,

can we push multiboot v2 support for Xen/ARM still into 4.3?
It looks like it can coexists with zImage in the same binary - the 
multiboot structure can be put just behind the zImage header and the 
code can determine how it has been started: zImage bootloaders clears 
r0, multiboot one's would set r0 to the MB magic.
I will sketch a patch tomorrow, just wondering if we can have this in 
4.3 to have a sane booting protocol from the very beginning.
Of course bootloaders need to be enabled also, I could take care of the 
u-boot port.

Regards,
Andre.
&lt;/pre&gt;</description>
    <dc:creator>Andre Przywara</dc:creator>
    <dc:date>2013-05-23T22:38:46</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160548">
    <title>Re: Xen on ARM DT based boot protocol</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160548</link>
    <description>&lt;pre&gt;
Hi,


Interestingly Linux/ARM does not seem to expect a parameter to 
earlyprintk, the actual device to use is hardcoded in 
arch/arm/include/debug/&amp;lt;mach&amp;gt;.S and earlyprintk is just a switch. So 
earlyprintk=xen is broken anyway ;-)

But using bootargs for Dom0 could just be a fallback, so what about:

if xen,xen-bootargs is provided: use it for Xen, else use "";
if xen,dom0-bootargs is provided: use it for Dom0, else
if bootargs is provided: use that for Dom0
write Dom0 cmdline into chosen/bootargs in Dom0's dtb

And is there a need for the "xen," prefix? I thought that this syntax is 
only needed for the compatible property, no?

So eventually there could be one dtb to rule them all:
chosen {
xen,xen-bootargs = "...";
xen,dom0-bootargs = "...";
bootargs = "...";
}
My concern is not so much about the bootloader's understanding of the 
dtb, but more about the vendor provided one, which one would expect to 
be in flash ROM, for instance. We can provide only one here.

Will send a patch tomorrow.

Regards,&lt;/pre&gt;</description>
    <dc:creator>Andre Przywara</dc:creator>
    <dc:date>2013-05-23T22:27:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160547">
    <title>Re: Xen on ARM DT based boot protocol</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160547</link>
    <description>&lt;pre&gt; 
Actually that is not true, in fact in the example above the only
difference is earlyprintk=xenboot that is just a debug option.
&lt;/pre&gt;</description>
    <dc:creator>Stefano Stabellini</dc:creator>
    <dc:date>2013-05-23T21:04:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160546">
    <title>[PATCH] x86/watchdog: Use real timestamps for watchdogtimeout</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160546</link>
    <description>&lt;pre&gt;Do not assume that we will only receive interrupts at a rate of nmi_hz.  On a
test system being debugged, I observed a PCI SERR being continuously asserted
without the SERR bit being set.  The result was Xen "exceeding" a 300 second
timeout within 1 second.

Change the nmi_watchdog_tick() timecounting to use timestamps rather than a
rate calculated from nmi_hz (which itself has been seen to deviate on some
systems due to Turbo/Pstates).

Also, move the comment to a more appropriate place (as we would expect to
enter the old if() block once a second anyway), and fix up two trailing
whitespace issues.

Signed-off-by: Andrew Cooper &amp;lt;andrew.cooper3&amp;lt; at &amp;gt;citrix.com&amp;gt;

diff -r c6fb586f83a0 -r ebb0070be9fd xen/arch/x86/nmi.c
--- a/xen/arch/x86/nmi.c
+++ b/xen/arch/x86/nmi.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -396,7 +396,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static struct notifier_block cpu_nmi_nfb
 };
 
 static DEFINE_PER_CPU(unsigned int, last_irq_sums);
-static DEFINE_PER_CPU(unsigned int, alert_counter);
+static DEFINE_PER_CPU(s_time_t, last_irq_change);
 
 static atomic_t watchdog&lt;/pre&gt;</description>
    <dc:creator>Andrew Cooper</dc:creator>
    <dc:date>2013-05-23T20:32:06</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160545">
    <title>Re: [Patch[ xl problems with xendomains</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160545</link>
    <description>&lt;pre&gt;Yes, looks good. :)

Thanks,

Ian.
&lt;/pre&gt;</description>
    <dc:creator>Ian Murray</dc:creator>
    <dc:date>2013-05-23T19:23:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160544">
    <title>[xen-4.1-testing test] 18007: tolerable FAIL - PUSHED</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160544</link>
    <description>&lt;pre&gt;flight 18007 xen-4.1-testing real [real]
http://www.chiark.greenend.org.uk/~xensrcts/logs/18007/

Failures :-/ but no regressions.

Tests which did not succeed, but are not blocking:
 build-armhf                   4 xen-build                    fail   never pass
 test-amd64-amd64-xl-pcipt-intel  9 guest-start                 fail never pass
 test-amd64-i386-xl-winxpsp3-vcpus1 13 guest-stop               fail never pass
 test-amd64-amd64-xl-winxpsp3 13 guest-stop                   fail   never pass
 test-i386-i386-xl-qemut-winxpsp3 13 guest-stop                 fail never pass
 test-amd64-i386-xend-qemut-winxpsp3 16 leak-check/check        fail never pass
 test-amd64-amd64-xl-win7-amd64 13 guest-stop                   fail never pass
 test-amd64-i386-xl-qemut-win7-amd64 13 guest-stop              fail never pass
 test-amd64-i386-xl-win7-amd64 13 guest-stop                   fail  never pass
 test-amd64-amd64-xl-qemuu-win7-amd64 13 guest-stop             fail never pass
 test-amd64-amd64-xl-qemut-win7-amd64 13&lt;/pre&gt;</description>
    <dc:creator>xen.org</dc:creator>
    <dc:date>2013-05-23T19:22:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160543">
    <title>Re: FreeBSD PVHVM call for testing</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160543</link>
    <description>&lt;pre&gt;On 05/23/13 02:06, Roger Pau Monné wrote:

Looks like there's agreement about the cpuids here.  Anything else I should
try testing?

SMAP type=01 base=0000000000000000 len=000000000009e000
SMAP type=02 base=000000000009e000 len=0000000000002000
SMAP type=02 base=00000000000e0000 len=0000000000020000
SMAP type=01 base=0000000000100000 len=00000000eff00000
SMAP type=02 base=00000000fc000000 len=0000000004000000
SMAP type=01 base=0000000100000000 len=0000003c19000000
Table 'FACP' at 0xfc014980
Table 'APIC' at 0xfc014a80
APIC: Found table at 0xfc014a80
APIC: Using the MADT enumerator.
MADT: Found CPU APIC ID 0 ACPI ID 0: enabled
SMP: Added CPU 0 (AP)
MADT: Found CPU APIC ID 2 ACPI ID 1: enabled
SMP: Added CPU 2 (AP)
MADT: Found CPU APIC ID 4 ACPI ID 2: enabled
SMP: Added CPU 4 (AP)
MADT: Found CPU APIC ID 6 ACPI ID 3: enabled
SMP: Added CPU 6 (AP)
MADT: Found CPU APIC ID 8 ACPI ID 4: enabled
SMP: Added CPU 8 (AP)
MADT: Found CPU APIC ID 10 ACPI ID 5: enabled
SMP: Added CPU 10 (AP)
MAD&lt;/pre&gt;</description>
    <dc:creator>Colin Percival</dc:creator>
    <dc:date>2013-05-23T19:09:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160542">
    <title>Re: BUG: ext3 corruption in domU</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160542</link>
    <description>&lt;pre&gt;On Wed, May 22, 2013 at 4:10 PM, Konrad Rzeszutek Wilk
&amp;lt;konrad.wilk&amp;lt; at &amp;gt;oracle.com&amp;gt; wrote:

First, thank you so much for getting back to me, it's really appreciated.
At this point I've forgotten if I did this with Wheezy on Wheezy, and
what the result was.
I'll have to test using the 3.2 kernel on the domU Debian Squeeze and
get back to you. I should be able to do that early next week.

&lt;/pre&gt;</description>
    <dc:creator>Anthony Sheetz</dc:creator>
    <dc:date>2013-05-23T18:19:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160541">
    <title>Re: FreeBSD PVHVM call for testing</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160541</link>
    <description>&lt;pre&gt;
Can you recheck this on stock HEAD?

From your description this looks like a rather old bug seen with 8.2
or above and XCP (referenced in PR kern/164630). You can trigger it
when e.g. booting with empty cdrom.

&lt;/pre&gt;</description>
    <dc:creator>Sergey Kandaurov</dc:creator>
    <dc:date>2013-05-23T16:48:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160540">
    <title>Re: FreeBSD PVHVM call for testing</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160540</link>
    <description>&lt;pre&gt;Hi,

Just remove this line (or pointing to a similar file from the template: (It's part of the disks definition:


Jeroen.

On 23 May 2013, at 19:02, Outback Dingo &amp;lt;outbackdingo&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Jeroen van der Ham</dc:creator>
    <dc:date>2013-05-23T17:22:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160539">
    <title>Re: FreeBSD PVHVM call for testing</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160539</link>
    <description>&lt;pre&gt;Hello,

I've pushed a new branch, pvhvm_v10 that contains a PV IPI
implementation for both amd64 and i386. I've also updated the wiki to
point to the pvhvm_v10 branch:

http://xenbits.xen.org/gitweb/?p=people/royger/freebsd.git;a=shortlog;h=refs/heads/pvhvm_v10

I've updated my tree to latest HEAD, so now branch pvhvm_v10 is on top
of this commit:

commit b44da0fb82647f2cfb06f65a6695c7e36c98828c
Author: gber &amp;lt;gber&amp;lt; at &amp;gt;FreeBSD.org&amp;gt;
Date:   Thu May 23 12:24:46 2013 +0000

    Rework and organize pmap_enter_locked() function.

    pmap_enter_locked() implementation was very ambiguous and confusing.
    Rearrange it so that each part of the mapping creation is separated.
    Avoid walking through the redundant conditions.
    Extract vector_page specific PTE setup from normal PTE setting.

    Submitted by:   Zbigniew Bodek &amp;lt;zbb&amp;lt; at &amp;gt;semihalf.com&amp;gt;
    Sponsored by:   The FreeBSD Foundation, Semihalf

Thanks for the testing, Roger.
&lt;/pre&gt;</description>
    <dc:creator>Roger Pau Monné</dc:creator>
    <dc:date>2013-05-23T17:41:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160538">
    <title>Re: FreeBSD PVHVM call for testing</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160538</link>
    <description>&lt;pre&gt;
Thanks, but this is XCP not a generic XEN server where there are vm config
files under /etc/xen/ in XCP they dont exists


_______________________________________________
Xen-devel mailing list
Xen-devel&amp;lt; at &amp;gt;lists.xen.org
http://lists.xen.org/xen-devel
&lt;/pre&gt;</description>
    <dc:creator>Outback Dingo</dc:creator>
    <dc:date>2013-05-23T17:29:34</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160537">
    <title>Re: [Hackathon minutes] PV frontends/backends and NUMA machines</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160537</link>
    <description>&lt;pre&gt;Ok, sounds like I was misremembering. I've looked more thoroughly at the
various threads and at the patches that come with them and it turned out
that Dulloor's Aug 2010 series is about NUMA for HVM guests as well.
That is to say:

For HVM guest NUMA, here's what we have had:
 - July 2008, from Andre: http://lists.xen.org/archives/html/xen-devel/2008-07/msg00582.html
 - February 2010, from Andre: http://old-list-archives.xen.org/archives/html/xen-devel/2010-02/msg00279.html
 - August 2010, from Dulloor: http://lists.xen.org/archives/html/xen-devel/2010-08/msg00008.html

For PV guest NUMA, here's what we have had:
 - April 2010, from Dulloor: http://lists.xen.org/archives/html/xen-devel/2010-04/msg00103.html
 - February 2010, from Dulloor: http://old-list-archives.xenproject.org/archives/html/xen-devel/2010-02/msg00630.html
 - from Dulloor (implementing some kind of NUMA aware ballooning):
   http://lists.xen.org/archives/html/xen-devel/2010-04/txtHhAq92jBSc.txt

Also, still for PV NUMA, this message (and of &lt;/pre&gt;</description>
    <dc:creator>Dario Faggioli</dc:creator>
    <dc:date>2013-05-23T17:21:21</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160536">
    <title>[xen-4.2-testing test] 18006: tolerable FAIL - PUSHED</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160536</link>
    <description>&lt;pre&gt;flight 18006 xen-4.2-testing real [real]
http://www.chiark.greenend.org.uk/~xensrcts/logs/18006/

Failures :-/ but no regressions.

Tests which did not succeed, but are not blocking:
 build-armhf                   4 xen-build                    fail   never pass
 test-amd64-amd64-xl-pcipt-intel  9 guest-start                 fail never pass
 test-amd64-i386-xl-qemut-winxpsp3-vcpus1 13 guest-stop         fail never pass
 test-amd64-amd64-xl-winxpsp3 13 guest-stop                   fail   never pass
 test-amd64-amd64-xl-win7-amd64 13 guest-stop                   fail never pass
 test-amd64-i386-xl-win7-amd64 13 guest-stop                   fail  never pass
 test-amd64-amd64-xl-qemut-win7-amd64 13 guest-stop             fail never pass
 test-amd64-amd64-xl-qemuu-win7-amd64 13 guest-stop             fail never pass
 test-i386-i386-xl-winxpsp3   13 guest-stop                   fail   never pass
 test-amd64-amd64-xl-qemut-winxpsp3 13 guest-stop               fail never pass
 test-amd64-i386-xl-qemut-win7-amd64 13 &lt;/pre&gt;</description>
    <dc:creator>xen.org</dc:creator>
    <dc:date>2013-05-23T17:06:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160535">
    <title>Re: FreeBSD PVHVM call for testing</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160535</link>
    <description>&lt;pre&gt;
great how does one go about disabling the cdrom, i get some disk parameters
needs to be removed from the vm template before boot
_______________________________________________
Xen-devel mailing list
Xen-devel&amp;lt; at &amp;gt;lists.xen.org
http://lists.xen.org/xen-devel
&lt;/pre&gt;</description>
    <dc:creator>Outback Dingo</dc:creator>
    <dc:date>2013-05-23T17:02:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160534">
    <title>Re: FreeBSD PVHVM call for testing</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160534</link>
    <description>&lt;pre&gt;
From what I've read on the list, it seems like you cannot boot the PVHVM
kernel if you have a cdrom attached to the guest, could you try
disabling the cdrom and booting again?
&lt;/pre&gt;</description>
    <dc:creator>Roger Pau Monné</dc:creator>
    <dc:date>2013-05-23T16:48:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160533">
    <title>Re: FreeBSD PVHVM call for testing</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160533</link>
    <description>&lt;pre&gt;

on boot after ugen0.2: &amp;lt;QEMU 0.10.2&amp;gt; at usbus0

run_interrupt_driven_hooks: still waiting after 60 seconds for
xenbus_nop_confighook_cb
run_interrupt_driven_hooks: still waiting after 120 seconds for
xenbus_nop_confighook_cb
run_interrupt_driven_hooks: still waiting after 180 seconds for
xenbus_nop_confighook_cb
run_interrupt_driven_hooks: still waiting after 240 seconds for
xenbus_nop_confighook_cb
run_interrupt_driven_hooks: still waiting after 300 seconds for
xenbus_nop_confighook_cb
panic: run_interrupt_driven_confighooks: waited too long
cpuid = 0
KDB: enter: panic
[ thread pid 0 tid 100000 ]
Stropped at kdb_enter +0x3b: movq $0,0xad6522(%rip)
db&amp;gt;



_______________________________________________
_______________________________________________
Xen-devel mailing list
Xen-devel&amp;lt; at &amp;gt;lists.xen.org
http://lists.xen.org/xen-devel
&lt;/pre&gt;</description>
    <dc:creator>Outback Dingo</dc:creator>
    <dc:date>2013-05-23T16:30:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160532">
    <title>[linux-linus test] 18003: regressions - FAIL</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160532</link>
    <description>&lt;pre&gt;flight 18003 linux-linus real [real]
http://www.chiark.greenend.org.uk/~xensrcts/logs/18003/

Regressions :-(

Tests which did not succeed and are blocking,
including tests which could not be run:
 build-i386-pvops              4 kernel-build              fail REGR. vs. 12557

Tests which did not succeed, but are not blocking:
 test-amd64-i386-xl            1 xen-build-check(1)           blocked  n/a
 test-amd64-amd64-xl-pcipt-intel  9 guest-start                 fail never pass
 test-amd64-i386-xl-credit2    1 xen-build-check(1)           blocked  n/a
 test-amd64-i386-qemuu-rhel6hvm-amd  1 xen-build-check(1)           blocked n/a
 test-amd64-i386-qemut-rhel6hvm-intel  1 xen-build-check(1)         blocked n/a
 test-amd64-i386-xl-multivcpu  1 xen-build-check(1)           blocked  n/a
 test-amd64-i386-qemuu-rhel6hvm-intel  1 xen-build-check(1)         blocked n/a
 test-amd64-i386-rhel6hvm-intel  1 xen-build-check(1)           blocked  n/a
 test-amd64-i386-xl-qemut-win7-amd64  1 xen-build-check(1)          bloc&lt;/pre&gt;</description>
    <dc:creator>xen.org</dc:creator>
    <dc:date>2013-05-23T16:14:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160531">
    <title>Re: Xen 4.3 development update RC2 imminent</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160531</link>
    <description>&lt;pre&gt;
Unless qxl is useable with sse2 disabled, there's no benefit to having 
the QXL fix in 4.3.  The only reason Anthony might do it is to be able 
to take it off his queue of things to do later -- I would leave it to 
his discretion.

  -George
&lt;/pre&gt;</description>
    <dc:creator>George Dunlap</dc:creator>
    <dc:date>2013-05-23T16:10:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160530">
    <title>Re: Xen 4.3 development update RC2 imminent</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160530</link>
    <description>&lt;pre&gt;
Well that's good news anyway -- it means that qxl as a feature is 
actually within reach. :-)

Can you try it just with sse2 disabled?


I'm afraid the code is terribly complicated.  If I could have hacked 
together a quick patch I would have already done so.  :-)

  -George
_______________________________________________
Xen-devel mailing list
Xen-devel&amp;lt; at &amp;gt;lists.xen.org
http://lists.xen.org/xen-devel
&lt;/pre&gt;</description>
    <dc:creator>George Dunlap</dc:creator>
    <dc:date>2013-05-23T16:07:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160529">
    <title>Re: Xen 4.3 development update RC2 imminent</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.xen.devel/160529</link>
    <description>&lt;pre&gt;
It's good to hear QXL actually works with Xen qemu-upstream,
(in the future) when the SSE issue is fixed! 

How about Anthony's patch for QXL.. Is that OK for for Xen 4.3,
or should that wait for 4.4 ? 

&lt;/pre&gt;</description>
    <dc:creator>Pasi Kärkkäinen</dc:creator>
    <dc:date>2013-05-23T15:10:19</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.emulators.xen.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.xen.devel</link>
  </textinput>
</rdf:RDF>
