All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <20170309120314.GK3307@yuval-lap>

diff --git a/a/1.txt b/N1/1.txt
index c2fe4be..9bf5980 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -1,12 +1,12 @@
 On Wed, Mar 08, 2017 at 02:20:42PM +0100, SF Markus Elfring wrote:
-> From: Markus Elfring <elfring@users.sourceforge.net>
+> From: Markus Elfring <elfring-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
 > Date: Wed, 8 Mar 2017 09:54:42 +0100
 > 
 > Replace the specification of a data type by a pointer dereference
 > as the parameter for the operator "sizeof" to make the corresponding size
 > determination a bit safer according to the Linux coding style convention.
 > 
-> Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
+> Signed-off-by: Markus Elfring <elfring-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
 > ---
 >  drivers/infiniband/hw/ocrdma/ocrdma_verbs.c | 2 +-
 >  1 file changed, 1 insertion(+), 1 deletion(-)
@@ -22,7 +22,7 @@ On Wed, Mar 08, 2017 at 02:20:42PM +0100, SF Markus Elfring wrote:
 > -	mr->pages = kcalloc(max_num_sg, sizeof(u64), GFP_KERNEL);
 > +	mr->pages = kcalloc(max_num_sg, sizeof(*mr->pages), GFP_KERNEL);
 
