public inbox for linux-s390@vger.kernel.org
 help / color / mirror / Atom feed
From: Ursula Braun <ubraun@linux.ibm.com>
To: davem@davemloft.net
Cc: netdev@vger.kernel.org, linux-s390@vger.kernel.org,
	schwidefsky@de.ibm.com, heiko.carstens@de.ibm.com,
	raspl@linux.ibm.com, hwippel@linux.ibm.com, sebott@linux.ibm.com,
	ubraun@linux.ibm.com
Subject: [PATCH net-next 00/10] pnetid and SMC-D support
Date: Thu, 28 Jun 2018 19:05:03 +0200	[thread overview]
Message-ID: <20180628170513.5089-1-ubraun@linux.ibm.com> (raw)

Dave,

SMC requires a configured pnet table to map Ethernet interfaces to
RoCE adapter ports. For s390 there exists hardware support to group
such devices. The first three patches cover the s390 pnetid support,
enabling SMC-R usage on s390 without configuring an extra pnet table.

SMC currently requires RoCE adapters, and uses RDMA-techniques
implemented with IB-verbs. But s390 offers another method for
intra-CEC Shared Memory communication. The following seven patches
implement a solution to run SMC traffic based on intra-CEC DMA,
called SMC-D.

Thanks, Ursula

Hans Wippel (6):
  net/smc: add base infrastructure for SMC-D and ISM
  net/smc: add pnetid support for SMC-D and ISM
  net/smc: add SMC-D support in CLC messages
  net/smc: add SMC-D support in data transfer
  net/smc: add SMC-D support in af_smc
  net/smc: add SMC-D diag support

Sebastian Ott (1):
  s390/ism: add device driver for internal shared memory

Ursula Braun (3):
  net/smc: determine port attributes independent from pnet table
  net/smc: add pnetid support
  net/smc: optimize consumer cursor updates

 drivers/s390/net/Kconfig      |  10 +
 drivers/s390/net/Makefile     |   3 +
 drivers/s390/net/ism.h        | 221 +++++++++++++++
 drivers/s390/net/ism_drv.c    | 623 ++++++++++++++++++++++++++++++++++++++++++
 include/net/smc.h             |  65 +++++
 include/uapi/linux/smc_diag.h |  10 +
 net/smc/Makefile              |   2 +-
 net/smc/af_smc.c              | 228 ++++++++++++++--
 net/smc/smc.h                 |   7 +-
 net/smc/smc_cdc.c             |  86 +++++-
 net/smc/smc_cdc.h             |  43 ++-
 net/smc/smc_clc.c             | 193 +++++++++----
 net/smc/smc_clc.h             |  81 ++++--
 net/smc/smc_core.c            | 285 ++++++++++++++-----
 net/smc/smc_core.h            |  72 +++--
 net/smc/smc_diag.c            |  18 +-
 net/smc/smc_ib.c              | 134 +++++----
 net/smc/smc_ib.h              |   4 +-
 net/smc/smc_ism.c             | 314 +++++++++++++++++++++
 net/smc/smc_ism.h             |  48 ++++
 net/smc/smc_pnet.c            | 157 +++++++++--
 net/smc/smc_pnet.h            |  16 ++
 net/smc/smc_rx.c              |   2 +-
 net/smc/smc_tx.c              | 205 +++++++++++---
 net/smc/smc_tx.h              |   2 +
 25 files changed, 2505 insertions(+), 324 deletions(-)
 create mode 100644 drivers/s390/net/ism.h
 create mode 100644 drivers/s390/net/ism_drv.c
 create mode 100644 net/smc/smc_ism.c
 create mode 100644 net/smc/smc_ism.h

-- 
2.16.4

             reply	other threads:[~2018-06-28 17:05 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-28 17:05 Ursula Braun [this message]
2018-06-28 17:05 ` [PATCH net-next 01/10] net/smc: determine port attributes independent from pnet table Ursula Braun
2018-06-28 17:05 ` [PATCH net-next 02/10] net/smc: add pnetid support Ursula Braun
2018-06-28 17:05 ` [PATCH net-next 03/10] net/smc: optimize consumer cursor updates Ursula Braun
2018-06-28 17:05 ` [PATCH net-next 04/10] net/smc: add base infrastructure for SMC-D and ISM Ursula Braun
2018-06-28 17:05 ` [PATCH net-next 05/10] net/smc: add pnetid support " Ursula Braun
2018-06-28 17:05 ` [PATCH net-next 06/10] net/smc: add SMC-D support in CLC messages Ursula Braun
2018-06-28 17:05 ` [PATCH net-next 07/10] net/smc: add SMC-D support in data transfer Ursula Braun
2018-06-28 17:05 ` [PATCH net-next 08/10] net/smc: add SMC-D support in af_smc Ursula Braun
2018-06-28 17:05 ` [PATCH net-next 09/10] net/smc: add SMC-D diag support Ursula Braun
2018-06-28 17:05 ` [PATCH net-next 10/10] s390/ism: add device driver for internal shared memory Ursula Braun
2018-06-30 11:46 ` [PATCH net-next 00/10] pnetid and SMC-D support David Miller

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=20180628170513.5089-1-ubraun@linux.ibm.com \
    --to=ubraun@linux.ibm.com \
    --cc=davem@davemloft.net \
    --cc=heiko.carstens@de.ibm.com \
    --cc=hwippel@linux.ibm.com \
    --cc=linux-s390@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=raspl@linux.ibm.com \
    --cc=schwidefsky@de.ibm.com \
    --cc=sebott@linux.ibm.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox