From: Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
To: Michal Kalderon
<Michal.Kalderon-YGCgFSpz5w/QT0dZR+AlfA@public.gmane.org>,
linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: yuval.mintz-YGCgFSpz5w/QT0dZR+AlfA@public.gmane.org
Subject: Re: [PATCH for-next 0/8] RDMA/qedr: Add iWARP support for QL4xxxx
Date: Fri, 18 Aug 2017 12:32:50 -0400 [thread overview]
Message-ID: <1503073970.2598.24.camel@redhat.com> (raw)
In-Reply-To: <1501069317-16601-1-git-send-email-Michal.Kalderon-YGCgFSpz5w/QT0dZR+AlfA@public.gmane.org>
On Wed, 2017-07-26 at 14:41 +0300, Michal Kalderon wrote:
> Hi Doug,
>
> This patch series adds iWARP support to our QL4xxxx networking
> adapters.
>
> The first 6 patches of this series were previously sent as an RFC
> (patches 13-18): https://www.spinics.net/lists/linux-rdma/msg51416.ht
> ml
> The qed part of the RFC has already been accepted as part of 4.13:
> https://www.spinics.net/lists/netdev/msg443224.html
>
> Changes from RFC:
> -----------------
> * Functions rdma_protocol_iwarp/roce, are used instead of
> IS_IWARP/IS_ROCE
> macros when differentiating flows after device registration.
> Pointed out by Leon
> * Additional patch is added for user space iWARP support.
> * Additional maintainer added for qedr for MAINTAINERS.
>
> This series was tested and built against:
> git://github.com/dledford/linux.git, branch: k.o/for-next
>
> Michal Kalderon (8):
> RDMA/qedr: Add additional maintainer to MAINTAINERS file
> RDMA/qedr: Rename the qedr_cm file as a preparation for iWARP
> support
> RDMA/qedr: Add support for registering an iWARP device
> RDMA/qedr: Add iWARP support in existing verbs
> RDMA/qedr: Add support for read with invalidate, supported in iWARP
> RDMA/qedr: Add iWARP connection management qp related callbacks
> RDMA/qedr: Add iWARP connection management functions
> RDMA/qedr: Add support for iWARP in user space
>
> MAINTAINERS | 1 +
> drivers/infiniband/hw/qedr/Makefile | 2 +-
> drivers/infiniband/hw/qedr/main.c | 105 ++-
> drivers/infiniband/hw/qedr/qedr.h | 31 +-
> drivers/infiniband/hw/qedr/qedr_hsi_rdma.h | 6 +-
> drivers/infiniband/hw/qedr/qedr_iw_cm.c | 746
> +++++++++++++++++++++
> drivers/infiniband/hw/qedr/qedr_iw_cm.h | 49 ++
> .../hw/qedr/{qedr_cm.c => qedr_roce_cm.c} | 2 +-
> .../hw/qedr/{qedr_cm.h => qedr_roce_cm.h} | 0
> drivers/infiniband/hw/qedr/verbs.c | 350 +++++++---
> drivers/infiniband/hw/qedr/verbs.h | 2 +
> 11 files changed, 1203 insertions(+), 91 deletions(-)
> create mode 100644 drivers/infiniband/hw/qedr/qedr_iw_cm.c
> create mode 100644 drivers/infiniband/hw/qedr/qedr_iw_cm.h
> rename drivers/infiniband/hw/qedr/{qedr_cm.c => qedr_roce_cm.c}
> (99%)
> rename drivers/infiniband/hw/qedr/{qedr_cm.h => qedr_roce_cm.h}
> (100%)
I've pulled this into a branch and pushed that branch to github. It's
the qedr branch. There was some fuzz in taking the patches just due to
code float since you posted this. Please review my branch and make
sure the final result is to your satisfaction.
--
Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
GPG KeyID: B826A3330E572FDD
Key fingerprint = AE6B 1BDA 122B 23B4 265B 1274 B826 A333 0E57 2FDD
--
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
next prev parent reply other threads:[~2017-08-18 16:32 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-26 11:41 [PATCH for-next 0/8] RDMA/qedr: Add iWARP support for QL4xxxx Michal Kalderon
[not found] ` <1501069317-16601-1-git-send-email-Michal.Kalderon-YGCgFSpz5w/QT0dZR+AlfA@public.gmane.org>
2017-07-26 11:41 ` [PATCH for-next 1/8] RDMA/qedr: Add additional maintainer to MAINTAINERS file Michal Kalderon
2017-07-26 11:41 ` [PATCH for-next 2/8] RDMA/qedr: Rename the qedr_cm file as a preparation for iWARP support Michal Kalderon
2017-07-26 11:41 ` [PATCH for-next 3/8] RDMA/qedr: Add support for registering an iWARP device Michal Kalderon
2017-07-26 11:41 ` [PATCH for-next 4/8] RDMA/qedr: Add iWARP support in existing verbs Michal Kalderon
2017-07-26 11:41 ` [PATCH for-next 5/8] RDMA/qedr: Add support for read with invalidate, supported in iWARP Michal Kalderon
2017-07-26 11:41 ` [PATCH for-next 6/8] RDMA/qedr: Add iWARP connection management qp related callbacks Michal Kalderon
2017-07-26 11:41 ` [PATCH for-next 7/8] RDMA/qedr: Add iWARP connection management functions Michal Kalderon
2017-07-26 11:41 ` [PATCH for-next 8/8] RDMA/qedr: Add support for iWARP in user space Michal Kalderon
2017-08-18 16:32 ` Doug Ledford [this message]
[not found] ` <1503073970.2598.24.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2017-08-21 14:29 ` [PATCH for-next 0/8] RDMA/qedr: Add iWARP support for QL4xxxx Kalderon, Michal
[not found] ` <DM2PR0701MB1392B1F6FB49D027801AFC6788870-v3byQ3tR4i+0eoJk1DrUDU5OhdzP3rhOnBOFsp37pqbUKgpGm//BTAC/G2K4zDHf@public.gmane.org>
2017-08-21 23:23 ` Doug Ledford
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1503073970.2598.24.camel@redhat.com \
--to=dledford-h+wxahxf7alqt0dzr+alfa@public.gmane.org \
--cc=Michal.Kalderon-YGCgFSpz5w/QT0dZR+AlfA@public.gmane.org \
--cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=yuval.mintz-YGCgFSpz5w/QT0dZR+AlfA@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.