[PATCH 1/2] mlx4: Expose correct max_sge_rd limit

2015-10-27 Thread Sagi Grimberg
mlx4 devices (ConnectX-2, ConnectX-3) can not issue max_sge in a single RDMA_READ request (resulting in a completion error). Thus, expose lower max_sge_rd to avoid this issue. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> --- drivers/infiniband/hw/mlx4/main.c |3 ++- 1 files chan

Re: [PATCH 1/2] mlx4: Expose correct max_sge_rd limit

2015-10-27 Thread Sagi Grimberg
Hello Sagi, Is this the same issue as what has been discussed in http://www.spinics.net/lists/linux-rdma/msg21799.html ? Looks like it. I think this patch addresses this issue, but lets CC Eli to comment if I'm missing something. Thanks for digging this up... Sagi. -- To unsubscribe from

Re: [PATCH 1/2] mlx4: Expose correct max_sge_rd limit

2015-10-27 Thread Sagi Grimberg
On 27/10/2015 16:39, Or Gerlitz wrote: On 10/27/2015 11:40 AM, Sagi Grimberg wrote: mlx4 devices (ConnectX-2, ConnectX-3) can not issue max_sge in a single RDMA_READ request (resulting in a completion error). Thus, expose lower max_sge_rd to avoid this issue. Sagi, Hey Or, Still

Re: [PATCH 1/2] mlx4: Expose correct max_sge_rd limit

2015-10-27 Thread Sagi Grimberg
But AFAIR, the magic number was 28... how this goes hand in hand with your findings? mlx4 max_sge is 32, and isert does max_sge - 2 = 30. So it always used 30... and I run it reliably with this for a while now. This thing exists before I was involved so I might not be familiar with all the

[PATCH v1 0/2] Handle mlx4 max_sge_rd correctly

