linux-rdma.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 00/22] iser patches for 4.3
@ 2015-08-06 15:32 Sagi Grimberg
       [not found] ` <1438875186-4310-1-git-send-email-sagig-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 24+ messages in thread
From: Sagi Grimberg @ 2015-08-06 15:32 UTC (permalink / raw)
  To: Doug Ledford; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA

This set is a resend that includes some extra patches that
piled up in the meantime.

I still have some patches in the pipe (including initiator/target
support for remote invalidate) but I'm targeting those to 4.4

I postponed the comment from Steve on using system PAGE_SIZE
in patch 20 until I have access to a relevant arch to test on.

This patch set includes:
- Small fixes for bugs encountered in testing
- Small fixes detected by static checkers
- Memory registration code path rework (consolidate to
  a single code path that branches only at the actual registration
  FRWR vs. FMR). This reduces code duplication that exists in current code.
- Larger IO transfer size support (up to 8MB at the moment) depending on
  the device capabilities.
- Optimize Io path by chaining send work requests and posting them
  only once.

Changes from v0:
- Added Fixes: tags to patches 4,6
- Modified change logs for patche 20,22 to add some more details
  (comments from Or)

Adir Lev (1):
  IB/iser: Maintain connection fmr_pool under a single registration
    descriptor

Jenny Falkovich (1):
  IB/iser: Change some module parameters to be RO

Sagi Grimberg (20):
  IB/iser: Change minor assignments and logging prints
  IB/iser: Remove '.' from log message
  IB/iser: Fix missing return status check in iser_send_data_out
  IB/iser: Get rid of un-maintained counters
  IB/iser: Fix possible bogus DMA unmapping
  IB/iser: Remove a redundant always-false condition
  IB/iser: Remove an unneeded print for unaligned memory
  IB/iser: Introduce struct iser_reg_resources
  IB/iser: Rename struct fast_reg_descriptor -> iser_fr_desc
  IB/iser: Remove dead code in fmr_pool alloc/free
  IB/iser: Introduce iser_reg_ops
  IB/iser: Move fastreg descriptor allocation to
    iser_create_fastreg_desc
  IB/iser: Introduce iser registration pool struct
  IB/iser: Rename iser_reg_page_vec to iser_fast_reg_fmr
  IB/iser: Make reg_desc_get a per device routine
  IB/iser: Unify fast memory registration flows
  IB/iser: Pass registration pool a size parameter
  IB/iser: Support up to 8MB data transfer in a single command
  IB/iser: Add debug prints to the various memory registration methods
  IB/iser: Chain all iser transaction send work requests

 drivers/infiniband/ulp/iser/iscsi_iser.c     |  89 +++--
 drivers/infiniband/ulp/iser/iscsi_iser.h     | 206 ++++++++----
 drivers/infiniband/ulp/iser/iser_initiator.c |  34 +-
 drivers/infiniband/ulp/iser/iser_memory.c    | 480 +++++++++++++++------------
 drivers/infiniband/ulp/iser/iser_verbs.c     | 328 ++++++++++--------
 5 files changed, 645 insertions(+), 492 deletions(-)

-- 
1.8.4.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	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2015-08-15  1:08 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-06 15:32 [PATCH v1 00/22] iser patches for 4.3 Sagi Grimberg
     [not found] ` <1438875186-4310-1-git-send-email-sagig-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2015-08-06 15:32   ` [PATCH v1 01/22] IB/iser: Change some module parameters to be RO Sagi Grimberg
2015-08-06 15:32   ` [PATCH v1 02/22] IB/iser: Change minor assignments and logging prints Sagi Grimberg
2015-08-06 15:32   ` [PATCH v1 03/22] IB/iser: Remove '.' from log message Sagi Grimberg
2015-08-06 15:32   ` [PATCH v1 04/22] IB/iser: Fix missing return status check in iser_send_data_out Sagi Grimberg
2015-08-06 15:32   ` [PATCH v1 05/22] IB/iser: Get rid of un-maintained counters Sagi Grimberg
2015-08-06 15:32   ` [PATCH v1 06/22] IB/iser: Fix possible bogus DMA unmapping Sagi Grimberg
2015-08-06 15:32   ` [PATCH v1 07/22] IB/iser: Remove a redundant always-false condition Sagi Grimberg
2015-08-06 15:32   ` [PATCH v1 08/22] IB/iser: Remove an unneeded print for unaligned memory Sagi Grimberg
2015-08-06 15:32   ` [PATCH v1 09/22] IB/iser: Introduce struct iser_reg_resources Sagi Grimberg
2015-08-06 15:32   ` [PATCH v1 10/22] IB/iser: Rename struct fast_reg_descriptor -> iser_fr_desc Sagi Grimberg
2015-08-06 15:32   ` [PATCH v1 11/22] IB/iser: Remove dead code in fmr_pool alloc/free Sagi Grimberg
2015-08-06 15:32   ` [PATCH v1 12/22] IB/iser: Introduce iser_reg_ops Sagi Grimberg
2015-08-06 15:32   ` [PATCH v1 13/22] IB/iser: Move fastreg descriptor allocation to iser_create_fastreg_desc Sagi Grimberg
2015-08-06 15:32   ` [PATCH v1 14/22] IB/iser: Introduce iser registration pool struct Sagi Grimberg
2015-08-06 15:32   ` [PATCH v1 15/22] IB/iser: Maintain connection fmr_pool under a single registration descriptor Sagi Grimberg
2015-08-06 15:33   ` [PATCH v1 16/22] IB/iser: Rename iser_reg_page_vec to iser_fast_reg_fmr Sagi Grimberg
2015-08-06 15:33   ` [PATCH v1 17/22] IB/iser: Make reg_desc_get a per device routine Sagi Grimberg
2015-08-06 15:33   ` [PATCH v1 18/22] IB/iser: Unify fast memory registration flows Sagi Grimberg
2015-08-06 15:33   ` [PATCH v1 19/22] IB/iser: Pass registration pool a size parameter Sagi Grimberg
2015-08-06 15:33   ` [PATCH v1 20/22] IB/iser: Support up to 8MB data transfer in a single command Sagi Grimberg
2015-08-06 15:33   ` [PATCH v1 21/22] IB/iser: Add debug prints to the various memory registration methods Sagi Grimberg
2015-08-06 15:33   ` [PATCH v1 22/22] IB/iser: Chain all iser transaction send work requests Sagi Grimberg
2015-08-15  1:08   ` [PATCH v1 00/22] iser patches for 4.3 Doug Ledford

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).