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

diff --git a/a/content_digest b/N1/content_digest
index 9a3681c..d78616e 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,33 +1,33 @@
  "ref\0e9c6e5310b1a4863be45d45bf087fc3d@tpw09926dag18e.domain1.systemhost.net\0"
  "From\0<tony.nguyen@bt.com>\0"
- "Subject\0[Qemu-riscv] [Qemu-devel] [PATCH v2 15/20] memory: Access MemoryRegion with MemOp semantics\0"
+ "Subject\0[Qemu-arm] [Qemu-devel] [PATCH v2 15/20] memory: Access MemoryRegion with MemOp semantics\0"
  "Date\0Mon, 22 Jul 2019 15:50:41 +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"
+ "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"
  "\01:1\0"
  "b\0"
  "To convert interfaces of MemoryRegion access, MEMOP_SIZE and\n"
@@ -108,4 +108,4 @@
  "</body>\r\n"
  "</html>\r\n"
 
-437f702e7350c86a35c2376e4b8a4b10aff433aa45b4d059ab6b2ebecaa09ebb
+f6bee25b86059412e23a6122d45854b40d813e7a7cd604cd8ea1bd59a063052e

diff --git a/a/2.bin b/a/2.bin
deleted file mode 100644
index 5089bb2..0000000
--- a/a/2.bin
+++ /dev/null
@@ -1,46 +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></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 73f1bf7..dff6da2 100644</div>
-<div>--- a/include/exec/memop.h</div>
-<div>&#43;&#43;&#43; b/include/exec/memop.h</div>
-<div>@@ -24,8 &#43;24,7 @@ typedef enum MemOp {</div>
-<div>&nbsp; &nbsp; &nbsp;MO_BSWAP = 8, &nbsp; /* Host reverse endian. &nbsp;*/</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 9a3681c..b8accec 100644
--- a/a/content_digest
+++ b/N2/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 15/20] memory: Access MemoryRegion with MemOp semantics\0"
+ "Subject\0[Qemu-devel] [PATCH v2 15/20] memory: Access MemoryRegion with MemOp semantics\0"
  "Date\0Mon, 22 Jul 2019 15:50:41 +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"
  "To convert interfaces of MemoryRegion access, MEMOP_SIZE and\n"
  "SIZE_MEMOP no-op stubs were introduced to change syntax while keeping\n"
@@ -59,53 +59,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></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 73f1bf7..dff6da2 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>@@ -24,8 &#43;24,7 @@ typedef enum MemOp {</div>\r\n"
- "<div>&nbsp; &nbsp; &nbsp;MO_BSWAP = 8, &nbsp; /* Host reverse endian. &nbsp;*/</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"
 
-437f702e7350c86a35c2376e4b8a4b10aff433aa45b4d059ab6b2ebecaa09ebb
+005ec3520d951d6b73f26da271ddb894fea1047f32c5f06aea6a5d2f1dd9e492

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.