Linux RDMA and InfiniBand development
 help / color / mirror / Atom feed
From: Md Haris Iqbal <haris.iqbal@ionos.com>
To: linux-block@vger.kernel.org, linux-rdma@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, axboe@kernel.dk,
	bvanassche@acm.org, hch@lst.de, jgg@ziepe.ca, leon@kernel.org,
	jinpu.wang@ionos.com, Md Haris Iqbal <haris.iqbal@ionos.com>
Subject: [LSF/MM/BPF RFC PATCH 00/13]
Date: Tue,  5 May 2026 09:46:12 +0200	[thread overview]
Message-ID: <20260505074644.195453-1-haris.iqbal@ionos.com> (raw)

Following a conversation with Bart yesterday, I am sending the RMR+BRMR
code through patch for easier review.

The patches apply over the for-next branch of the block tree over commit
07dfa981ca3

For context,
RMR (Reliable Multicast over RTRS) is a kernel module that provides
active-active block-level replication over RDMA. It guarantees delivery
of IO to a group of storage nodes and handles resynchronization of data
directly between storage nodes without involving the compute client.

BRMR (Block device over RMR) sits on top of RMR and exposes a standard
Linux block device (/dev/brmrX) backed by an RMR pool. Together, RMR and
BRMR provide a single-hop replication and resynchronization solution for
RDMA-connected storage clusters.

My session is on Wednesday, at 12 in the storage room (Istanbul).

The modules are still in-development. Many of the parts are only
functionally complete. Some features (backend store replace) are
disabled for now.

Documentation: https://ionos-cloud.github.io/rmr.io/index.html
GitHub link: https://github.com/ionos-cloud/RMR (for kernel v6.12)

Md Haris Iqbal (13):
  RDMA/rmr: add public and private headers
  RDMA/rmr: add shared library code (pool, map, request)
  RDMA/rmr: client: main functionality
  RDMA/rmr: client: sysfs interface functions
  RDMA/rmr: server: main functionality
  RDMA/rmr: server: sysfs interface functions
  RDMA/rmr: include client and server modules into kernel compilation
  block/brmr: add private headers with brmr protocol structs and helpers
  block/brmr: client: main functionality
  block/brmr: client: sysfs interface functions
  block/brmr: server: main functionality
  block/brmr: server: sysfs interface functions
  block/brmr: include client and server modules into kernel compilation

 drivers/block/Kconfig                      |    2 +
 drivers/block/Makefile                     |    1 +
 drivers/block/brmr/Kconfig                 |   28 +
 drivers/block/brmr/Makefile                |   16 +
 drivers/block/brmr/brmr-clt-reque.c        |  228 ++
 drivers/block/brmr/brmr-clt-stats.c        |  332 ++
 drivers/block/brmr/brmr-clt-sysfs.c        |  463 +++
 drivers/block/brmr/brmr-clt.c              | 1222 +++++++
 drivers/block/brmr/brmr-clt.h              |  299 ++
 drivers/block/brmr/brmr-proto.h            |  121 +
 drivers/block/brmr/brmr-srv-sysfs.c        |  707 ++++
 drivers/block/brmr/brmr-srv.c              | 1402 +++++++
 drivers/block/brmr/brmr-srv.h              |  133 +
 drivers/infiniband/Kconfig                 |    1 +
 drivers/infiniband/ulp/Makefile            |    1 +
 drivers/infiniband/ulp/rmr/Kconfig         |   35 +
 drivers/infiniband/ulp/rmr/Makefile        |   23 +
 drivers/infiniband/ulp/rmr/rmr-clt-stats.c |   29 +
 drivers/infiniband/ulp/rmr/rmr-clt-sysfs.c | 1496 ++++++++
 drivers/infiniband/ulp/rmr/rmr-clt-trace.c |   11 +
 drivers/infiniband/ulp/rmr/rmr-clt-trace.h |  110 +
 drivers/infiniband/ulp/rmr/rmr-clt.c       | 3866 ++++++++++++++++++++
 drivers/infiniband/ulp/rmr/rmr-clt.h       |  291 ++
 drivers/infiniband/ulp/rmr/rmr-map-mgmt.c  |  933 +++++
 drivers/infiniband/ulp/rmr/rmr-map.c       |  904 +++++
 drivers/infiniband/ulp/rmr/rmr-map.h       |  246 ++
 drivers/infiniband/ulp/rmr/rmr-pool.c      |  401 ++
 drivers/infiniband/ulp/rmr/rmr-pool.h      |  400 ++
 drivers/infiniband/ulp/rmr/rmr-proto.h     |  273 ++
 drivers/infiniband/ulp/rmr/rmr-req.c       |  796 ++++
 drivers/infiniband/ulp/rmr/rmr-req.h       |   65 +
 drivers/infiniband/ulp/rmr/rmr-srv-md.c    |  764 ++++
 drivers/infiniband/ulp/rmr/rmr-srv-sysfs.c | 1047 ++++++
 drivers/infiniband/ulp/rmr/rmr-srv.c       | 3306 +++++++++++++++++
 drivers/infiniband/ulp/rmr/rmr-srv.h       |  219 ++
 drivers/infiniband/ulp/rmr/rmr.h           |  229 ++
 36 files changed, 20400 insertions(+)
 create mode 100644 drivers/block/brmr/Kconfig
 create mode 100644 drivers/block/brmr/Makefile
 create mode 100644 drivers/block/brmr/brmr-clt-reque.c
 create mode 100644 drivers/block/brmr/brmr-clt-stats.c
 create mode 100644 drivers/block/brmr/brmr-clt-sysfs.c
 create mode 100644 drivers/block/brmr/brmr-clt.c
 create mode 100644 drivers/block/brmr/brmr-clt.h
 create mode 100644 drivers/block/brmr/brmr-proto.h
 create mode 100644 drivers/block/brmr/brmr-srv-sysfs.c
 create mode 100644 drivers/block/brmr/brmr-srv.c
 create mode 100644 drivers/block/brmr/brmr-srv.h
 create mode 100644 drivers/infiniband/ulp/rmr/Kconfig
 create mode 100644 drivers/infiniband/ulp/rmr/Makefile
 create mode 100644 drivers/infiniband/ulp/rmr/rmr-clt-stats.c
 create mode 100644 drivers/infiniband/ulp/rmr/rmr-clt-sysfs.c
 create mode 100644 drivers/infiniband/ulp/rmr/rmr-clt-trace.c
 create mode 100644 drivers/infiniband/ulp/rmr/rmr-clt-trace.h
 create mode 100644 drivers/infiniband/ulp/rmr/rmr-clt.c
 create mode 100644 drivers/infiniband/ulp/rmr/rmr-clt.h
 create mode 100644 drivers/infiniband/ulp/rmr/rmr-map-mgmt.c
 create mode 100644 drivers/infiniband/ulp/rmr/rmr-map.c
 create mode 100644 drivers/infiniband/ulp/rmr/rmr-map.h
 create mode 100644 drivers/infiniband/ulp/rmr/rmr-pool.c
 create mode 100644 drivers/infiniband/ulp/rmr/rmr-pool.h
 create mode 100644 drivers/infiniband/ulp/rmr/rmr-proto.h
 create mode 100644 drivers/infiniband/ulp/rmr/rmr-req.c
 create mode 100644 drivers/infiniband/ulp/rmr/rmr-req.h
 create mode 100644 drivers/infiniband/ulp/rmr/rmr-srv-md.c
 create mode 100644 drivers/infiniband/ulp/rmr/rmr-srv-sysfs.c
 create mode 100644 drivers/infiniband/ulp/rmr/rmr-srv.c
 create mode 100644 drivers/infiniband/ulp/rmr/rmr-srv.h
 create mode 100644 drivers/infiniband/ulp/rmr/rmr.h

