linux-rdma.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RDMA PATCH 00/16] RDMA/Intel X722 iWARP driver update
@ 2016-04-13 14:30 Mustafa Ismail
       [not found] ` <1460557852-10824-1-git-send-email-mustafa.ismail-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 21+ messages in thread
From: Mustafa Ismail @ 2016-04-13 14:30 UTC (permalink / raw)
  To: dledford-H+wXaHxf7aLQT0dZR+AlfA
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	e1000-rdma-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

This (V2) series incorporates feedback received for the initial series.

This patch series covers changes to i40iw since the initial driver
submission including base memory management extensions, virtual channel
messages queue, corrections for endian warnings and bug fixes.

This patch series is based on Doug Ledford's
https://github.com/dledford/linux.git branch: k.o/for-4.6-rc

Changes from original version to V2 incorporates feedback received:
1. Move RDMA in subject line.
2. Fix for cast warning due to u64 to u32 assignment.
3. Use named initializers for structures that have meaning outside
the file.


Mustafa Ismail (16):
  RDMA/i40iw: Fix overflow of region length
  RDMA/i40iw: Correct QP size calculation
  RDMA/i40iw: Fix refused connections
  RDMA/i40iw: Correct max message size in query port
  RDMA/i40iw: Do not set self-referencing pointer to NULL after free
  RDMA/i40iw: Add qp table lock around AE processing
  RDMA/i40iw: Set vendor_err only if there is an actual error
  RDMA/i40iw: Populate vendor_id and vendor_part_id fields
  RDMA/i40iw: Remove unused code and fix warning
  RDMA/i40iw: Add virtual channel message queue
  RDMA/i40iw: Correct return code check in add_pble_pool
  RDMA/i40iw: Initialize max enabled vfs variable
  RDMA/i40iw: Add base memory management extensions
  RDMA/i40iw: Fix endian issues and warnings
  RDMA/i40iw: Fix SD calculation for initial HMC creation
  RDMA/i40iw: Adding queue drain functions

 drivers/infiniband/hw/i40iw/i40iw.h          |   7 +-
 drivers/infiniband/hw/i40iw/i40iw_cm.c       | 144 +++++++-------
 drivers/infiniband/hw/i40iw/i40iw_cm.h       |  10 +-
 drivers/infiniband/hw/i40iw/i40iw_ctrl.c     | 185 ++++++++++++-----
 drivers/infiniband/hw/i40iw/i40iw_d.h        |   2 +-
 drivers/infiniband/hw/i40iw/i40iw_hw.c       |  11 +-
 drivers/infiniband/hw/i40iw/i40iw_main.c     |  55 ++++--
 drivers/infiniband/hw/i40iw/i40iw_osdep.h    |   1 +
 drivers/infiniband/hw/i40iw/i40iw_pble.c     |   9 +-
 drivers/infiniband/hw/i40iw/i40iw_puda.c     |   2 +-
 drivers/infiniband/hw/i40iw/i40iw_type.h     |  12 +-
 drivers/infiniband/hw/i40iw/i40iw_uk.c       |  80 +++-----
 drivers/infiniband/hw/i40iw/i40iw_user.h     |  36 ++--
 drivers/infiniband/hw/i40iw/i40iw_utils.c    |  47 +++--
 drivers/infiniband/hw/i40iw/i40iw_verbs.c    | 283 ++++++++++++++++++++++++---
 drivers/infiniband/hw/i40iw/i40iw_verbs.h    |   3 +
 drivers/infiniband/hw/i40iw/i40iw_virtchnl.c |  96 ++++-----
 17 files changed, 671 insertions(+), 312 deletions(-)

-- 
2.7.4

--
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] 21+ messages in thread

end of thread, other threads:[~2016-05-13 20:07 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-13 14:30 [RDMA PATCH 00/16] RDMA/Intel X722 iWARP driver update Mustafa Ismail
     [not found] ` <1460557852-10824-1-git-send-email-mustafa.ismail-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2016-04-13 14:30   ` [RDMA PATCH 01/16] RDMA/i40iw: Fix overflow of region length Mustafa Ismail
     [not found]     ` <1460557852-10824-2-git-send-email-mustafa.ismail-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2016-04-18  6:51       ` Leon Romanovsky
2016-04-13 14:30   ` [RDMA PATCH 02/16] RDMA/i40iw: Correct QP size calculation Mustafa Ismail
2016-04-13 14:30   ` [RDMA PATCH 03/16] RDMA/i40iw: Fix refused connections Mustafa Ismail
2016-04-13 14:30   ` [RDMA PATCH 04/16] RDMA/i40iw: Correct max message size in query port Mustafa Ismail
2016-04-13 14:30   ` [RDMA PATCH 05/16] RDMA/i40iw: Do not set self-referencing pointer to NULL after free Mustafa Ismail
2016-04-13 14:30   ` [RDMA PATCH 06/16] RDMA/i40iw: Add qp table lock around AE processing Mustafa Ismail
2016-04-13 14:30   ` [RDMA PATCH 07/16] RDMA/i40iw: Set vendor_err only if there is an actual error Mustafa Ismail
2016-04-13 14:30   ` [RDMA PATCH 08/16] RDMA/i40iw: Populate vendor_id and vendor_part_id fields Mustafa Ismail
2016-04-13 14:30   ` [RDMA PATCH 09/16] RDMA/i40iw: Remove unused code and fix warning Mustafa Ismail
2016-04-13 14:30   ` [RDMA PATCH 10/16] RDMA/i40iw: Add virtual channel message queue Mustafa Ismail
2016-04-13 14:30   ` [RDMA PATCH 11/16] RDMA/i40iw: Correct return code check in add_pble_pool Mustafa Ismail
2016-04-13 14:30   ` [RDMA PATCH 12/16] RDMA/i40iw: Initialize max enabled vfs variable Mustafa Ismail
2016-04-13 14:30   ` [RDMA PATCH 13/16] RDMA/i40iw: Add base memory management extensions Mustafa Ismail
2016-04-13 14:30   ` [RDMA PATCH 14/16] RDMA/i40iw: Fix endian issues and warnings Mustafa Ismail
2016-04-13 14:30   ` [RDMA PATCH 15/16] RDMA/i40iw: Fix SD calculation for initial HMC creation Mustafa Ismail
2016-04-13 14:30   ` [RDMA PATCH 16/16] RDMA/i40iw: Adding queue drain functions Mustafa Ismail
2016-04-17 14:07   ` [RDMA PATCH 00/16] RDMA/Intel X722 iWARP driver update Leon Romanovsky
2016-04-18  6:56   ` Leon Romanovsky
2016-05-13 20:07   ` 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).