2015-10-27 Thread Sagi Grimberg
and added a root cause analysis to patch change log. - Fixed isert qp creation to be max_sge but construct rdma work request with the minimum of max_sge and max_sge_rd as non-rdma sends (login rsp) take 2 sges (and some devices have max_sge_rd = 1. Sagi Grimberg (2): mlx4: Expose correct

[PATCH v1 2/2] iser-target: Remove explicit mlx4 work-around

2015-10-27 Thread Sagi Grimberg
The driver now exposes sufficient limits so we can avoid having mlx4 specific work-around. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> --- drivers/infiniband/ulp/isert/ib_isert.c | 13 +++-- 1 files changed, 3 insertions(+), 10 deletions(-) diff --git a/drivers/infiniba

[PATCH v1 1/2] mlx4: Expose correct max_sge_rd limit

2015-10-27 Thread Sagi Grimberg
= 30. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> --- drivers/infiniband/hw/mlx4/main.c |2 +- include/linux/mlx4/device.h | 11 +++ 2 files changed, 12 insertions(+), 1 deletions(-) diff --git a/drivers/infiniband/hw/mlx4/main.c b/drivers/infiniband/hw/mlx4/

Re: [PATCH] IB/iser: Remove an unused variable

2015-10-27 Thread Sagi Grimberg
Detected this by compiling with W=1. Signed-off-by: Bart Van Assche <bart.vanass...@sandisk.com> Cc: Sagi Grimberg <sa...@mellanox.com> FWIW, Reviewed-by: Sagi Grimberg <sa...@mellanox.com> -- To unsubscribe from this list: send the line "unsubscribe linux-rdma&qu

Re: merge struct ib_device_attr into struct ib_device V2

2015-10-27 Thread Sagi Grimberg
Did we converge on this? Just a heads up to Doug, this conflicts with [PATCH v4 11/16] xprtrdma: Pre-allocate Work Requests for backchannel but it's trivial to sort out... -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to

Re: [PATCH v2 for-next 1/7] IB/core: Extend ib_uverbs_create_qp

2015-10-21 Thread Sagi Grimberg
On 10/21/2015 1:04 PM, Or Gerlitz wrote: On 10/21/2015 12:53 PM, Sagi Grimberg wrote: On 10/15/2015 2:44 PM, Eran Ben Elisha wrote: +struct ib_uverbs_ex_create_qp { +__u64 user_handle; +__u32 pd_handle; +__u32 send_cq_handle; +__u32 recv_cq_handle; +__u32 srq_handle

Re: [PATCH v2 for-next 1/7] IB/core: Extend ib_uverbs_create_qp

2015-10-21 Thread Sagi Grimberg
On 10/15/2015 2:44 PM, Eran Ben Elisha wrote: ib_uverbs_ex_create_qp follows the extension verbs mechanism. New features (for example, QP creation flags field which is added in a downstream patch) could used via user-space libraries without breaking the ABI. This is an important addition, I'll

Re: [PATCH v5 00/26] New fast registration API

2015-10-20 Thread Sagi Grimberg
Doug, are you planning on taking this for 4.4? I think this set has converged towards inclusion. Reminder, this series goes on top of Christoph's wr_cleanup patches and iser bounce buffering cleanup. Sagi. -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of

Re: merge struct ib_device_attr into struct ib_device V2

2015-10-20 Thread Sagi Grimberg
So this patch seems to work well for me. I've ran some kernel applications (ipoib, iser, srp, nfs) and a user-space application (ibsrpdm) over mlx4/mlx5 and didn't spot any issues. I think this is very useful to have and I'd love having it in 4.4, does anyone have any other comments on this

Re: merge struct ib_device_attr into struct ib_device V2

2015-10-20 Thread Sagi Grimberg
But this makes struct ib_device much much bigger, and this structure is used in **fast** path, e.g the ULP traverses through a pointer from struct ib_device to post_send/recv, poll_cq and friends. Umm, all the caps are appended to the end of the ib_device structure so I don't see how it will

Re: merge struct ib_device_attr into struct ib_device V2

2015-10-20 Thread Sagi Grimberg
On 10/20/2015 5:08 PM, Or Gerlitz wrote: On Tue, Oct 20, 2015 at 4:08 PM, Sagi Grimberg <sa...@dev.mellanox.co.il> wrote: I think this is very useful to have and I'd love having it in 4.4, does anyone have any other comments on this patch? Were we ever presented with performance

Re: merge struct ib_device_attr into struct ib_device V2

2015-10-20 Thread Sagi Grimberg
I think this is very useful to have and I'd love having it in 4.4, does anyone have any other comments on this patch? Were we ever presented with performance gains achieved using the patch? Hi Or, Can you explain what you mean by performance gains? My understanding is that this patch is

[PATCH v5 26/26] IB/core: Remove old fast registration API

2015-10-13 Thread Sagi Grimberg
No callers and no providers left, go ahead and remove it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/core/verbs.c | 25 --- include/rdma/ib_verbs.h | 54

[PATCH v5 18/26] IB/srp: Dont allocate a page vector when using fast_reg

2015-10-13 Thread Sagi Grimberg
The new fast registration API does not reuqire a page vector so we can't avoid allocating it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Tested-by: Bart Van Assche <bart.vanass...@sandisk.com> --- drivers/infiniband/ulp/srp/ib_srp.c | 20 +++- 1 file changed, 1

[PATCH v5 16/26] IB/srp: Convert to new registration API

2015-10-13 Thread Sagi Grimberg
Instead of constructing a page list, call ib_map_mr_sg and post a new ib_reg_wr. srp_map_finish_fr now returns the number of sg elements registered. Remove srp_finish_mapping since no one is calling it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Tested-by: Bart Van Assche <ba

[PATCH v5 17/26] IB/srp: Remove srp_finish_mapping

2015-10-13 Thread Sagi Grimberg
No callers left, remove it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Tested-by: Bart Van Assche <bart.vanass...@sandisk.com> --- drivers/infiniband/ulp/srp/ib_srp.c | 10 -- 1 file changed, 10 deletions(-) diff --git a/drivers/infiniband/ulp/srp/ib_srp.c b/driver

[PATCH v5 05/26] RDMA/ocrdma: Support the new memory registration API

2015-10-13 Thread Sagi Grimberg
(ib_mr) - page array (ocrdma_mr) - key (ib_reg_wr) The IB_WR_FAST_REG_MR handlers will be removed later when all the ULPs will be converted. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/ocrdma/ocrdma.h |

[PATCH v5 03/26] IB/mlx5: Support the new memory registration API

2015-10-13 Thread Sagi Grimberg
, length, access flags (ib_mr) - page array (mlx5_ib_mr) - key (ib_reg_wr) The IB_WR_FAST_REG_MR handlers will be removed later when all the ULPs will be converted. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/mlx5/cq

[PATCH v5 00/26] New fast registration API

2015-10-13 Thread Sagi Grimberg
ble at: https://github.com/sagigrimberg/linux reg_api.6 Sagi Grimberg (26): IB/core: Introduce new fast registration API IB/mlx5: Remove dead fmr code IB/mlx5: Support the new memory registration API IB/mlx4: Support the new memory registration API RDMA/ocrdma: Support the new mem

[PATCH v5 01/26] IB/core: Introduce new fast registration API

2015-10-13 Thread Sagi Grimberg
. This API will allow ULPs to remove the duplicated code of constructing a page vector from a given sg list. The send work request ib_reg_wr also shrinks as it will contain only mr, key and access flags in addition. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Tested-by: Christoph Hell

[PATCH v5 12/26] xprtrdma: Port to new memory registration API

2015-10-13 Thread Sagi Grimberg
Instead of maintaining a fastreg page list, keep an sg table and convert an array of pages to a sg list. Then call ib_map_mr_sg and construct ib_reg_wr. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> Tested-by: Steve Wise <sw...@opengr

[PATCH v5 04/26] IB/mlx4: Support the new memory registration API

2015-10-13 Thread Sagi Grimberg
, length, access flags (ib_mr) - page array (mlx4_ib_mr) - key (ib_reg_wr) The IB_WR_FAST_REG_MR handlers will be removed later when all the ULPs will be converted. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Tested-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/

[PATCH v5 14/26] RDS/IW: Convert to new memory registration API

2015-10-13 Thread Sagi Grimberg
Get rid of fast_reg page list and its construction. Instead, just pass the RDS sg list to ib_map_mr_sg and post the new ib_reg_wr. This is done both for server IW RDMA_READ registration and the client remote key registration. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Chr

[PATCH v5 02/26] IB/mlx5: Remove dead fmr code

2015-10-13 Thread Sagi Grimberg
Just function declarations - no need for those laying arround. If for some reason someone will want FMR support in mlx5, it should be easy enough to restore a few structs. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Reviewed-by: Bart Van Assche <bart.vanass...@sandisk.c

[PATCH v5 09/26] RDMA/nes: Support the new memory registration API

2015-10-13 Thread Sagi Grimberg
) - page array (nes_mr) - key, access flags (ib_reg_wr) The IB_WR_FAST_REG_MR handlers will be removed later when all the ULPs will be converted. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/nes/nes_v

[PATCH v5 07/26] iw_cxgb4: Support the new memory registration API

2015-10-13 Thread Sagi Grimberg
(c4iw_mr) - key, access flags (ib_reg_wr) The IB_WR_FAST_REG_MR handlers will be removed later when all the ULPs will be converted. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> Tested-by: Steve Wise <sw...@opengridcomputing.co

[PATCH v5 06/26] RDMA/cxgb3: Support the new memory registration API

2015-10-13 Thread Sagi Grimberg
(iwch_mr) - key, access flags (ib_reg_wr) The IB_WR_FAST_REG_MR handlers will be removed later when all the ULPs will be converted. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/cxgb3/iwch_pro

[PATCH v5 20/26] IB/mlx4: Remove old FRWR API support

2015-10-13 Thread Sagi Grimberg
No ULP uses it anymore, go ahead and remove it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/mlx4/cq.c | 3 +-- drivers/infiniband/hw/mlx4/main.c| 2 -- drivers/infiniband/hw/mlx4/ml

[PATCH v5 10/26] IB/iser: Port to new fast registration API

2015-10-13 Thread Sagi Grimberg
Remove fastreg page list allocation as the page vector is now private to the provider. Instead of constructing the page list and fast_req work request, call ib_map_mr_sg and construct ib_reg_wr. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h.

[PATCH v5 08/26] IB/qib: Support the new memory registration API

2015-10-13 Thread Sagi Grimberg
(qib_mr) - key, access flags (ib_reg_wr) The IB_WR_FAST_REG_MR handlers will be removed later when all the ULPs will be converted. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/qib/qib_

[PATCH v5 24/26] IB/qib: Remove old FRWR API

2015-10-13 Thread Sagi Grimberg
No ULP uses it anymore, go ahead and remove it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/qib/qib_keys.c | 56 --- drivers/infiniband/hw/qib/qib_mr.c| 32 +

[PATCH v5 25/26] RDMA/nes: Remove old FRWR API

2015-10-13 Thread Sagi Grimberg
No ULP uses it anymore, go ahead and remove it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/nes/nes_hw.h| 6 -- drivers/infiniband/hw/nes/nes_verbs.c | 162 +- 2 file

[PATCH v2 2/2] IB/iser: Enable SG clustering

2015-10-13 Thread Sagi Grimberg
can benefit greatly as as it would reduce the length of the HW descriptors array. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Reviewed-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/ulp/iser/iscsi_iser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --g

[PATCH v5 22/26] RDMA/cxgb3: Remove old FRWR API

2015-10-13 Thread Sagi Grimberg
No ULP uses it anymore, go ahead and remove it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/cxgb3/iwch_cq.c | 2 +- drivers/infiniband/hw/cxgb3/iwch_provider.c | 24 --- drivers/infinib

[PATCH v5 15/26] IB/srp: Split srp_map_sg

2015-10-13 Thread Sagi Grimberg
This is a preparation patch for the new registration API conversion. It splits srp_map_sg per registration strategy (srp_map_sg[fmr|fr|dma]. On its own it adds some code duplication, but it makes the API switch easier to comprehend. Signed-off-by: Sagi Grimberg <sa...@mellanox.com>

[PATCH v2 1/2] IB/iser: set block queue_virt_boundary

2015-10-13 Thread Sagi Grimberg
boundary - or, bounce buffer SG_IOs that are not aligned to the virtual boundary Since iser is working in 4K page size, set the virt_boundary to 4K pages. With this setting, we can now safely remove the bounce buffering logic in iser. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Re

Re: Seeing WARN_ON in ib_dealloc_pd from ipoib in kernel 4.3-rc1-debug

2015-10-12 Thread Sagi Grimberg
net_device *dev = mcast->dev; int tx_dropped = 0; Hey Christoph, Thanks for the quick patch. When you re-spin this as a proper patch you can add my: Tested-by: Sagi Grimberg <sa...@mellanox.com> -- To unsubscribe from this list: send the line "unsubscribe linux-rdma"

Possible circular locking when unloading device driver

2015-10-12 Thread Sagi Grimberg
Hey, I stepped on this lockdep circular locking complaint on 4.3-rc when unloading the device driver (mlx5 in my case). Has anyone seen this? I have seen such warnings with kernfs_mutex when deleting iscsi devices on the fly. I wander if kernfs_remove() should use mutex_lock_nested? output:

Re: merge struct ib_device_attr into struct ib_device V2

2015-10-12 Thread Sagi Grimberg
On 10/12/2015 9:57 AM, Christoph Hellwig wrote: This patch gets rid of struct ib_device_attr and cleans up drivers nicely. It goes on top of my send_wr cleanups and the memory registration udpates from Sagi. Changes since V1: - rebased on top of the Sagi's latest reg_api.6 branch

[PATCH v4 04/26] IB/mlx4: Support the new memory registration API

2015-10-12 Thread Sagi Grimberg
, length, access flags (ib_mr) - page array (mlx4_ib_mr) - key (ib_reg_wr) The IB_WR_FAST_REG_MR handlers will be removed later when all the ULPs will be converted. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Tested-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/

[PATCH v4 00/26] New fast registration API

2015-10-12 Thread Sagi Grimberg
n't supported anyway). I assume that the correct place to get the support back would be in a shared SW library (hfi1, qib, rxe). - Updated the change logs The code is available at: https://github.com/sagigrimberg/linux/tree/reg_api.6 Sagi Grimberg (26): IB/core: Introduce new fast registration

[PATCH v4 16/26] IB/srp: Convert to new registration API

2015-10-12 Thread Sagi Grimberg
Instead of constructing a page list, call ib_map_mr_sg and post a new ib_reg_wr. srp_map_finish_fr now returns the number of sg elements registered. Remove srp_finish_mapping since no one is calling it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Tested-by: Bart Van Assche <ba

[PATCH v4 02/26] IB/mlx5: Remove dead fmr code

2015-10-12 Thread Sagi Grimberg
Just function declarations - no need for those laying arround. If for some reason someone will want FMR support in mlx5, it should be easy enough to restore a few structs. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Reviewed-by: Bart Van Assche <bart.vanass...@sandisk.c

[PATCH v4 17/26] IB/srp: Remove srp_finish_mapping

2015-10-12 Thread Sagi Grimberg
No callers left, remove it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Tested-by: Bart Van Assche <bart.vanass...@sandisk.com> --- drivers/infiniband/ulp/srp/ib_srp.c | 10 -- 1 file changed, 10 deletions(-) diff --git a/drivers/infiniband/ulp/srp/ib_srp.c b/driver

[PATCH v4 03/26] IB/mlx5: Support the new memory registration API

2015-10-12 Thread Sagi Grimberg
, length, access flags (ib_mr) - page array (mlx5_ib_mr) - key (ib_reg_wr) The IB_WR_FAST_REG_MR handlers will be removed later when all the ULPs will be converted. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/mlx5/cq

[PATCH v4 26/26] IB/core: Remove old fast registration API

2015-10-12 Thread Sagi Grimberg
No callers and no providers left, go ahead and remove it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/core/verbs.c | 25 --- include/rdma/ib_verbs.h | 54

[PATCH v4 07/26] iw_cxgb4: Support the new memory registration API

2015-10-12 Thread Sagi Grimberg
(c4iw_mr) - key, access flags (ib_reg_wr) The IB_WR_FAST_REG_MR handlers will be removed later when all the ULPs will be converted. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> Tested-by: Steve Wise <sw...@opengridcomputing.co

[PATCH v4 14/26] RDS/IW: Convert to new memory registration API

2015-10-12 Thread Sagi Grimberg
Get rid of fast_reg page list and its construction. Instead, just pass the RDS sg list to ib_map_mr_sg and post the new ib_reg_wr. This is done both for server IW RDMA_READ registration and the client remote key registration. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Chr

[PATCH v4 18/26] IB/srp: Dont allocate a page vector when using fast_reg

2015-10-12 Thread Sagi Grimberg
The new fast registration API does not reuqire a page vector so we can't avoid allocating it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Tested-by: Bart Van Assche <bart.vanass...@sandisk.com> --- drivers/infiniband/ulp/srp/ib_srp.c | 20 +++- 1 file changed, 1

[PATCH v4 13/26] svcrdma: Port to new memory registration API

2015-10-12 Thread Sagi Grimberg
Instead of maintaining a fastreg page list, keep an sg table and convert an array of pages to a sg list. Then call ib_map_mr_sg and construct ib_reg_wr. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> Tested-by: Steve Wise <sw...@opengr

[PATCH v4 22/26] RDMA/cxgb3: Remove old FRWR API

2015-10-12 Thread Sagi Grimberg
No ULP uses it anymore, go ahead and remove it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/cxgb3/iwch_cq.c | 2 +- drivers/infiniband/hw/cxgb3/iwch_provider.c | 24 --- drivers/infinib

[PATCH v4 21/26] RDMA/ocrdma: Remove old FRWR API

2015-10-12 Thread Sagi Grimberg
No ULP uses it anymore, go ahead and remove it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/ocrdma/ocrdma_main.c | 2 - drivers/infiniband/hw/ocrdma/ocrdma_verbs.c | 104 +--- driver

[PATCH v4 25/26] RDMA/nes: Remove old FRWR API

2015-10-12 Thread Sagi Grimberg
No ULP uses it anymore, go ahead and remove it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/nes/nes_hw.h| 6 -- drivers/infiniband/hw/nes/nes_verbs.c | 162 +- 2 file

[PATCH v4 20/26] IB/mlx4: Remove old FRWR API support

2015-10-12 Thread Sagi Grimberg
No ULP uses it anymore, go ahead and remove it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/mlx4/cq.c | 3 +-- drivers/infiniband/hw/mlx4/main.c| 2 -- drivers/infiniband/hw/mlx4/ml

[PATCH v4 19/26] IB/mlx5: Remove old FRWR API support

2015-10-12 Thread Sagi Grimberg
No ULP uses it anymore, go ahead and remove it. Keep only the local invalidate part of the handlers. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/mlx5/cq.c | 3 -- drivers/infiniband/hw/mlx5/main.c|

[PATCH v4 10/26] IB/iser: Port to new fast registration API

2015-10-12 Thread Sagi Grimberg
Remove fastreg page list allocation as the page vector is now private to the provider. Instead of constructing the page list and fast_req work request, call ib_map_mr_sg and construct ib_reg_wr. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h.

[PATCH v4 24/26] IB/qib: Remove old FRWR API

2015-10-12 Thread Sagi Grimberg
No ULP uses it anymore, go ahead and remove it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/qib/qib_keys.c | 56 --- drivers/infiniband/hw/qib/qib_mr.c| 32 +

[PATCH v4 15/26] IB/srp: Split srp_map_sg

2015-10-12 Thread Sagi Grimberg
This is a preparation patch for the new registration API conversion. It splits srp_map_sg per registration strategy (srp_map_sg[fmr|fr|dma]. On its own it adds some code duplication, but it makes the API switch easier to comprehend. Signed-off-by: Sagi Grimberg <sa...@mellanox.com>

[PATCH v4 05/26] RDMA/ocrdma: Support the new memory registration API

2015-10-12 Thread Sagi Grimberg
(ib_mr) - page array (ocrdma_mr) - key (ib_reg_wr) The IB_WR_FAST_REG_MR handlers will be removed later when all the ULPs will be converted. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/ocrdma/ocrdma.h |

[PATCH v4 09/26] RDMA/nes: Support the new memory registration API

2015-10-12 Thread Sagi Grimberg
) - page array (nes_mr) - key, access flags (ib_reg_wr) The IB_WR_FAST_REG_MR handlers will be removed later when all the ULPs will be converted. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/nes/nes_v

[PATCH v4 01/26] IB/core: Introduce new fast registration API

2015-10-12 Thread Sagi Grimberg
. This API will allow ULPs to remove the duplicated code of constructing a page vector from a given sg list. The send work request ib_reg_wr also shrinks as it will contain only mr, key and access flags in addition. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Tested-by: Christoph Hell

[PATCH v4 06/26] RDMA/cxgb3: Support the new memory registration API

2015-10-12 Thread Sagi Grimberg
(iwch_mr) - key, access flags (ib_reg_wr) The IB_WR_FAST_REG_MR handlers will be removed later when all the ULPs will be converted. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/cxgb3/iwch_pro

[PATCH v4 08/26] IB/qib: Support the new memory registration API

2015-10-12 Thread Sagi Grimberg
(qib_mr) - key, access flags (ib_reg_wr) The IB_WR_FAST_REG_MR handlers will be removed later when all the ULPs will be converted. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/qib/qib_

Re: [PATCH 1/2] iser: Set block queue_virt_boundary and remove bounce buffering code

2015-10-11 Thread Sagi Grimberg
On 10/10/2015 10:33 PM, Or Gerlitz wrote: On Sat, Oct 10, 2015 at 3:27 AM, Sagi Grimberg <sa...@mellanox.com> wrote: The block layer reliably enforces no SG lists with gaps to a 4k virtual boundary so we can completely remove the entire bounce buffering logic. Hi Sagi, Hey Or,

Re: [PATCH 2/2] IB/iser: Enable SG clustering

2015-10-11 Thread Sagi Grimberg
but with arbitrary SG list support it will benefit greatly. Y? please put some wording here to clarify. Well, because when a device will accept true SG lists then it would benefit the HCA caching/fetching to have less SG elements. I'll add a sentence to the change log. -- To unsubscribe from

[PATCH v1 1/2] IB/iser: set block queue_virt_boundary

2015-10-11 Thread Sagi Grimberg
By limiting the sg lists that we are allowing to meet and 4k virtual boundary, we can completely remove the entire bounce buffering logic. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Reviewed-by: Christoph Hellwig <h...@lst.de> Cc: Jens Axboe <ax...@kernel.dk> Cc:

[PATCH v1 2/2] IB/iser: Enable SG clustering

2015-10-11 Thread Sagi Grimberg
iser can handle it and it can dramatically reduce the number of SG elements. It doesn't make much of a difference at the moment, but with arbitrary SG list support it will benefit greatly. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> --- drivers/infiniband/ulp/iser/iscsi_iser.c | 2

[PATCH v1 0/2] iser bounce buffering cleanup

2015-10-11 Thread Sagi Grimberg
. Changes from v0: - Added Reviewed-by tags - Fixed patch (1) title Sagi Grimberg (2): iser: set block queue_virt_boundary IB/iser: Enable SG clustering drivers/infiniband/ulp/iser/iscsi_iser.c | 14 +- drivers/infiniband/ulp/iser/iscsi_iser.h | 7 +- drivers/infiniband/ulp/iser

Re: Seeing WARN_ON in ib_dealloc_pd from ipoib in kernel 4.3-rc1-debug

2015-10-11 Thread Sagi Grimberg
Yes. I'm seeing this too. The last time this popped up I fixed it by adding the code for reaping ahs. I suspect that the new code to timeout sendonly multicast joins combined with us now creating and joining what used to be sendonly groups is the likely culprit here. Is someone looking at

Re: [PATCH v1 2/2] IB/iser: Enable SG clustering

2015-10-11 Thread Sagi Grimberg
On 10/11/2015 6:35 PM, Sagi Grimberg wrote: iser can handle it and it can dramatically reduce the number of SG elements. It doesn't make much of a difference at the moment, but with arbitrary SG list support it will benefit greatly. Bahh, I updated the change-log in the previous revision

Re: [PATCH] IB: merge struct ib_device_attr into struct ib_device

2015-10-11 Thread Sagi Grimberg
On 9/24/2015 4:35 PM, Christoph Hellwig wrote: On Thu, Sep 24, 2015 at 08:41:17AM +0300, Or Gerlitz wrote: We had a smaller volume move to cache the device attributes on the IB device structure, and I just realized it was dropped on the floor. Ira, that was a reviewer comment you got when

Re: [PATCH v1 1/2] IB/iser: set block queue_virt_boundary

2015-10-11 Thread Sagi Grimberg
What happens now when an app wants to use 1K, 2K, 3K IOs? they can only use 1/4, 1/2 or 3/4 of the available memory for these transactions? What? I'm not sure what you are talking about. what available memory? and we are going to fix it with devices like mlx5 over the new API you're

Re: [PATCH] IB: merge struct ib_device_attr into struct ib_device

2015-10-11 Thread Sagi Grimberg
I can do a rebase to whatever you want. Initially this was over your reg_api branch. Is a rebase to the latest reg_api.6 fine? That would be great. Sagi. -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majord...@vger.kernel.org More

Re: [PATCH v3 12/26] xprtrdma: Port to new memory registration API

2015-10-09 Thread Sagi Grimberg
out_list_err: - rc = PTR_ERR(f->fr_pgl); + rc = -ENOMEM; dprintk("RPC: %s: ib_alloc_fast_reg_page_list status %i\n”, Should you update this debugging message? Yes I will. + n = ib_map_mr_sg(mr, frmr->sg, frmr->sg_nents, PAGE_SIZE); + if (unlikely(n !=

[PATCH 1/2] iser: Set block queue_virt_boundary and remove bounce buffering code

2015-10-09 Thread Sagi Grimberg
The block layer reliably enforces no SG lists with gaps to a 4k virtual boundary so we can completely remove the entire bounce buffering logic. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> --- drivers/infiniband/ulp/iser/iscsi_iser.c | 12 +- drivers/infiniband/ulp/iser/iscsi_

[PATCH 0/2] iser bounce buffering cleanup

2015-10-09 Thread Sagi Grimberg
. Sagi Grimberg (2): iser: set block queue_virt_boundary IB/iser: Enable SG clustering drivers/infiniband/ulp/iser/iscsi_iser.c | 14 +- drivers/infiniband/ulp/iser/iscsi_iser.h | 7 +- drivers/infiniband/ulp/iser/iser_initiator.c | 51 + drivers/infiniband/ulp/iser/iser_memory.c

[PATCH 2/2] IB/iser: Enable SG clustering

2015-10-09 Thread Sagi Grimberg
iser can handle it and it can dramatically reduce the number of SG elements. It doesn't make much of a difference at the moment, but with arbitrary SG list support it will benefit greatly. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> --- drivers/infiniband/ulp/iser/iscsi_iser.c | 2

Re: [PATCH v3 00/26] New fast registration API

2015-10-08 Thread Sagi Grimberg
On 10/8/2015 11:01 AM, Christoph Hellwig wrote: On Thu, Oct 08, 2015 at 10:50:43AM +0300, Sagi Grimberg wrote: - Rebased against Doug's for-4.4 tree (4.3.0-rc1) + 4.3-rc fixes Does this means its not on top of the send_wr changes now? I'm fine with that as I think your series is even more

[PATCH v3 13/26] svcrdma: Port to new memory registration API

2015-10-08 Thread Sagi Grimberg
Instead of maintaining a fastreg page list, keep an sg table and convert an array of pages to a sg list. Then call ib_map_mr_sg and construct ib_reg_wr. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> Tested-by: Steve Wise <sw...@opengr

[PATCH v3 09/26] RDMA/nes: Support the new memory registration API

2015-10-08 Thread Sagi Grimberg
) - page array (nes_mr) - key, access flags (ib_reg_wr) The IB_WR_FAST_REG_MR handlers will be removed later when all the ULPs will be converted. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/nes/nes_v

[PATCH v3 03/26] IB/mlx5: Support the new memory registration API

2015-10-08 Thread Sagi Grimberg
, length, access flags (ib_mr) - page array (mlx5_ib_mr) - key (ib_reg_wr) The IB_WR_FAST_REG_MR handlers will be removed later when all the ULPs will be converted. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/mlx5/cq

[PATCH v3 05/26] RDMA/ocrdma: Support the new memory registration API

2015-10-08 Thread Sagi Grimberg
(ib_mr) - page array (ocrdma_mr) - key (ib_reg_wr) The IB_WR_FAST_REG_MR handlers will be removed later when all the ULPs will be converted. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/ocrdma/ocrdma.h |

[PATCH v3 00/26] New fast registration API

2015-10-08 Thread Sagi Grimberg
uld be in a shared SW library (hfi1, qib, rxe). - Updated the change logs The code is available at: https://github.com/sagigrimberg/linux/tree/reg_api.6 Sagi Grimberg (26): IB/core: Introduce new fast registration API IB/mlx5: Remove dead fmr code IB/mlx5: Support the new memory registration API IB/m

[PATCH v3 12/26] xprtrdma: Port to new memory registration API

2015-10-08 Thread Sagi Grimberg
=143677002622296=2). Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> Tested-by: Steve Wise <sw...@opengridcomputing.com> Tested-by: Selvin Xavier <selvin.xav...@avagotech.com> --- net/sunrpc/xp

[PATCH v3 06/26] RDMA/cxgb3: Support the new memory registration API

2015-10-08 Thread Sagi Grimberg
(iwch_mr) - key, access flags (ib_reg_wr) The IB_WR_FAST_REG_MR handlers will be removed later when all the ULPs will be converted. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/cxgb3/iwch_pro

[PATCH v3 02/26] IB/mlx5: Remove dead fmr code

2015-10-08 Thread Sagi Grimberg
Just function declarations - no need for those laying arround. If for some reason someone will want FMR support in mlx5, it should be easy enough to restore a few structs. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Reviewed-by: Bart Van Assche <bart.vanass...@sandisk.c

[PATCH v3 19/26] IB/mlx5: Remove old FRWR API support

2015-10-08 Thread Sagi Grimberg
No ULP uses it anymore, go ahead and remove it. Keep only the local invalidate part of the handlers. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/mlx5/cq.c | 3 -- drivers/infiniband/hw/mlx5/main.c|

[PATCH v3 20/26] IB/mlx4: Remove old FRWR API support

2015-10-08 Thread Sagi Grimberg
No ULP uses it anymore, go ahead and remove it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/mlx4/cq.c | 3 +-- drivers/infiniband/hw/mlx4/main.c| 2 -- drivers/infiniband/hw/mlx4/ml

[PATCH v3 14/26] RDS/IW: Convert to new memory registration API

2015-10-08 Thread Sagi Grimberg
Get rid of fast_reg page list and its construction. Instead, just pass the RDS sg list to ib_map_mr_sg and post the new ib_reg_wr. This is done both for server IW RDMA_READ registration and the client remote key registration. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Chr

[PATCH v3 08/26] IB/qib: Support the new memory registration API

2015-10-08 Thread Sagi Grimberg
(qib_mr) - key, access flags (ib_reg_wr) The IB_WR_FAST_REG_MR handlers will be removed later when all the ULPs will be converted. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/qib/qib_

[PATCH v3 24/26] IB/qib: Remove old FRWR API

2015-10-08 Thread Sagi Grimberg
No ULP uses it anymore, go ahead and remove it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h...@lst.de> --- drivers/infiniband/hw/qib/qib_keys.c | 56 --- drivers/infiniband/hw/qib/qib_mr.c| 32 +

[PATCH v3 16/26] IB/srp: Convert to new registration API

2015-10-08 Thread Sagi Grimberg
Instead of constructing a page list, call ib_map_mr_sg and post a new ib_reg_wr. srp_map_finish_fr now returns the number of sg elements registered. Remove srp_finish_mapping since no one is calling it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Tested-by: Bart Van Assche <ba

[PATCH v3 15/26] IB/srp: Split srp_map_sg

2015-10-08 Thread Sagi Grimberg
This is a preparation patch for the new registration API conversion. It splits srp_map_sg per registration strategy (srp_map_sg[fmr|fr|dma]. On its own it adds some code duplication, but it makes the API switch easier to comprehend. Signed-off-by: Sagi Grimberg <sa...@mellanox.com>

[PATCH v3 18/26] IB/srp: Dont allocate a page vector when using fast_reg

2015-10-08 Thread Sagi Grimberg
The new fast registration API does not reuqire a page vector so we can't avoid allocating it. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Tested-by: Bart Van Assche <bart.vanass...@sandisk.com> --- drivers/infiniband/ulp/srp/ib_srp.c | 20 +++- 1 file changed, 1

[PATCH v3 10/26] IB/iser: Port to new fast registration API

2015-10-08 Thread Sagi Grimberg
Remove fastreg page list allocation as the page vector is now private to the provider. Instead of constructing the page list and fast_req work request, call ib_map_mr_sg and construct ib_reg_wr. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Acked-by: Christoph Hellwig <h.

[PATCH v3 01/26] IB/core: Introduce new fast registration API

2015-10-08 Thread Sagi Grimberg
. This API will allow ULPs to remove the duplicated code of constructing a page vector from a given sg list. The send work request ib_reg_wr also shrinks as it will contain only mr, key and access flags in addition. Signed-off-by: Sagi Grimberg <sa...@mellanox.com> Tested-by: Christoph Hell

<    1   2   3   4   5   6   7   8   9   10   >