-- 
2.43.0


             reply	other threads:[~2026-05-05  7:47 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-05  7:46 Md Haris Iqbal [this message]
2026-05-05  7:46 ` [PATCH 01/13] RDMA/rmr: add public and private headers Md Haris Iqbal
2026-05-05  7:46 ` [PATCH 02/13] RDMA/rmr: add shared library code (pool, map, request) Md Haris Iqbal
2026-05-05  7:46 ` [PATCH 03/13] RDMA/rmr: client: main functionality Md Haris Iqbal
2026-05-05  7:46 ` [PATCH 04/13] RDMA/rmr: client: sysfs interface functions Md Haris Iqbal
2026-05-05  7:46 ` [PATCH 05/13] RDMA/rmr: server: main functionality Md Haris Iqbal
2026-05-05  7:46 ` [PATCH 06/13] RDMA/rmr: server: sysfs interface functions Md Haris Iqbal
2026-05-05  7:46 ` [PATCH 07/13] RDMA/rmr: include client and server modules into kernel compilation Md Haris Iqbal
2026-05-05  7:46 ` [PATCH 08/13] block/brmr: add private headers with brmr protocol structs and helpers Md Haris Iqbal
2026-05-05  7:46 ` [PATCH 09/13] block/brmr: client: main functionality Md Haris Iqbal
2026-05-05  7:46 ` [PATCH 10/13] block/brmr: client: sysfs interface functions Md Haris Iqbal
2026-05-05  7:46 ` [PATCH 11/13] block/brmr: server: main functionality Md Haris Iqbal
2026-05-05  7:46 ` [PATCH 12/13] block/brmr: server: sysfs interface functions Md Haris Iqbal
2026-05-05  7:46 ` [PATCH 13/13] block/brmr: include client and server modules into kernel compilation Md Haris Iqbal

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=20260505074644.195453-1-haris.iqbal@ionos.com \
    --to=haris.iqbal@ionos.com \
    --cc=axboe@kernel.dk \
    --cc=bvanassche@acm.org \
    --cc=hch@lst.de \
    --cc=jgg@ziepe.ca \
    --cc=jinpu.wang@ionos.com \
    --cc=leon@kernel.org \
    --cc=linux-block@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rdma@vger.kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox