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

diff --git a/a/content_digest b/N1/content_digest
index 65a5855..46c7bfd 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -2,33 +2,33 @@
  "ref\01563810716254.18886@bt.com\0"
  "ref\01564038073754.91133@bt.com\0"
  "From\0<tony.nguyen@bt.com>\0"
- "Subject\0[Qemu-riscv] [Qemu-devel] [PATCH v3 10/15] memory: Access MemoryRegion with MemOp semantics\0"
+ "Subject\0[Qemu-arm] [Qemu-devel] [PATCH v3 10/15] memory: Access MemoryRegion with MemOp semantics\0"
  "Date\0Thu, 25 Jul 2019 07:09:46 +0000\0"
  "To\0<qemu-devel@nongnu.org>\0"
- "Cc\0<peter.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>
-  <alex.williamson@redhat.com>
-  <qemu-ppc@nongnu.org>
-  <amarkovic@wavecomp.com>
-  <pbonzini@redhat.com>
- " <aurelien@aurel32.net>\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
+  alex.williamson@redhat.com
+  qemu-arm@nongnu.org
+  david@gibson.dropbear.id.au
+  qemu-riscv@nongnu.org
+  cohuck@redhat.com
+  qemu-s390x@nongnu.org
+  qemu-ppc@nongnu.org
+  amarkovic@wavecomp.com
+  pbonzini@redhat.com
+ " aurelien@aurel32.net\0"
  "\01:1\0"
  "b\0"
  "To convert interfaces of MemoryRegion access, MEMOP_SIZE and\n"
@@ -110,4 +110,4 @@
  "</body>\r\n"
  "</html>\r\n"
 
-1a4de77fdc9a74e90e132a949e00af3a90b4a9410baa4a9a4825a3ad6a9a8652
+65c77270736cb521e5bb6e734f40f3b84f2d97548beb09d790d3c58f65cf89e4

diff --git a/a/2.bin b/a/2.bin
deleted file mode 100644
index c4e7c54..0000000
--- a/a/2.bin
+++ /dev/null
@@ -1,47 +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;">To convert interfaces of MemoryRegion access, MEMOP_SIZE and</span><br>
-</div>
-<div>SIZE_MEMOP no-op stubs were introduced to change syntax while keeping</div>
-<div>the existing semantics.</div>
-<div><br>
-</div>
-<div>Now with interfaces converted, we fill the stubs and use MemOp</div>
-<div>semantics.</div>
-<div><br>
-</div>
-<div>Signed-off-by: Tony Nguyen &lt;tony.nguyen@bt.com&gt;</div>
-<div>---</div>
-<div>&nbsp;include/exec/memop.h | 5 &#43;&#43;---</div>
-<div>&nbsp;1 file changed, 2 insertions(&#43;), 3 deletions(-)</div>
-<div><br>
-</div>
-<div>diff --git a/include/exec/memop.h b/include/exec/memop.h</div>
-<div>index 09c8d20..f2847e8 100644</div>
-<div>--- a/include/exec/memop.h</div>
-<div>&#43;&#43;&#43; b/include/exec/memop.h</div>
-<div>@@ -106,8 &#43;106,7 @@ typedef enum MemOp {</div>
-<div>&nbsp; &nbsp; &nbsp;MO_SSIZE = MO_SIZE | MO_SIGN,</div>
-<div>&nbsp;} MemOp;</div>
-<div>&nbsp;</div>
-<div>-/* No-op while memory_region_dispatch_[read|write] is converted to MemOp */</div>
-<div>-#define MEMOP_SIZE(op) &nbsp;(op) &nbsp; &nbsp;/* MemOp to size. &nbsp;*/</div>
-<div>-#define SIZE_MEMOP(ul) &nbsp;(ul) &nbsp; &nbsp;/* Size to MemOp. &nbsp;*/</div>
-<div>&#43;#define MEMOP_SIZE(op) &nbsp;(1 &lt;&lt; ((op) &amp; MO_SIZE)) /* MemOp to size. &nbsp;*/</div>
-<div>&#43;#define SIZE_MEMOP(ul) &nbsp;(ctzl(ul)) &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;/* Size to MemOp. &nbsp;*/</div>
-<div>&nbsp;</div>
-<div>&nbsp;#endif</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/N2/content_digest
index 65a5855..26d52fa 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -2,34 +2,34 @@
  "ref\01563810716254.18886@bt.com\0"
  "ref\01564038073754.91133@bt.com\0"
  "From\0<tony.nguyen@bt.com>\0"