-Reviewed-by: Yuval Shaia <yuval.shaia@oracle.com>
+Reviewed-by: Yuval Shaia <yuval.shaia-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
 
 >  	if (!mr->pages) {
 >  		status = -ENOMEM;
@@ -32,5 +32,9 @@ Reviewed-by: Yuval Shaia <yuval.shaia@oracle.com>
 > 
 > --
 > To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
-> the body of a message to majordomo@vger.kernel.org
+> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
 > More majordomo info at  http://vger.kernel.org/majordomo-info.html
+--
+To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
+the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
+More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff --git a/a/content_digest b/N1/content_digest
index a65c4c9..0a1cb6a 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,9 +1,9 @@
  "ref\0fc421509-4069-da8a-b308-60b49ea91ada@users.sourceforge.net\0"
  "ref\0efefdc96-2db5-dd80-3cc4-e88537fe2d49@users.sourceforge.net\0"
  "ref\0efefdc96-2db5-dd80-3cc4-e88537fe2d49-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org\0"
- "From\0Yuval Shaia <yuval.shaia@oracle.com>\0"
+ "From\0Yuval Shaia <yuval.shaia-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>\0"
  "Subject\0Re: [PATCH 19/26] IB/ocrdma: Improve another size determination in ocrdma_alloc_mr()\0"
- "Date\0Thu, 09 Mar 2017 12:03:15 +0000\0"
+ "Date\0Thu, 9 Mar 2017 14:03:15 +0200\0"
  "To\0SF Markus Elfring <elfring-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>\0"
  "Cc\0linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
   Devesh Sharma <devesh.sharma-1wcpHE2jlwO1Z/+hSey0Gg@public.gmane.org>
@@ -16,14 +16,14 @@
  "\00:1\0"
  "b\0"
  "On Wed, Mar 08, 2017 at 02:20:42PM +0100, SF Markus Elfring wrote:\n"
- "> From: Markus Elfring <elfring@users.sourceforge.net>\n"
+ "> From: Markus Elfring <elfring-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>\n"
  "> Date: Wed, 8 Mar 2017 09:54:42 +0100\n"
  "> \n"
  "> Replace the specification of a data type by a pointer dereference\n"
  "> as the parameter for the operator \"sizeof\" to make the corresponding size\n"
  "> determination a bit safer according to the Linux coding style convention.\n"
  "> \n"
- "> Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>\n"
+ "> Signed-off-by: Markus Elfring <elfring-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>\n"
  "> ---\n"
  ">  drivers/infiniband/hw/ocrdma/ocrdma_verbs.c | 2 +-\n"
  ">  1 file changed, 1 insertion(+), 1 deletion(-)\n"
@@ -39,7 +39,7 @@
  "> -\tmr->pages = kcalloc(max_num_sg, sizeof(u64), GFP_KERNEL);\n"
  "> +\tmr->pages = kcalloc(max_num_sg, sizeof(*mr->pages), GFP_KERNEL);\n"
  "\n"
- "Reviewed-by: Yuval Shaia <yuval.shaia@oracle.com>\n"
+ "Reviewed-by: Yuval Shaia <yuval.shaia-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>\n"
  "\n"
  ">  \tif (!mr->pages) {\n"
  ">  \t\tstatus = -ENOMEM;\n"
@@ -49,7 +49,11 @@
  "> \n"
  "> --\n"
  "> To unsubscribe from this list: send the line \"unsubscribe linux-rdma\" in\n"
- "> the body of a message to majordomo@vger.kernel.org\n"
- > More majordomo info at  http://vger.kernel.org/majordomo-info.html
+ "> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org\n"
+ "> More majordomo info at  http://vger.kernel.org/majordomo-info.html\n"
+ "--\n"
+ "To unsubscribe from this list: send the line \"unsubscribe linux-rdma\" in\n"
+ "the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org\n"
+ More majordomo info at  http://vger.kernel.org/majordomo-info.html
 
-6a8f8a2e97d2ba8b4ef2826a94881244f5f317cb3cbe9e886f27f3b701195683
+0976241d513d54ef3611414d52923ceffc0f99e9a89844fe87d1f9b3f4d89c84

diff --git a/a/content_digest b/N2/content_digest
index a65c4c9..7fe956e 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -1,18 +1,17 @@
  "ref\0fc421509-4069-da8a-b308-60b49ea91ada@users.sourceforge.net\0"
  "ref\0efefdc96-2db5-dd80-3cc4-e88537fe2d49@users.sourceforge.net\0"
- "ref\0efefdc96-2db5-dd80-3cc4-e88537fe2d49-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org\0"
  "From\0Yuval Shaia <yuval.shaia@oracle.com>\0"
  "Subject\0Re: [PATCH 19/26] IB/ocrdma: Improve another size determination in ocrdma_alloc_mr()\0"
- "Date\0Thu, 09 Mar 2017 12:03:15 +0000\0"
- "To\0SF Markus Elfring <elfring-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>\0"
- "Cc\0linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
-  Devesh Sharma <devesh.sharma-1wcpHE2jlwO1Z/+hSey0Gg@public.gmane.org>
-  Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
-  Hal Rosenstock <hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
-  Sean Hefty <sean.hefty-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
-  Selvin Xavier <selvin.xavier-1wcpHE2jlwO1Z/+hSey0Gg@public.gmane.org>
-  LKML <linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
- " kernel-janitors-u79uwXL29TY76Z2rM5mHXA@public.gmane.org\0"
+ "Date\0Thu, 9 Mar 2017 14:03:15 +0200\0"
+ "To\0SF Markus Elfring <elfring@users.sourceforge.net>\0"
+ "Cc\0linux-rdma@vger.kernel.org"
+  Devesh Sharma <devesh.sharma@avagotech.com>
+  Doug Ledford <dledford@redhat.com>
+  Hal Rosenstock <hal.rosenstock@gmail.com>
+  Sean Hefty <sean.hefty@intel.com>
+  Selvin Xavier <selvin.xavier@avagotech.com>
+  LKML <linux-kernel@vger.kernel.org>
+ " kernel-janitors@vger.kernel.org\0"
  "\00:1\0"
  "b\0"
  "On Wed, Mar 08, 2017 at 02:20:42PM +0100, SF Markus Elfring wrote:\n"
@@ -52,4 +51,4 @@
  "> the body of a message to majordomo@vger.kernel.org\n"
  > More majordomo info at  http://vger.kernel.org/majordomo-info.html
 
-6a8f8a2e97d2ba8b4ef2826a94881244f5f317cb3cbe9e886f27f3b701195683
+bb5c4f66c127388d1ef308b7d8b118696e2ce9c556fc5ca5db742f1af2f9058f

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.