All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] SRP initiator fixes for kernel v4.7
@ 2016-06-03 18:38 Bart Van Assche
       [not found] ` <4b4cc34a-eebb-8534-3d76-1cfb3fe961f5-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
  0 siblings, 1 reply; 11+ messages in thread
From: Bart Van Assche @ 2016-06-03 18:38 UTC (permalink / raw
  To: Doug Ledford
  Cc: Christoph Hellwig, Sagi Grimberg, Laurence Oberman,
	Marciniszyn, Mike,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org

Hello Doug,

It would be appreciated if you could apply the two patches in this 
series at your earliest convenience. These patches are what I came up 
with while testing the SRP initiator in kernel v4.7-rc1. The names of 
these patches are as follows:

0001-IB-srp-Always-initialize-use_fast_reg-and-use_fmr.patch
0002-IB-srp-Fix-srp_map_sg_dma.patch

Thanks,

Bart.
--
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

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH 1/2] IB/srp: Always initialize use_fast_reg and use_fmr
       [not found] ` <4b4cc34a-eebb-8534-3d76-1cfb3fe961f5-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
@ 2016-06-03 18:39   ` Bart Van Assche
       [not found]     ` <4b1522b5-31a2-9c7e-6b20-4e859c009345-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
  2016-06-03 18:40   ` [PATCH 2/2] IB/srp: Fix srp_map_sg_dma() Bart Van Assche
                     ` (2 subsequent siblings)
  3 siblings, 1 reply; 11+ messages in thread
From: Bart Van Assche @ 2016-06-03 18:39 UTC (permalink / raw
  To: Doug Ledford
  Cc: Christoph Hellwig, Sagi Grimberg, Laurence Oberman,
	Marciniszyn, Mike,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org

Avoid that mapping fails due to use_fast_reg != 0 or use_fmr != 0
if both member variables should be zero (if never_register == 1 or
if neither FMR nor FR is supported). Remove an initialization that
became superfluous due to changing a kmalloc() into a kzalloc()
call.

Fixes: 509c5f33f4f6 ("IB/srp: Prevent mapping failures")
Cc: Sagi Grimberg <sai@grimberg.m>
Cc: Christoph Hellwig <hch-jcswGhMUV9g@public.gmane.org>
Cc: Laurence Oberman <loberman-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
Signed-off-by: Bart Van Assche <bart.vanassche-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
---
 drivers/infiniband/ulp/srp/ib_srp.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/infiniband/ulp/srp/ib_srp.c b/drivers/infiniband/ulp/srp/ib_srp.c
index 646de17..bc24b8d 100644
--- a/drivers/infiniband/ulp/srp/ib_srp.c
+++ b/drivers/infiniband/ulp/srp/ib_srp.c
@@ -3526,7 +3526,7 @@ static void srp_add_one(struct ib_device *device)
 	int mr_page_shift, p;
 	u64 max_pages_per_mr;
 
-	srp_dev = kmalloc(sizeof *srp_dev, GFP_KERNEL);
+	srp_dev = kzalloc(sizeof(*srp_dev), GFP_KERNEL);
 	if (!srp_dev)
 		return;
 
@@ -3586,8 +3586,6 @@ static void srp_add_one(struct ib_device *device)
 						   IB_ACCESS_REMOTE_WRITE);
 		if (IS_ERR(srp_dev->global_mr))
 			goto err_pd;
-	} else {
-		srp_dev->global_mr = NULL;
 	}
 
 	for (p = rdma_start_port(device); p <= rdma_end_port(device); ++p) {
-- 
2.8.3

--
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

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 2/2] IB/srp: Fix srp_map_sg_dma()
       [not found] ` <4b4cc34a-eebb-8534-3d76-1cfb3fe961f5-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
  2016-06-03 18:39   ` [PATCH 1/2] IB/srp: Always initialize use_fast_reg and use_fmr Bart Van Assche
@ 2016-06-03 18:40   ` Bart Van Assche
       [not found]     ` <25293485-8307-5361-c6fc-6bcadd832249-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
  2016-06-03 18:58   ` [PATCH 0/2] SRP initiator fixes for kernel v4.7 Laurence Oberman
  2016-06-06 23:33   ` Doug Ledford
  3 siblings, 1 reply; 11+ messages in thread
