diff for duplicates of <1565941195999.79315@bt.com> diff --git a/a/2.bin b/a/2.bin deleted file mode 100644 index ebed112..0000000 --- a/a/2.bin +++ /dev/null @@ -1,90 +0,0 @@ -<html> -<head> -<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> -<style type="text/css" style="display:none"><!-- P { margin-top: 0px; margin-bottom: 0px; } .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left-width: 2px; border-left-style: solid; border-left-color: rgb(128, 0, 0); }--></style> -</head> -<body dir="ltr" style="font-size:12pt;color:#000000;background-color:#FFFFFF;font-family:Calibri,Arial,Helvetica,sans-serif;"> -<p></p> -<div><span style="font-size: 12pt;">This bit configures endianness of PCI MMIO devices. It is used by</span><br> -</div> -<div>Solaris and OpenBSD sunhme drivers.</div> -<div><br> -</div> -<div>Tested working on OpenBSD.</div> -<div><br> -</div> -<div>Unfortunately Solaris 10 had a unrelated keyboard issue blocking</div> -<div>testing... another inch towards Solaris 10 on SPARC64 =)</div> -<div><br> -</div> -<div>Signed-off-by: Tony Nguyen <tony.nguyen@bt.com></div> -<div>Reviewed-by: Richard Henderson <richard.henderson@linaro.org></div> -<div>Tested-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk></div> -<div>---</div> -<div> target/sparc/cpu.h | 2 ++</div> -<div> target/sparc/mmu_helper.c | 8 +++++++-</div> -<div> 2 files changed, 9 insertions(+), 1 deletion(-)</div> -<div><br> -</div> -<div>diff --git a/target/sparc/cpu.h b/target/sparc/cpu.h</div> -<div>index 1406f0b..c6bafa8 100644</div> -<div>--- a/target/sparc/cpu.h</div> -<div>+++ b/target/sparc/cpu.h</div> -<div>@@ -275,6 +275,7 @@ enum {</div> -<div> </div> -<div> #define TTE_VALID_BIT (1ULL << 63)</div> -<div> #define TTE_NFO_BIT (1ULL << 60)</div> -<div>+#define TTE_IE_BIT (1ULL << 59)</div> -<div> #define TTE_USED_BIT (1ULL << 41)</div> -<div> #define TTE_LOCKED_BIT (1ULL << 6)</div> -<div> #define TTE_SIDEEFFECT_BIT (1ULL << 3)</div> -<div>@@ -291,6 +292,7 @@ enum {</div> -<div> </div> -<div> #define TTE_IS_VALID(tte) ((tte) & TTE_VALID_BIT)</div> -<div> #define TTE_IS_NFO(tte) ((tte) & TTE_NFO_BIT)</div> -<div>+#define TTE_IS_IE(tte) ((tte) & TTE_IE_BIT)</div> -<div> #define TTE_IS_USED(tte) ((tte) & TTE_USED_BIT)</div> -<div> #define TTE_IS_LOCKED(tte) ((tte) & TTE_LOCKED_BIT)</div> -<div> #define TTE_IS_SIDEEFFECT(tte) ((tte) & TTE_SIDEEFFECT_BIT)</div> -<div>diff --git a/target/sparc/mmu_helper.c b/target/sparc/mmu_helper.c</div> -<div>index 826e14b..77dc86a 100644</div> -<div>--- a/target/sparc/mmu_helper.c</div> -<div>+++ b/target/sparc/mmu_helper.c</div> -<div>@@ -537,6 +537,10 @@ static int get_physical_address_data(CPUSPARCState *env, hwaddr *physical,</div> -<div> if (ultrasparc_tag_match(&env->dtlb[i], address, context, physical)) {</div> -<div> int do_fault = 0;</div> -<div> </div> -<div>+ if (TTE_IS_IE(env->dtlb[i].tte)) {</div> -<div>+ attrs->byte_swap = true;</div> -<div>+ }</div> -<div>+</div> -<div> /* access ok? */</div> -<div> /* multiple bits in SFSR.FT may be set on TT_DFAULT */</div> -<div> if (TTE_IS_PRIV(env->dtlb[i].tte) && is_user) {</div> -<div>@@ -792,7 +796,7 @@ void dump_mmu(CPUSPARCState *env)</div> -<div> }</div> -<div> if (TTE_IS_VALID(env->dtlb[i].tte)) {</div> -<div> qemu_printf("[%02u] VA: %" PRIx64 ", PA: %llx"</div> -<div>- ", %s, %s, %s, %s, ctx %" PRId64 " %s\n",</div> -<div>+ ", %s, %s, %s, %s, ie %s, ctx %" PRId64 " %s\n",</div> -<div> i,</div> -<div> env->dtlb[i].tag & (uint64_t)~0x1fffULL,</div> -<div> TTE_PA(env->dtlb[i].tte),</div> -<div>@@ -801,6 +805,8 @@ void dump_mmu(CPUSPARCState *env)</div> -<div> TTE_IS_W_OK(env->dtlb[i].tte) ? "RW" : "RO",</div> -<div> TTE_IS_LOCKED(env->dtlb[i].tte) ?</div> -<div> "locked" : "unlocked",</div> -<div>+ TTE_IS_IE(env->dtlb[i].tte) ?</div> -<div>+ "yes" : "no",</div> -<div> env->dtlb[i].tag & (uint64_t)0x1fffULL,</div> -<div> TTE_IS_GLOBAL(env->dtlb[i].tte) ?</div> -<div> "global" : "local");</div> -<div>-- </div> -<div>1.8.3.1</div> -<div><br> -​<br> -</div> -<p><br> -</p> -</body> -</html> diff --git a/a/2.hdr b/a/2.hdr deleted file mode 100644 index e54d0ae..0000000 --- a/a/2.hdr +++ /dev/null @@ -1,2 +0,0 @@ -Content-Type: text/html; charset="iso-8859-1" -Content-Transfer-Encoding: quoted-printable diff --git a/a/content_digest b/N1/content_digest index c107147..0e88f27 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -1,96 +1,93 @@ "ref\043bc5e07ac614d0e8e740bf6007ff77b@tpw09926dag18e.domain1.systemhost.net\0" "From\0<tony.nguyen@bt.com>\0" - "Subject\0[Qemu-riscv] [Qemu-devel] [PATCH v7 42/42] target/sparc: sun4u Invert Endian TTE bit\0" + "Subject\0[Qemu-devel] [PATCH v7 42/42] target/sparc: sun4u Invert Endian TTE bit\0" "Date\0Fri, 16 Aug 2019 07:39:56 +0000\0" "To\0<qemu-devel@nongnu.org>\0" - "Cc\0<rth@twiddle.net>" - <pbonzini@redhat.com> - <mst@redhat.com> - <imammedo@redhat.com> - <marcel.apfelbaum@gmail.com> - <xiaoguangrong.eric@gmail.com> - <alistair@alistair23.me> - <peter.maydell@linaro.org> - <b.galvani@gmail.com> - <clg@kaod.org> - <andrew@aj.id.au> - <joel@jms.id.au> - <i.mitsyanko@gmail.com> - <robh@kernel.org> - <peter.chubb@nicta.com.au> - <sundeep.lkml@gmail.com> - <jan.kiszka@web.de> - <balrogg@gmail.com> - <eric.auger@redhat.com> - <kraxel@redhat.com> - <michael@walle.cc> - <kwolf@redhat.com> - <mreitz@redhat.com> - <jsnow@redhat.com> - <keith.busch@intel.com> - <philmd@redhat.com> - <marcandre.lureau@redhat.com> - <Andrew.Baumann@microsoft.com> - <edgar.iglesias@gmail.com> - <antonynpavlov@gmail.com> - <chouteau@adacore.com> - <frederic.konrad@adacore.com> - <huth@tuxfamily.org> - <mark.cave-ayland@ilande.co.uk> - <hpoussin@reactos.org> - <arikalo@wavecomp.com> - <balaton@eik.bme.hu> - <gxt@mprc.pku.edu.cn> - <david@gibson.dropbear.id.au> - <deller@gmx.de> - <ehabkost@redhat.com> - <sstabellini@kernel.org> - <anthony.perard@citrix.com> - <paul.durrant@citrix.com> - <aurelien@aurel32.net> - <amarkovic@wavecomp.com> - <magnus.damm@gmail.com> - <berto@igalia.com> - <minyard@acm.org> - <pburton@wavecomp.com> - <jslaby@suse.cz> - <jcd@tribudubois.net> - <andrew.smirnov@gmail.com> - <green@moxielogic.com> - <jasowang@redhat.com> - <dmitry.fleytman@gmail.com> - <sw@weilnetz.de> - <jiri@resnulli.us> - <crwulff@gmail.com> - <marex@denx.de> - <lersek@redhat.com> - <proljc@gmail.com> - <shorne@gmail.com> - <yuval.shaia@oracle.com> - <palmer@sifive.com> - <sagark@eecs.berkeley.edu> - <kbastian@mail.uni-paderborn.de> - <walling@linux.ibm.com> - <cohuck@redhat.com> - <david@redhat.com> - <pasic@linux.ibm.com> - <borntraeger@de.ibm.com> - <fam@euphon.net> - <hare@suse.com> - <atar4qemu@gmail.com> - <stefanb@linux.ibm.com> - <alex.williamson@redhat.com> - <jcmvbkbc@gmail.com> - <laurent@vivier.eu> - <claudio.fontana@suse.com> - <stefanha@redhat.com> - <qemu-arm@nongnu.org> - <qemu-block@nongnu.org> - <qemu-ppc@nongnu.org> - <xen-devel@lists.xenproject.org> - <qemu-riscv@nongnu.org> - " <qemu-s390x@nongnu.org>\0" - "\01:1\0" + "Cc\0frederic.konrad@adacore.com" + berto@igalia.com + qemu-block@nongnu.org + arikalo@wavecomp.com + pasic@linux.ibm.com + hpoussin@reactos.org + anthony.perard@citrix.com + xen-devel@lists.xenproject.org + lersek@redhat.com + jasowang@redhat.com + jiri@resnulli.us + ehabkost@redhat.com + b.galvani@gmail.com + eric.auger@redhat.com + alex.williamson@redhat.com + stefanha@redhat.com + jsnow@redhat.com + rth@twiddle.net + kwolf@redhat.com + andrew@aj.id.au + claudio.fontana@suse.com + crwulff@gmail.com + laurent@vivier.eu + sundeep.lkml@gmail.com + michael@walle.cc + qemu-ppc@nongnu.org + kbastian@mail.uni-paderborn.de + imammedo@redhat.com + fam@euphon.net + peter.maydell@linaro.org + david@redhat.com + palmer@sifive.com + keith.busch@intel.com + jcmvbkbc@gmail.com + hare@suse.com + sstabellini@kernel.org + andrew.smirnov@gmail.com + deller@gmx.de + magnus.damm@gmail.com + atar4qemu@gmail.com + minyard@acm.org + sw@weilnetz.de + yuval.shaia@oracle.com + qemu-s390x@nongnu.org + qemu-arm@nongnu.org + jan.kiszka@web.de + clg@kaod.org + shorne@gmail.com + qemu-riscv@nongnu.org + i.mitsyanko@gmail.com + cohuck@redhat.com + philmd@redhat.com + amarkovic@wavecomp.com + peter.chubb@nicta.com.au + aurelien@aurel32.net + pburton@wavecomp.com + sagark@eecs.berkeley.edu + green@moxielogic.com + kraxel@redhat.com + edgar.iglesias@gmail.com + gxt@mprc.pku.edu.cn + robh@kernel.org + borntraeger@de.ibm.com + joel@jms.id.au + antonynpavlov@gmail.com + chouteau@adacore.com + Andrew.Baumann@microsoft.com + mreitz@redhat.com + walling@linux.ibm.com + dmitry.fleytman@gmail.com + mst@redhat.com + mark.cave-ayland@ilande.co.uk + jslaby@suse.cz + marex@denx.de + proljc@gmail.com + marcandre.lureau@redhat.com + alistair@alistair23.me + paul.durrant@citrix.com + david@gibson.dropbear.id.au + xiaoguangrong.eric@gmail.com + huth@tuxfamily.org + jcd@tribudubois.net + pbonzini@redhat.com + " stefanb@linux.ibm.com\0" + "\00:1\0" "b\0" "This bit configures endianness of PCI MMIO devices. It is used by\n" "Solaris and OpenBSD sunhme drivers.\n" @@ -165,97 +162,5 @@ "1.8.3.1\n" "\n" ? - "\01:2\0" - "b\0" - "<html>\r\n" - "<head>\r\n" - "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n" - "<style type=\"text/css\" style=\"display:none\"><!-- P { margin-top: 0px; margin-bottom: 0px; } .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left-width: 2px; border-left-style: solid; border-left-color: rgb(128, 0, 0); }--></style>\r\n" - "</head>\r\n" - "<body dir=\"ltr\" style=\"font-size:12pt;color:#000000;background-color:#FFFFFF;font-family:Calibri,Arial,Helvetica,sans-serif;\">\r\n" - "<p></p>\r\n" - "<div><span style=\"font-size: 12pt;\">This bit configures endianness of PCI MMIO devices. It is used by</span><br>\r\n" - "</div>\r\n" - "<div>Solaris and OpenBSD sunhme drivers.</div>\r\n" - "<div><br>\r\n" - "</div>\r\n" - "<div>Tested working on OpenBSD.</div>\r\n" - "<div><br>\r\n" - "</div>\r\n" - "<div>Unfortunately Solaris 10 had a unrelated keyboard issue blocking</div>\r\n" - "<div>testing... another inch towards Solaris 10 on SPARC64 =)</div>\r\n" - "<div><br>\r\n" - "</div>\r\n" - "<div>Signed-off-by: Tony Nguyen <tony.nguyen@bt.com></div>\r\n" - "<div>Reviewed-by: Richard Henderson <richard.henderson@linaro.org></div>\r\n" - "<div>Tested-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk></div>\r\n" - "<div>---</div>\r\n" - "<div> target/sparc/cpu.h | 2 ++</div>\r\n" - "<div> target/sparc/mmu_helper.c | 8 +++++++-</div>\r\n" - "<div> 2 files changed, 9 insertions(+), 1 deletion(-)</div>\r\n" - "<div><br>\r\n" - "</div>\r\n" - "<div>diff --git a/target/sparc/cpu.h b/target/sparc/cpu.h</div>\r\n" - "<div>index 1406f0b..c6bafa8 100644</div>\r\n" - "<div>--- a/target/sparc/cpu.h</div>\r\n" - "<div>+++ b/target/sparc/cpu.h</div>\r\n" - "<div>@@ -275,6 +275,7 @@ enum {</div>\r\n" - "<div> </div>\r\n" - "<div> #define TTE_VALID_BIT (1ULL << 63)</div>\r\n" - "<div> #define TTE_NFO_BIT (1ULL << 60)</div>\r\n" - "<div>+#define TTE_IE_BIT (1ULL << 59)</div>\r\n" - "<div> #define TTE_USED_BIT (1ULL << 41)</div>\r\n" - "<div> #define TTE_LOCKED_BIT (1ULL << 6)</div>\r\n" - "<div> #define TTE_SIDEEFFECT_BIT (1ULL << 3)</div>\r\n" - "<div>@@ -291,6 +292,7 @@ enum {</div>\r\n" - "<div> </div>\r\n" - "<div> #define TTE_IS_VALID(tte) ((tte) & TTE_VALID_BIT)</div>\r\n" - "<div> #define TTE_IS_NFO(tte) ((tte) & TTE_NFO_BIT)</div>\r\n" - "<div>+#define TTE_IS_IE(tte) ((tte) & TTE_IE_BIT)</div>\r\n" - "<div> #define TTE_IS_USED(tte) ((tte) & TTE_USED_BIT)</div>\r\n" - "<div> #define TTE_IS_LOCKED(tte) ((tte) & TTE_LOCKED_BIT)</div>\r\n" - "<div> #define TTE_IS_SIDEEFFECT(tte) ((tte) & TTE_SIDEEFFECT_BIT)</div>\r\n" - "<div>diff --git a/target/sparc/mmu_helper.c b/target/sparc/mmu_helper.c</div>\r\n" - "<div>index 826e14b..77dc86a 100644</div>\r\n" - "<div>--- a/target/sparc/mmu_helper.c</div>\r\n" - "<div>+++ b/target/sparc/mmu_helper.c</div>\r\n" - "<div>@@ -537,6 +537,10 @@ static int get_physical_address_data(CPUSPARCState *env, hwaddr *physical,</div>\r\n" - "<div> if (ultrasparc_tag_match(&env->dtlb[i], address, context, physical)) {</div>\r\n" - "<div> int do_fault = 0;</div>\r\n" - "<div> </div>\r\n" - "<div>+ if (TTE_IS_IE(env->dtlb[i].tte)) {</div>\r\n" - "<div>+ attrs->byte_swap = true;</div>\r\n" - "<div>+ }</div>\r\n" - "<div>+</div>\r\n" - "<div> /* access ok? */</div>\r\n" - "<div> /* multiple bits in SFSR.FT may be set on TT_DFAULT */</div>\r\n" - "<div> if (TTE_IS_PRIV(env->dtlb[i].tte) && is_user) {</div>\r\n" - "<div>@@ -792,7 +796,7 @@ void dump_mmu(CPUSPARCState *env)</div>\r\n" - "<div> }</div>\r\n" - "<div> if (TTE_IS_VALID(env->dtlb[i].tte)) {</div>\r\n" - "<div> qemu_printf("[%02u] VA: %" PRIx64 ", PA: %llx"</div>\r\n" - "<div>- ", %s, %s, %s, %s, ctx %" PRId64 " %s\\n",</div>\r\n" - "<div>+ ", %s, %s, %s, %s, ie %s, ctx %" PRId64 " %s\\n",</div>\r\n" - "<div> i,</div>\r\n" - "<div> env->dtlb[i].tag & (uint64_t)~0x1fffULL,</div>\r\n" - "<div> TTE_PA(env->dtlb[i].tte),</div>\r\n" - "<div>@@ -801,6 +805,8 @@ void dump_mmu(CPUSPARCState *env)</div>\r\n" - "<div> TTE_IS_W_OK(env->dtlb[i].tte) ? "RW" : "RO",</div>\r\n" - "<div> TTE_IS_LOCKED(env->dtlb[i].tte) ?</div>\r\n" - "<div> "locked" : "unlocked",</div>\r\n" - "<div>+ TTE_IS_IE(env->dtlb[i].tte) ?</div>\r\n" - "<div>+ "yes" : "no",</div>\r\n" - "<div> env->dtlb[i].tag & (uint64_t)0x1fffULL,</div>\r\n" - "<div> TTE_IS_GLOBAL(env->dtlb[i].tte) ?</div>\r\n" - "<div> "global" : "local");</div>\r\n" - "<div>-- </div>\r\n" - "<div>1.8.3.1</div>\r\n" - "<div><br>\r\n" - "​<br>\r\n" - "</div>\r\n" - "<p><br>\r\n" - "</p>\r\n" - "</body>\r\n" - "</html>\r\n" -62866a709a76a5e038945446bec7478d59b60cddceae475185fd786214ec696b +42921c7582db4f0818e8b909a4840e2563debcf921d802832f2cdf26d1eb5e48
diff --git a/N2/1.1.hdr b/N2/1.1.hdr new file mode 100644 index 0000000..12686e4 --- /dev/null +++ b/N2/1.1.hdr @@ -0,0 +1,2 @@ +Content-Type: text/plain; charset="iso-8859-1" +Content-Transfer-Encoding: quoted-printable diff --git a/a/1.txt b/N2/1.1.txt similarity index 100% rename from a/1.txt rename to N2/1.1.txt diff --git a/a/2.bin b/N2/1.2.bin similarity index 100% rename from a/2.bin rename to N2/1.2.bin diff --git a/N2/1.2.hdr b/N2/1.2.hdr new file mode 100644 index 0000000..e54d0ae --- /dev/null +++ b/N2/1.2.hdr @@ -0,0 +1,2 @@ +Content-Type: text/html; charset="iso-8859-1" +Content-Transfer-Encoding: quoted-printable diff --git a/a/2.hdr b/N2/2.hdr index e54d0ae..5216513 100644 --- a/a/2.hdr +++ b/N2/2.hdr @@ -1,2 +1,4 @@ -Content-Type: text/html; charset="iso-8859-1" -Content-Transfer-Encoding: quoted-printable +Content-Type: text/plain; charset="utf-8" +MIME-Version: 1.0 +Content-Transfer-Encoding: base64 +Content-Disposition: inline diff --git a/N2/2.txt b/N2/2.txt new file mode 100644 index 0000000..d2ea9a6 --- /dev/null +++ b/N2/2.txt @@ -0,0 +1,4 @@ +_______________________________________________ +Xen-devel mailing list +Xen-devel@lists.xenproject.org +https://lists.xenproject.org/mailman/listinfo/xen-devel diff --git a/a/content_digest b/N2/content_digest index c107147..9fe2cf6 100644 --- a/a/content_digest +++ b/N2/content_digest @@ -1,96 +1,96 @@ "ref\043bc5e07ac614d0e8e740bf6007ff77b@tpw09926dag18e.domain1.systemhost.net\0" "From\0<tony.nguyen@bt.com>\0" - "Subject\0[Qemu-riscv] [Qemu-devel] [PATCH v7 42/42] target/sparc: sun4u Invert Endian TTE bit\0" + "Subject\0[Xen-devel] [Qemu-devel] [PATCH v7 42/42] target/sparc: sun4u Invert Endian TTE bit\0" "Date\0Fri, 16 Aug 2019 07:39:56 +0000\0" "To\0<qemu-devel@nongnu.org>\0" - "Cc\0<rth@twiddle.net>" - <pbonzini@redhat.com> - <mst@redhat.com> - <imammedo@redhat.com> - <marcel.apfelbaum@gmail.com> - <xiaoguangrong.eric@gmail.com> - <alistair@alistair23.me> - <peter.maydell@linaro.org> - <b.galvani@gmail.com> - <clg@kaod.org> - <andrew@aj.id.au> - <joel@jms.id.au> - <i.mitsyanko@gmail.com> - <robh@kernel.org> - <peter.chubb@nicta.com.au> - <sundeep.lkml@gmail.com> - <jan.kiszka@web.de> - <balrogg@gmail.com> - <eric.auger@redhat.com> - <kraxel@redhat.com> - <michael@walle.cc> - <kwolf@redhat.com> - <mreitz@redhat.com> - <jsnow@redhat.com> - <keith.busch@intel.com> - <philmd@redhat.com> - <marcandre.lureau@redhat.com> - <Andrew.Baumann@microsoft.com> - <edgar.iglesias@gmail.com> - <antonynpavlov@gmail.com> - <chouteau@adacore.com> - <frederic.konrad@adacore.com> - <huth@tuxfamily.org> - <mark.cave-ayland@ilande.co.uk> - <hpoussin@reactos.org> - <arikalo@wavecomp.com> - <balaton@eik.bme.hu> - <gxt@mprc.pku.edu.cn> - <david@gibson.dropbear.id.au> - <deller@gmx.de> - <ehabkost@redhat.com> - <sstabellini@kernel.org> - <anthony.perard@citrix.com> - <paul.durrant@citrix.com> - <aurelien@aurel32.net> - <amarkovic@wavecomp.com> - <magnus.damm@gmail.com> - <berto@igalia.com> - <minyard@acm.org> - <pburton@wavecomp.com> - <jslaby@suse.cz> - <jcd@tribudubois.net> - <andrew.smirnov@gmail.com> - <green@moxielogic.com> - <jasowang@redhat.com> - <dmitry.fleytman@gmail.com> - <sw@weilnetz.de> - <jiri@resnulli.us> - <crwulff@gmail.com> - <marex@denx.de> - <lersek@redhat.com> - <proljc@gmail.com> - <shorne@gmail.com> - <yuval.shaia@oracle.com> - <palmer@sifive.com> - <sagark@eecs.berkeley.edu> - <kbastian@mail.uni-paderborn.de> - <walling@linux.ibm.com> - <cohuck@redhat.com> - <david@redhat.com> - <pasic@linux.ibm.com> - <borntraeger@de.ibm.com> - <fam@euphon.net> - <hare@suse.com> - <atar4qemu@gmail.com> - <stefanb@linux.ibm.com> - <alex.williamson@redhat.com> - <jcmvbkbc@gmail.com> - <laurent@vivier.eu> - <claudio.fontana@suse.com> - <stefanha@redhat.com> - <qemu-arm@nongnu.org> - <qemu-block@nongnu.org> - <qemu-ppc@nongnu.org> - <xen-devel@lists.xenproject.org> - <qemu-riscv@nongnu.org> - " <qemu-s390x@nongnu.org>\0" - "\01:1\0" + "Cc\0frederic.konrad@adacore.com" + berto@igalia.com + qemu-block@nongnu.org + arikalo@wavecomp.com + pasic@linux.ibm.com + hpoussin@reactos.org + anthony.perard@citrix.com + xen-devel@lists.xenproject.org + lersek@redhat.com + jasowang@redhat.com + jiri@resnulli.us + ehabkost@redhat.com + b.galvani@gmail.com + eric.auger@redhat.com + alex.williamson@redhat.com + stefanha@redhat.com + jsnow@redhat.com + rth@twiddle.net + kwolf@redhat.com + andrew@aj.id.au + claudio.fontana@suse.com + crwulff@gmail.com + laurent@vivier.eu + sundeep.lkml@gmail.com + michael@walle.cc + qemu-ppc@nongnu.org + kbastian@mail.uni-paderborn.de + imammedo@redhat.com + fam@euphon.net + peter.maydell@linaro.org + david@redhat.com + palmer@sifive.com + balaton@eik.bme.hu + keith.busch@intel.com + jcmvbkbc@gmail.com + hare@suse.com + sstabellini@kernel.org + andrew.smirnov@gmail.com + deller@gmx.de + magnus.damm@gmail.com + marcel.apfelbaum@gmail.com + atar4qemu@gmail.com + minyard@acm.org + sw@weilnetz.de + yuval.shaia@oracle.com + qemu-s390x@nongnu.org + qemu-arm@nongnu.org + jan.kiszka@web.de + clg@kaod.org + shorne@gmail.com + qemu-riscv@nongnu.org + i.mitsyanko@gmail.com + cohuck@redhat.com + philmd@redhat.com + amarkovic@wavecomp.com + peter.chubb@nicta.com.au + aurelien@aurel32.net + pburton@wavecomp.com + sagark@eecs.berkeley.edu + green@moxielogic.com + kraxel@redhat.com + edgar.iglesias@gmail.com + gxt@mprc.pku.edu.cn + robh@kernel.org + borntraeger@de.ibm.com + joel@jms.id.au + antonynpavlov@gmail.com + chouteau@adacore.com + balrogg@gmail.com + Andrew.Baumann@microsoft.com + mreitz@redhat.com + walling@linux.ibm.com + dmitry.fleytman@gmail.com + mst@redhat.com + mark.cave-ayland@ilande.co.uk + jslaby@suse.cz + marex@denx.de + proljc@gmail.com + marcandre.lureau@redhat.com + alistair@alistair23.me + paul.durrant@citrix.com + david@gibson.dropbear.id.au + xiaoguangrong.eric@gmail.com + huth@tuxfamily.org + jcd@tribudubois.net + pbonzini@redhat.com + " stefanb@linux.ibm.com\0" + "\02:1.1\0" "b\0" "This bit configures endianness of PCI MMIO devices. It is used by\n" "Solaris and OpenBSD sunhme drivers.\n" @@ -165,7 +165,7 @@ "1.8.3.1\n" "\n" ? - "\01:2\0" + "\02:1.2\0" "b\0" "<html>\r\n" "<head>\r\n" @@ -257,5 +257,11 @@ "</p>\r\n" "</body>\r\n" "</html>\r\n" + "\01:2\0" + "b\0" + "_______________________________________________\n" + "Xen-devel mailing list\n" + "Xen-devel@lists.xenproject.org\n" + https://lists.xenproject.org/mailman/listinfo/xen-devel -62866a709a76a5e038945446bec7478d59b60cddceae475185fd786214ec696b +8e21f9b168e9420e7c715f139be6a79db290aef7d4a0fc4044b5539242ad4a7f
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.