All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <1563810222730.76414@bt.com>

diff --git a/a/2.bin b/a/2.bin
deleted file mode 100644
index 329275a..0000000
--- a/a/2.bin
+++ /dev/null
@@ -1,112 +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;">Preparation for modifying the memory API to take size&#43;sign&#43;endianness</span><br>
-</div>
-<div>instead of just size.</div>
-<div><br>
-</div>
-<div>Accelerator independent MemOp enum is extended by TCGMemOp enum.</div>
-<div><br>
-</div>
-<div>Signed-off-by: Tony Nguyen &lt;tony.nguyen@bt.com&gt;</div>
-<div>---</div>
-<div>&nbsp;MAINTAINERS &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;| &nbsp;1 &#43;</div>
-<div>&nbsp;include/exec/memop.h | 27 &#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;</div>
-<div>&nbsp;tcg/tcg.h &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;| 15 &#43;&#43;&#43;&#43;&#43;----------</div>
-<div>&nbsp;3 files changed, 33 insertions(&#43;), 10 deletions(-)</div>
-<div>&nbsp;create mode 100644 include/exec/memop.h</div>
-<div><br>
-</div>
-<div>diff --git a/MAINTAINERS b/MAINTAINERS</div>
-<div>index cc9636b..3f148cd 100644</div>
-<div>--- a/MAINTAINERS</div>
-<div>&#43;&#43;&#43; b/MAINTAINERS</div>
-<div>@@ -1890,6 &#43;1890,7 @@ M: Paolo Bonzini &lt;pbonzini@redhat.com&gt;</div>
-<div>&nbsp;S: Supported</div>
-<div>&nbsp;F: include/exec/ioport.h</div>
-<div>&nbsp;F: ioport.c</div>
-<div>&#43;F: include/exec/memop.h</div>
-<div>&nbsp;F: include/exec/memory.h</div>
-<div>&nbsp;F: include/exec/ram_addr.h</div>
-<div>&nbsp;F: memory.c</div>
-<div>diff --git a/include/exec/memop.h b/include/exec/memop.h</div>
-<div>new file mode 100644</div>
-<div>index 0000000..43e99d7</div>
-<div>--- /dev/null</div>
-<div>&#43;&#43;&#43; b/include/exec/memop.h</div>
-<div>@@ -0,0 &#43;1,27 @@</div>
-<div>&#43;/*</div>
-<div>&#43; * Constants for memory operations</div>
-<div>&#43; *</div>
-<div>&#43; * Authors:</div>
-<div>&#43; * &nbsp;Richard Henderson &lt;rth@twiddle.net&gt;</div>
-<div>&#43; *</div>
-<div>&#43; * This work is licensed under the terms of the GNU GPL, version 2 or later.</div>
-<div>&#43; * See the COPYING file in the top-level directory.</div>
-<div>&#43; *</div>
-<div>&#43; */</div>
-<div>&#43;</div>
-<div>&#43;#ifndef MEMOP_H</div>
-<div>&#43;#define MEMOP_H</div>
-<div>&#43;</div>
-<div>&#43;typedef enum MemOp {</div>
-<div>&#43; &nbsp; &nbsp;MO_8 &nbsp; &nbsp; = 0,</div>
-<div>&#43; &nbsp; &nbsp;MO_16 &nbsp; &nbsp;= 1,</div>
-<div>&#43; &nbsp; &nbsp;MO_32 &nbsp; &nbsp;= 2,</div>
-<div>&#43; &nbsp; &nbsp;MO_64 &nbsp; &nbsp;= 3,</div>
-<div>&#43; &nbsp; &nbsp;MO_SIZE &nbsp;= 3, &nbsp; /* Mask for the above. &nbsp;*/</div>
-<div>&#43;</div>
-<div>&#43; &nbsp; &nbsp;MO_SIGN &nbsp;= 4, &nbsp; /* Sign-extended, otherwise zero-extended. &nbsp;*/</div>
-<div>&#43;</div>
-<div>&#43; &nbsp; &nbsp;MO_BSWAP = 8, &nbsp; /* Host reverse endian. &nbsp;*/</div>
-<div>&#43;} MemOp;</div>
-<div>&#43;</div>
-<div>&#43;#endif</div>
-<div>diff --git a/tcg/tcg.h b/tcg/tcg.h</div>
-<div>index 63e9897..18b91fe 100644</div>
-<div>--- a/tcg/tcg.h</div>
-<div>&#43;&#43;&#43; b/tcg/tcg.h</div>
-<div>@@ -26,6 &#43;26,7 @@</div>
-<div>&nbsp;#define TCG_H</div>
-<div>&nbsp;</div>
-<div>&nbsp;#include &quot;cpu.h&quot;</div>
-<div>&#43;#include &quot;exec/memop.h&quot;</div>
-<div>&nbsp;#include &quot;exec/tb-context.h&quot;</div>
-<div>&nbsp;#include &quot;qemu/bitops.h&quot;</div>
-<div>&nbsp;#include &quot;qemu/queue.h&quot;</div>
-<div>@@ -309,17 &#43;310,11 @@ typedef enum TCGType {</div>
-<div>&nbsp;#endif</div>
-<div>&nbsp;} TCGType;</div>
-<div>&nbsp;</div>
-<div>-/* Constants for qemu_ld and qemu_st for the Memory Operation field. &nbsp;*/</div>
-<div>&#43;/*</div>
-<div>&#43; * Extend MemOp with constants for qemu_ld and qemu_st for the Memory</div>
-<div>&#43; * Operation field.</div>
-<div>&#43; */</div>
-<div>&nbsp;typedef enum TCGMemOp {</div>
-<div>- &nbsp; &nbsp;MO_8 &nbsp; &nbsp; = 0,</div>
-<div>- &nbsp; &nbsp;MO_16 &nbsp; &nbsp;= 1,</div>
-<div>- &nbsp; &nbsp;MO_32 &nbsp; &nbsp;= 2,</div>
-<div>- &nbsp; &nbsp;MO_64 &nbsp; &nbsp;= 3,</div>
-<div>- &nbsp; &nbsp;MO_SIZE &nbsp;= 3, &nbsp; /* Mask for the above. &nbsp;*/</div>
-<div>-</div>
-<div>- &nbsp; &nbsp;MO_SIGN &nbsp;= 4, &nbsp; /* Sign-extended, otherwise zero-extended. &nbsp;*/</div>
-<div>-</div>
-<div>- &nbsp; &nbsp;MO_BSWAP = 8, &nbsp; /* Host reverse endian. &nbsp;*/</div>
-<div>&nbsp;#ifdef HOST_WORDS_BIGENDIAN</div>
-<div>&nbsp; &nbsp; &nbsp;MO_LE &nbsp; &nbsp;= MO_BSWAP,</div>
-<div>&nbsp; &nbsp; &nbsp;MO_BE &nbsp; &nbsp;= 0,</div>
-<div>--&nbsp;</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 90c5ec1..fd568ae 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,34 +1,34 @@
  "ref\0e9c6e5310b1a4863be45d45bf087fc3d@tpw09926dag18e.domain1.systemhost.net\0"
  "From\0<tony.nguyen@bt.com>\0"
- "Subject\0[Qemu-riscv] [Qemu-devel] [PATCH v2 05/20] tcg: Move size+sign+endian from TCGMemOp to MemOp\0"
+ "Subject\0[Qemu-devel] [PATCH v2 05/20] tcg: Move size+sign+endian from TCGMemOp to MemOp\0"
  "Date\0Mon, 22 Jul 2019 15:43:43 +0000\0"
  "To\0<qemu-devel@nongnu.org>\0"
- "Cc\0<peter.maydell@linaro.org>"
-  <walling@linux.ibm.com>
-  <david@redhat.com>
-  <palmer@sifive.com>
-  <mark.cave-ayland@ilande.co.uk>
-  <Alistair.Francis@wdc.com>
-  <arikalo@wavecomp.com>
-  <mst@redhat.com>
-  <pasic@linux.ibm.com>
-  <borntraeger@de.ibm.com>
-  <rth@twiddle.net>
-  <atar4qemu@gmail.com>
-  <ehabkost@redhat.com>
-  <sw@weilnetz.de>
-  <alex.williamson@redhat.com>
-  <qemu-arm@nongnu.org>
-  <david@gibson.dropbear.id.au>
-  <qemu-riscv@nongnu.org>
-  <cohuck@redhat.com>
-  <claudio.fontana@huawei.com>
-  <qemu-s390x@nongnu.org>
-  <qemu-ppc@nongnu.org>
-  <amarkovic@wavecomp.com>
-  <pbonzini@redhat.com>
- " <aurelien@aurel32.net>\0"
- "\01:1\0"
+ "Cc\0peter.maydell@linaro.org"
+  walling@linux.ibm.com
+  mst@redhat.com
+  palmer@sifive.com
+  mark.cave-ayland@ilande.co.uk
+  Alistair.Francis@wdc.com
+  arikalo@wavecomp.com
+  david@redhat.com
+  pasic@linux.ibm.com
+  borntraeger@de.ibm.com
+  rth@twiddle.net
+  atar4qemu@gmail.com
+  ehabkost@redhat.com
+  sw@weilnetz.de
+  qemu-s390x@nongnu.org
+  qemu-arm@nongnu.org
+  david@gibson.dropbear.id.au
+  qemu-riscv@nongnu.org
+  cohuck@redhat.com
+  claudio.fontana@huawei.com
+  alex.williamson@redhat.com
+  qemu-ppc@nongnu.org
+  amarkovic@wavecomp.com
+  pbonzini@redhat.com
+ " aurelien@aurel32.net\0"
+ "\00:1\0"
  "b\0"
  "Preparation for modifying the memory API to take size+sign+endianness\n"
  "instead of just size.\n"
@@ -124,119 +124,5 @@
  "     MO_BE    = 0,\n"
  "--\n"
  1.8.3.1
- "\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;\">Preparation for modifying the memory API to take size&#43;sign&#43;endianness</span><br>\r\n"
- "</div>\r\n"
- "<div>instead of just size.</div>\r\n"
- "<div><br>\r\n"
- "</div>\r\n"
- "<div>Accelerator independent MemOp enum is extended by TCGMemOp enum.</div>\r\n"
- "<div><br>\r\n"
- "</div>\r\n"
- "<div>Signed-off-by: Tony Nguyen &lt;tony.nguyen@bt.com&gt;</div>\r\n"
- "<div>---</div>\r\n"
- "<div>&nbsp;MAINTAINERS &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;| &nbsp;1 &#43;</div>\r\n"
- "<div>&nbsp;include/exec/memop.h | 27 &#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;&#43;</div>\r\n"
- "<div>&nbsp;tcg/tcg.h &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;| 15 &#43;&#43;&#43;&#43;&#43;----------</div>\r\n"
- "<div>&nbsp;3 files changed, 33 insertions(&#43;), 10 deletions(-)</div>\r\n"
- "<div>&nbsp;create mode 100644 include/exec/memop.h</div>\r\n"
- "<div><br>\r\n"
- "</div>\r\n"
- "<div>diff --git a/MAINTAINERS b/MAINTAINERS</div>\r\n"
- "<div>index cc9636b..3f148cd 100644</div>\r\n"
- "<div>--- a/MAINTAINERS</div>\r\n"
- "<div>&#43;&#43;&#43; b/MAINTAINERS</div>\r\n"
- "<div>@@ -1890,6 &#43;1890,7 @@ M: Paolo Bonzini &lt;pbonzini@redhat.com&gt;</div>\r\n"
- "<div>&nbsp;S: Supported</div>\r\n"
- "<div>&nbsp;F: include/exec/ioport.h</div>\r\n"
- "<div>&nbsp;F: ioport.c</div>\r\n"
- "<div>&#43;F: include/exec/memop.h</div>\r\n"
- "<div>&nbsp;F: include/exec/memory.h</div>\r\n"
- "<div>&nbsp;F: include/exec/ram_addr.h</div>\r\n"
- "<div>&nbsp;F: memory.c</div>\r\n"
- "<div>diff --git a/include/exec/memop.h b/include/exec/memop.h</div>\r\n"
- "<div>new file mode 100644</div>\r\n"
- "<div>index 0000000..43e99d7</div>\r\n"
- "<div>--- /dev/null</div>\r\n"
- "<div>&#43;&#43;&#43; b/include/exec/memop.h</div>\r\n"
- "<div>@@ -0,0 &#43;1,27 @@</div>\r\n"
- "<div>&#43;/*</div>\r\n"
- "<div>&#43; * Constants for memory operations</div>\r\n"
- "<div>&#43; *</div>\r\n"
- "<div>&#43; * Authors:</div>\r\n"
- "<div>&#43; * &nbsp;Richard Henderson &lt;rth@twiddle.net&gt;</div>\r\n"
- "<div>&#43; *</div>\r\n"
- "<div>&#43; * This work is licensed under the terms of the GNU GPL, version 2 or later.</div>\r\n"
- "<div>&#43; * See the COPYING file in the top-level directory.</div>\r\n"
- "<div>&#43; *</div>\r\n"
- "<div>&#43; */</div>\r\n"
- "<div>&#43;</div>\r\n"
- "<div>&#43;#ifndef MEMOP_H</div>\r\n"
- "<div>&#43;#define MEMOP_H</div>\r\n"
- "<div>&#43;</div>\r\n"
- "<div>&#43;typedef enum MemOp {</div>\r\n"
- "<div>&#43; &nbsp; &nbsp;MO_8 &nbsp; &nbsp; = 0,</div>\r\n"
- "<div>&#43; &nbsp; &nbsp;MO_16 &nbsp; &nbsp;= 1,</div>\r\n"
- "<div>&#43; &nbsp; &nbsp;MO_32 &nbsp; &nbsp;= 2,</div>\r\n"
- "<div>&#43; &nbsp; &nbsp;MO_64 &nbsp; &nbsp;= 3,</div>\r\n"
- "<div>&#43; &nbsp; &nbsp;MO_SIZE &nbsp;= 3, &nbsp; /* Mask for the above. &nbsp;*/</div>\r\n"
- "<div>&#43;</div>\r\n"
- "<div>&#43; &nbsp; &nbsp;MO_SIGN &nbsp;= 4, &nbsp; /* Sign-extended, otherwise zero-extended. &nbsp;*/</div>\r\n"
- "<div>&#43;</div>\r\n"
- "<div>&#43; &nbsp; &nbsp;MO_BSWAP = 8, &nbsp; /* Host reverse endian. &nbsp;*/</div>\r\n"
- "<div>&#43;} MemOp;</div>\r\n"
- "<div>&#43;</div>\r\n"
- "<div>&#43;#endif</div>\r\n"
- "<div>diff --git a/tcg/tcg.h b/tcg/tcg.h</div>\r\n"
- "<div>index 63e9897..18b91fe 100644</div>\r\n"
- "<div>--- a/tcg/tcg.h</div>\r\n"
- "<div>&#43;&#43;&#43; b/tcg/tcg.h</div>\r\n"
- "<div>@@ -26,6 &#43;26,7 @@</div>\r\n"
- "<div>&nbsp;#define TCG_H</div>\r\n"
- "<div>&nbsp;</div>\r\n"
- "<div>&nbsp;#include &quot;cpu.h&quot;</div>\r\n"
- "<div>&#43;#include &quot;exec/memop.h&quot;</div>\r\n"
- "<div>&nbsp;#include &quot;exec/tb-context.h&quot;</div>\r\n"
- "<div>&nbsp;#include &quot;qemu/bitops.h&quot;</div>\r\n"
- "<div>&nbsp;#include &quot;qemu/queue.h&quot;</div>\r\n"
- "<div>@@ -309,17 &#43;310,11 @@ typedef enum TCGType {</div>\r\n"
- "<div>&nbsp;#endif</div>\r\n"
- "<div>&nbsp;} TCGType;</div>\r\n"
- "<div>&nbsp;</div>\r\n"
- "<div>-/* Constants for qemu_ld and qemu_st for the Memory Operation field. &nbsp;*/</div>\r\n"
- "<div>&#43;/*</div>\r\n"
- "<div>&#43; * Extend MemOp with constants for qemu_ld and qemu_st for the Memory</div>\r\n"
- "<div>&#43; * Operation field.</div>\r\n"
- "<div>&#43; */</div>\r\n"
- "<div>&nbsp;typedef enum TCGMemOp {</div>\r\n"
- "<div>- &nbsp; &nbsp;MO_8 &nbsp; &nbsp; = 0,</div>\r\n"
- "<div>- &nbsp; &nbsp;MO_16 &nbsp; &nbsp;= 1,</div>\r\n"
- "<div>- &nbsp; &nbsp;MO_32 &nbsp; &nbsp;= 2,</div>\r\n"
- "<div>- &nbsp; &nbsp;MO_64 &nbsp; &nbsp;= 3,</div>\r\n"
- "<div>- &nbsp; &nbsp;MO_SIZE &nbsp;= 3, &nbsp; /* Mask for the above. &nbsp;*/</div>\r\n"
- "<div>-</div>\r\n"
- "<div>- &nbsp; &nbsp;MO_SIGN &nbsp;= 4, &nbsp; /* Sign-extended, otherwise zero-extended. &nbsp;*/</div>\r\n"
- "<div>-</div>\r\n"
- "<div>- &nbsp; &nbsp;MO_BSWAP = 8, &nbsp; /* Host reverse endian. &nbsp;*/</div>\r\n"
- "<div>&nbsp;#ifdef HOST_WORDS_BIGENDIAN</div>\r\n"
- "<div>&nbsp; &nbsp; &nbsp;MO_LE &nbsp; &nbsp;= MO_BSWAP,</div>\r\n"
- "<div>&nbsp; &nbsp; &nbsp;MO_BE &nbsp; &nbsp;= 0,</div>\r\n"
- "<div>--&nbsp;</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"
 
-57b6567c4c8af9dbee860a9cab400e3709b05c70b51e74ab3005db13f7632553
+067b01e119b7cce41a675f2a9372aea758fb9b4ebcf09b99b81c3cff0d5af56f

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.