- "Subject\0[Qemu-riscv] [Qemu-devel] [PATCH v3 10/15] memory: Access MemoryRegion with MemOp semantics\0"
+ "Subject\0[Qemu-devel] [PATCH v3 10/15] memory: Access MemoryRegion with MemOp semantics\0"
  "Date\0Thu, 25 Jul 2019 07:09:46 +0000\0"
  "To\0<qemu-devel@nongnu.org>\0"
- "Cc\0<peter.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>
-  <alex.williamson@redhat.com>
-  <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
+  alex.williamson@redhat.com
+  qemu-arm@nongnu.org
+  david@gibson.dropbear.id.au
+  qemu-riscv@nongnu.org
+  cohuck@redhat.com
+  qemu-s390x@nongnu.org
+  qemu-ppc@nongnu.org
+  amarkovic@wavecomp.com
+  pbonzini@redhat.com
+ " aurelien@aurel32.net\0"
+ "\00:1\0"
  "b\0"
  "To convert interfaces of MemoryRegion access, MEMOP_SIZE and\n"
  "SIZE_MEMOP no-op stubs were introduced to change syntax while keeping\n"
@@ -60,54 +60,5 @@
  " #endif\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;\">To convert interfaces of MemoryRegion access, MEMOP_SIZE and</span><br>\r\n"
- "</div>\r\n"
- "<div>SIZE_MEMOP no-op stubs were introduced to change syntax while keeping</div>\r\n"
- "<div>the existing semantics.</div>\r\n"
- "<div><br>\r\n"
- "</div>\r\n"
- "<div>Now with interfaces converted, we fill the stubs and use MemOp</div>\r\n"
- "<div>semantics.</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;include/exec/memop.h | 5 &#43;&#43;---</div>\r\n"
- "<div>&nbsp;1 file changed, 2 insertions(&#43;), 3 deletions(-)</div>\r\n"
- "<div><br>\r\n"
- "</div>\r\n"
- "<div>diff --git a/include/exec/memop.h b/include/exec/memop.h</div>\r\n"
- "<div>index 09c8d20..f2847e8 100644</div>\r\n"
- "<div>--- a/include/exec/memop.h</div>\r\n"
- "<div>&#43;&#43;&#43; b/include/exec/memop.h</div>\r\n"
- "<div>@@ -106,8 &#43;106,7 @@ typedef enum MemOp {</div>\r\n"
- "<div>&nbsp; &nbsp; &nbsp;MO_SSIZE = MO_SIZE | MO_SIGN,</div>\r\n"
- "<div>&nbsp;} MemOp;</div>\r\n"
- "<div>&nbsp;</div>\r\n"
- "<div>-/* No-op while memory_region_dispatch_[read|write] is converted to MemOp */</div>\r\n"
- "<div>-#define MEMOP_SIZE(op) &nbsp;(op) &nbsp; &nbsp;/* MemOp to size. &nbsp;*/</div>\r\n"
- "<div>-#define SIZE_MEMOP(ul) &nbsp;(ul) &nbsp; &nbsp;/* Size to MemOp. &nbsp;*/</div>\r\n"
- "<div>&#43;#define MEMOP_SIZE(op) &nbsp;(1 &lt;&lt; ((op) &amp; MO_SIZE)) /* MemOp to size. &nbsp;*/</div>\r\n"
- "<div>&#43;#define SIZE_MEMOP(ul) &nbsp;(ctzl(ul)) &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;/* Size to MemOp. &nbsp;*/</div>\r\n"
- "<div>&nbsp;</div>\r\n"
- "<div>&nbsp;#endif</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"
 
-1a4de77fdc9a74e90e132a949e00af3a90b4a9410baa4a9a4825a3ad6a9a8652
+9539adf0d4090bdae6115e66ec4a0a1bdc3952040766afdaa644bf83e69a86ce

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.