From: Bart Van Assche @ 2016-06-03 18:40 UTC (permalink / raw
  To: Doug Ledford
  Cc: Christoph Hellwig, Sagi Grimberg, Laurence Oberman,
	Marciniszyn, Mike,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org

Because patch "IB/srp: Move common code into the caller" was applied
partially srp_map_sg_dma() doesn't work properly. Fix this by
applying the remainder of that patch. See also
http://thread.gmane.org/gmane.linux.drivers.rdma/35803/focus=35811.

Fixes: 3849e44d1c4b ("IB/srp: Move common code into the caller")
Signed-off-by: Bart Van Assche <bart.vanassche-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
Cc: Mike Marciniszyn <mike.marciniszyn-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Cc: Sagi Grimberg <sai-NQWnxTmZq1alnMjI0IkVqw@public.gmane.org>
Cc: Christoph Hellwig <hch-jcswGhMUV9g@public.gmane.org>
Cc: Laurence Oberman <loberman-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
---
 drivers/infiniband/ulp/srp/ib_srp.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/infiniband/ulp/srp/ib_srp.c b/drivers/infiniband/ulp/srp/ib_srp.c
index bc24b8d..3322ed7 100644
--- a/drivers/infiniband/ulp/srp/ib_srp.c
+++ b/drivers/infiniband/ulp/srp/ib_srp.c
@@ -1457,7 +1457,6 @@ static int srp_map_sg_fr(struct srp_map_state *state, struct srp_rdma_ch *ch,
 {
 	unsigned int sg_offset = 0;
 
-	state->desc = req->indirect_desc;
 	state->fr.next = req->fr_list;
 	state->fr.end = req->fr_list + ch->target->mr_per_cmd;
 	state->sg = scat;
@@ -1489,7 +1488,6 @@ static int srp_map_sg_dma(struct srp_map_state *state, struct srp_rdma_ch *ch,
 	struct scatterlist *sg;
 	int i;
 
-	state->desc = req->indirect_desc;
 	for_each_sg(scat, sg, count, i) {
 		srp_map_desc(state, ib_sg_dma_address(dev->dev, sg),
 			     ib_sg_dma_len(dev->dev, sg),
@@ -1655,6 +1653,7 @@ static int srp_map_data(struct scsi_cmnd *scmnd, struct srp_rdma_ch *ch,
 				   target->indirect_size, DMA_TO_DEVICE);
 
 	memset(&state, 0, sizeof(state));
+	state.desc = req->indirect_desc;
 	if (dev->use_fast_reg)
 		ret = srp_map_sg_fr(&state, ch, req, scat, count);
 	else if (dev->use_fmr)
-- 
2.8.3

--
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

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH 0/2] SRP initiator fixes for kernel v4.7
       [not found] ` <4b4cc34a-eebb-8534-3d76-1cfb3fe961f5-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
  2016-06-03 18:39   ` [PATCH 1/2] IB/srp: Always initialize use_fast_reg and use_fmr Bart Van Assche
  2016-06-03 18:40   ` [PATCH 2/2] IB/srp: Fix srp_map_sg_dma() Bart Van Assche
@ 2016-06-03 18:58   ` Laurence Oberman
       [not found]     ` <178183518.40193929.1464980291652.JavaMail.zimbra-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
  2016-06-06 23:33   ` Doug Ledford
  3 siblings, 1 reply; 11+ messages in thread
From: Laurence Oberman @ 2016-06-03 18:58 UTC (permalink / raw
  To: Bart Van Assche
  Cc: Doug Ledford, Christoph Hellwig, Sagi Grimberg, Mike Marciniszyn,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA



----- Original Message -----
> From: "Bart Van Assche" <bart.vanassche-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
> To: "Doug Ledford" <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
> Cc: "Christoph Hellwig" <hch-jcswGhMUV9g@public.gmane.org>, "Sagi Grimberg" <sagi-NQWnxTmZq1alnMjI0IkVqw@public.gmane.org>, "Laurence Oberman" <loberman-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>,
> "Mike Marciniszyn" <mike.marciniszyn-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>, linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> Sent: Friday, June 3, 2016 2:38:57 PM
> Subject: [PATCH 0/2] SRP initiator fixes for kernel v4.7
> 
> Hello Doug,
> 
> It would be appreciated if you could apply the two patches in this
> series at your earliest convenience. These patches are what I came up
> with while testing the SRP initiator in kernel v4.7-rc1. The names of
> these patches are as follows:
> 
> 0001-IB-srp-Always-initialize-use_fast_reg-and-use_fmr.patch
> 0002-IB-srp-Fix-srp_map_sg_dma.patch
> 
> Thanks,
> 
> Bart.
> 

I will pull and test this weekend.

Thanks!!
Laurence
--
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

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 0/2] SRP initiator fixes for kernel v4.7
       [not found]     ` <178183518.40193929.1464980291652.JavaMail.zimbra-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2016-06-03 23:43       ` Laurence Oberman
  0 siblings, 0 replies; 11+ messages in thread
From: Laurence Oberman @ 2016-06-03 23:43 UTC (permalink / raw
  To: Bart Van Assche
  Cc: Doug Ledford, Christoph Hellwig, Sagi Grimberg, Mike Marciniszyn,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA



----- Original Message -----
> From: "Laurence Oberman" <loberman-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
> To: "Bart Van Assche" <bart.vanassche-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
> Cc: "Doug Ledford" <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>, "Christoph Hellwig" <hch-jcswGhMUV9g@public.gmane.org>, "Sagi Grimberg" <sagi-NQWnxTmZq1alnMjI0IkVqw@public.gmane.org>, "Mike
> Marciniszyn" <mike.marciniszyn-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>, linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> Sent: Friday, June 3, 2016 2:58:11 PM
> Subject: Re: [PATCH 0/2] SRP initiator fixes for kernel v4.7
> 
> 
> 
> ----- Original Message -----
> > From: "Bart Van Assche" <bart.vanassche-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
> > To: "Doug Ledford" <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
> > Cc: "Christoph Hellwig" <hch-jcswGhMUV9g@public.gmane.org>, "Sagi Grimberg" <sagi-NQWnxTmZq1alnMjI0IkVqw@public.gmane.org>,
> > "Laurence Oberman" <loberman-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>,
> > "Mike Marciniszyn" <mike.marciniszyn-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>, linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> > Sent: Friday, June 3, 2016 2:38:57 PM
> > Subject: [PATCH 0/2] SRP initiator fixes for kernel v4.7
> > 
> > Hello Doug,
> > 
> > It would be appreciated if you could apply the two patches in this
> > series at your earliest convenience. These patches are what I came up
> > with while testing the SRP initiator in kernel v4.7-rc1. The names of
> > these patches are as follows:
> > 
> > 0001-IB-srp-Always-initialize-use_fast_reg-and-use_fmr.patch
> > 0002-IB-srp-Fix-srp_map_sg_dma.patch
> > 
> > Thanks,
> > 
> > Bart.
> > 
> 
> I will pull and test this weekend.
> 
> Thanks!!
> Laurence
> --
> 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
> 
Replying to my own email.

I pulled these, applied to 4.7.0-rc1 and ran stress testing on EDR 100 using Connectx-4/mlx5.
Looks solid to me.

Tested-by Laurence Oberman <loberman-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
--
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

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/2] IB/srp: Always initialize use_fast_reg and use_fmr
       [not found]     ` <4b1522b5-31a2-9c7e-6b20-4e859c009345-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
@ 2016-06-06  7:17       ` Leon Romanovsky
  2016-06-06 11:08       ` Sagi Grimberg
  2016-06-06 17:33       ` Christoph Hellwig
  2 siblings, 0 replies; 11+ messages in thread
From: Leon Romanovsky @ 2016-06-06  7:17 UTC (permalink / raw
  To: Bart Van Assche
  Cc: Doug Ledford, Christoph Hellwig, Sagi Grimberg, Laurence Oberman,
	Marciniszyn, Mike,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org

[-- Attachment #1: Type: text/plain, Size: 760 bytes --]

On Fri, Jun 03, 2016 at 11:39:35AM -0700, Bart Van Assche wrote:
> Avoid that mapping fails due to use_fast_reg != 0 or use_fmr != 0
> if both member variables should be zero (if never_register == 1 or
> if neither FMR nor FR is supported). Remove an initialization that
> became superfluous due to changing a kmalloc() into a kzalloc()
> call.
> 
> Fixes: 509c5f33f4f6 ("IB/srp: Prevent mapping failures")
> Cc: Sagi Grimberg <sai@grimberg.m>
> Cc: Christoph Hellwig <hch-jcswGhMUV9g@public.gmane.org>
> Cc: Laurence Oberman <loberman-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
> Signed-off-by: Bart Van Assche <bart.vanassche-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>

Reviewed-by: Leon Romanovsky <leonro-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/2] IB/srp: Always initialize use_fast_reg and use_fmr
       [not found]     ` <4b1522b5-31a2-9c7e-6b20-4e859c009345-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
  2016-06-06  7:17       ` Leon Romanovsky
@ 2016-06-06 11:08       ` Sagi Grimberg
  2016-06-06 17:33       ` Christoph Hellwig
  2 siblings, 0 replies; 11+ messages in thread
From: Sagi Grimberg @ 2016-06-06 11:08 UTC (permalink / raw
  To: Bart Van Assche, Doug Ledford
  Cc: Christoph Hellwig, Laurence Oberman, Marciniszyn, Mike,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org

Looks fine,

Reviewed-by: Sagi Grimberg <sagi-NQWnxTmZq1alnMjI0IkVqw@public.gmane.org>
--
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

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 2/2] IB/srp: Fix srp_map_sg_dma()
       [not found]     ` <25293485-8307-5361-c6fc-6bcadd832249-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
@ 2016-06-06 11:09       ` Sagi Grimberg
  2016-06-06 17:33       ` Christoph Hellwig
  1 sibling, 0 replies; 11+ messages in thread
From: Sagi Grimberg @ 2016-06-06 11:09 UTC (permalink / raw
  To: Bart Van Assche, Doug Ledford
  Cc: Christoph Hellwig, Laurence Oberman, Marciniszyn, Mike,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org

Looks fine,

Reviewed-by: Sagi Grimberg <sagi-NQWnxTmZq1alnMjI0IkVqw@public.gmane.org>
--
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

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/2] IB/srp: Always initialize use_fast_reg and use_fmr
       [not found]     ` <4b1522b5-31a2-9c7e-6b20-4e859c009345-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
  2016-06-06  7:17       ` Leon Romanovsky
  2016-06-06 11:08       ` Sagi Grimberg
@ 2016-06-06 17:33       ` Christoph Hellwig
  2 siblings, 0 replies; 11+ messages in thread
From: Christoph Hellwig @ 2016-06-06 17:33 UTC (permalink / raw
  To: Bart Van Assche
  Cc: Doug Ledford, Christoph Hellwig, Sagi Grimberg, Laurence Oberman,
	Marciniszyn, Mike,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org

Looks fine,

Reviewed-by: Christoph Hellwig <hch-jcswGhMUV9g@public.gmane.org>
--
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

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 2/2] IB/srp: Fix srp_map_sg_dma()
       [not found]     ` <25293485-8307-5361-c6fc-6bcadd832249-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
  2016-06-06 11:09       ` Sagi Grimberg
@ 2016-06-06 17:33       ` Christoph Hellwig
  1 sibling, 0 replies; 11+ messages in thread
From: Christoph Hellwig @ 2016-06-06 17:33 UTC (permalink / raw
  To: Bart Van Assche
  Cc: Doug Ledford, Christoph Hellwig, Sagi Grimberg, Laurence Oberman,
	Marciniszyn, Mike,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org

Looks fine,

Reviewed-by: Christoph Hellwig <hch-jcswGhMUV9g@public.gmane.org>
--
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

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 0/2] SRP initiator fixes for kernel v4.7
       [not found] ` <4b4cc34a-eebb-8534-3d76-1cfb3fe961f5-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
                     ` (2 preceding siblings ...)
  2016-06-03 18:58   ` [PATCH 0/2] SRP initiator fixes for kernel v4.7 Laurence Oberman
@ 2016-06-06 23:33   ` Doug Ledford
  3 siblings, 0 replies; 11+ messages in thread
From: Doug Ledford @ 2016-06-06 23:33 UTC (permalink / raw
  To: Bart Van Assche
  Cc: Christoph Hellwig, Sagi Grimberg, Laurence Oberman,
	Marciniszyn, Mike,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org


[-- Attachment #1.1: Type: text/plain, Size: 549 bytes --]

On 6/3/2016 2:38 PM, Bart Van Assche wrote:
> Hello Doug,
> 
> It would be appreciated if you could apply the two patches in this
> series at your earliest convenience. These patches are what I came up
> with while testing the SRP initiator in kernel v4.7-rc1. The names of
> these patches are as follows:
> 
> 0001-IB-srp-Always-initialize-use_fast_reg-and-use_fmr.patch
> 0002-IB-srp-Fix-srp_map_sg_dma.patch
> 
> Thanks,
> 
> Bart.

Thanks Bart, series applied (and I still haven't figured out how the
patch got truncated :-/)


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 884 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2016-06-06 23:33 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-03 18:38 [PATCH 0/2] SRP initiator fixes for kernel v4.7 Bart Van Assche
     [not found] ` <4b4cc34a-eebb-8534-3d76-1cfb3fe961f5-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
2016-06-03 18:39   ` [PATCH 1/2] IB/srp: Always initialize use_fast_reg and use_fmr Bart Van Assche
     [not found]     ` <4b1522b5-31a2-9c7e-6b20-4e859c009345-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
2016-06-06  7:17       ` Leon Romanovsky
2016-06-06 11:08       ` Sagi Grimberg
2016-06-06 17:33       ` Christoph Hellwig
2016-06-03 18:40   ` [PATCH 2/2] IB/srp: Fix srp_map_sg_dma() Bart Van Assche
     [not found]     ` <25293485-8307-5361-c6fc-6bcadd832249-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
2016-06-06 11:09       ` Sagi Grimberg
2016-06-06 17:33       ` Christoph Hellwig
2016-06-03 18:58   ` [PATCH 0/2] SRP initiator fixes for kernel v4.7 Laurence Oberman
     [not found]     ` <178183518.40193929.1464980291652.JavaMail.zimbra-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2016-06-03 23:43       ` Laurence Oberman
2016-06-06 23:33   ` Doug Ledford

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.