All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jason Gunthorpe <jgg@nvidia.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-rdma@vger.kernel.org, linux-kernel@vger.kernel.org,
	Leon Romanovsky <leonro@nvidia.com>
Subject: [GIT PULL] Please pull RDMA subsystem changes
Date: Thu, 23 Jan 2025 13:14:58 -0400	[thread overview]
Message-ID: <20250123171458.GA1053362@nvidia.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 12971 bytes --]

Hi Linus,

As seems to be typical, this is a smaller PR probably due to the
holidays, but also normalish for RDMA right now. The new ROCEv2 support
for ERDMA stands out as the largest functional change.

There are some non-trivial merge conflicts with the RDMA -rc branch,
it took a couple of rounds with Stephen to get things sorted, but this
is what has been in linux-next for a while now.

    https://lore.kernel.org/r/20250106105106.3d94b0c3@canb.auug.org.au
    https://lore.kernel.org/r/20250106120252.000a2afa@canb.auug.org.au
    https://lore.kernel.org/r/20250106111307.7d0f55ba@canb.auug.org.au

I've also prepared the tag for-linus-merged with the agreed linux-next
merge resolution using v6.13 that you may prefer to pull instead of
this unmerged tag.

Otherwise, here is git show of my merge commit, which matches
linux-next, for reference:

diff --cc drivers/infiniband/sw/rxe/rxe_net.c
index d400aaab0e7000,8cc64ceeb3569b..132a87e52d5c7e
--- a/drivers/infiniband/sw/rxe/rxe_net.c
+++ b/drivers/infiniband/sw/rxe/rxe_net.c
@@@ -577,7 -595,13 +585,13 @@@ void rxe_port_down(struct rxe_dev *rxe
  
  void rxe_set_port_state(struct rxe_dev *rxe)
  {
- 	if (ib_get_curr_port_state(rxe->ndev) == IB_PORT_ACTIVE)
+ 	struct net_device *ndev;
+ 
+ 	ndev = rxe_ib_device_get_netdev(&rxe->ib_dev);
+ 	if (!ndev)
+ 		return;
+ 
 -	if (netif_running(ndev) && netif_carrier_ok(ndev))
++	if (ib_get_curr_port_state(ndev) == IB_PORT_ACTIVE)
  		rxe_port_up(rxe);
  	else
  		rxe_port_down(rxe);
diff --cc drivers/infiniband/sw/rxe/rxe_verbs.c
index dad3cacb904880,8a5fc20fd18692..6152a0fdfc8caa
--- a/drivers/infiniband/sw/rxe/rxe_verbs.c
+++ b/drivers/infiniband/sw/rxe/rxe_verbs.c
@@@ -55,10 -62,9 +62,10 @@@ static int rxe_query_port(struct ib_dev
  	ret = ib_get_eth_speed(ibdev, port_num, &attr->active_speed,
  			       &attr->active_width);
  
- 	attr->state = ib_get_curr_port_state(rxe->ndev);
++	attr->state = ib_get_curr_port_state(ndev);
  	if (attr->state == IB_PORT_ACTIVE)
  		attr->phys_state = IB_PORT_PHYS_STATE_LINK_UP;
- 	else if (dev_get_flags(rxe->ndev) & IFF_UP)
+ 	else if (dev_get_flags(ndev) & IFF_UP)
  		attr->phys_state = IB_PORT_PHYS_STATE_POLLING;
  	else
  		attr->phys_state = IB_PORT_PHYS_STATE_DISABLED;
diff --cc drivers/infiniband/sw/siw/siw_verbs.c
index 592a015cc4c6a0,7ca0297d68a4a7..5ac8bd450d2407
--- a/drivers/infiniband/sw/siw/siw_verbs.c
+++ b/drivers/infiniband/sw/siw/siw_verbs.c
@@@ -178,13 -178,21 +178,20 @@@ int siw_query_port(struct ib_device *ba
  
  	rv = ib_get_eth_speed(base_dev, port, &attr->active_speed,
  			 &attr->active_width);
+ 	if (rv)
+ 		return rv;
+ 
+ 	ndev = ib_device_get_netdev(base_dev, SIW_PORT);
+ 	if (!ndev)
+ 		return -ENODEV;
+ 
  	attr->gid_tbl_len = 1;
  	attr->max_msg_sz = -1;
- 	attr->max_mtu = ib_mtu_int_to_enum(sdev->netdev->mtu);
- 	attr->active_mtu = ib_mtu_int_to_enum(sdev->netdev->mtu);
- 	attr->state = ib_get_curr_port_state(sdev->netdev);
+ 	attr->max_mtu = ib_mtu_int_to_enum(ndev->max_mtu);
+ 	attr->active_mtu = ib_mtu_int_to_enum(READ_ONCE(ndev->mtu));
 -	attr->phys_state = (netif_running(ndev) && netif_carrier_ok(ndev)) ?
++	attr->state = ib_get_curr_port_state(ndev);
 +	attr->phys_state = attr->state == IB_PORT_ACTIVE ?
  		IB_PORT_PHYS_STATE_LINK_UP : IB_PORT_PHYS_STATE_DISABLED;
 -	attr->state = attr->phys_state == IB_PORT_PHYS_STATE_LINK_UP ?
 -		IB_PORT_ACTIVE : IB_PORT_DOWN;
  	attr->port_cap_flags = IB_PORT_CM_SUP | IB_PORT_DEVICE_MGMT_SUP;
  	/*
  	 * All zero

Thanks,
Jason

The following changes since commit 40384c840ea1944d7c5a392e8975ed088ecf0b37:

  Linux 6.13-rc1 (2024-12-01 14:28:56 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git tags/for-linus

for you to fetch changes up to d3d930411ce390e532470194296658a960887773:

  RDMA/mlx5: Fix implicit ODP use after free (2025-01-21 14:10:49 -0400)

----------------------------------------------------------------
RDMA v6.14 merge window pull request

Lighter that normal, but the now usual collection of driver fixes and
small improvements:

- Small fixes and minor improvements to cxgb4, bnxt_re, rxe, srp, efa,
  cxgb4

- Update mlx4 to use the new umem APIs, avoiding direct use of scatterlist

- Support ROCEv2 in erdma

- Remove various uncalled functions, constify bin_attribute

- Provide core infrastructure to catch netdev events and route them to
  drivers, consolidating duplicated driver code

- Fix rare race condition crashes in mlx5 ODP flows

----------------------------------------------------------------
Advait Dhamorikar (1):
      RDMA/erdma: Fix opcode conditional check

Anumula Murali Mohan Reddy (1):
      RDMA/cxgb4: Notify rdma stack for IB_EVENT_QP_LAST_WQE_REACHED event

Boshi Yu (12):
      RDMA/erdma: Probe the erdma RoCEv2 device
      RDMA/erdma: Add GID table management interfaces
      RDMA/erdma: Add the erdma_query_pkey() interface
      RDMA/erdma: Add address handle implementation
      RDMA/erdma: Add erdma_modify_qp_rocev2() interface
      RDMA/erdma: Refactor the code of the modify_qp interface
      RDMA/erdma: Add the query_qp command to the cmdq
      RDMA/erdma: Support UD QPs and UD WRs
      RDMA/erdma: Add missing fields to the erdma_device_ops_rocev2
      RDMA/erdma: Fix incorrect response returned from query_qp
      RDMA/erdma: Support non-sleeping erdma_post_cmd_wait()
      RDMA/erdma: Support create_ah/destroy_ah in non-sleepable contexts

Chiara Meiohas (1):
      RDMA/mlx5: Extend ODP statistics with operation count

Dan Carpenter (1):
      rdma/cxgb4: Prevent potential integer overflow on 32bit

Dr. David Alan Gilbert (6):
      IB/hfi1: Remove unused hfi1_format_hwerrors
      RDMA/irdma: Remove unused irdma_cqp_*_fpm_val_cmd functions
      RDMA/core: Remove unused ib_ud_header_unpack
      RDMA/core: Remove unused ib_find_exact_cached_pkey
      RDMA/core: Remove unused ibdev_printk
      RDMA/core: Remove unused ib_copy_path_rec_from_user

Junxian Huang (1):
      RDMA/hns: Clean up the legacy CONFIG_INFINIBAND_HNS

Kalesh AP (11):
      RDMA/bnxt_re: Remove extra new line in bnxt_re_netdev_event
      RDMA/bnxt_re: Remove unnecessary goto in bnxt_re_netdev_event
      RDMA/bnxt_re: Optimize error handling in bnxt_re_probe
      RDMA/bnxt_re: Eliminate need for some forward declarations
      RDMA/bnxt_re: Remove unnecessary header file inclusion
      RDMA/bnxt_re: Fix to drop reference to the mmap entry in case of error
      RDMA/bnxt_re: Add Async event handling support
      RDMA/bnxt_re: Query firmware defaults of CC params during probe
      RDMA/bnxt_re: Add support to handle DCB_CONFIG_CHANGE event
      RDMA/bnxt_re: Pass the context for ulp_irq_stop
      RDMA/bnxt_re: Allocate dev_attr information dynamically

Leon Romanovsky (3):
      RDMA/mlx4: Avoid false error about access to uninitialized gids array
      RDMA/mlx4: Use ib_umem_find_best_pgsz() to calculate MTT size
      RDMA/mlx4: Use DMA iterator to write MTT

Li Zhijian (1):
      RDMA/rtrs: Add missing deinit() call

Ma Ke (1):
      RDMA/srp: Fix error handling in srp_add_port

Michael Chan (1):
      bnxt_en: Add ULP call to notify async events

Michael Guralnik (1):
      RDMA/mlx5: Fix indirect mkey ODP page count

Michael Margolin (1):
      RDMA/efa: Reset device on probe failure

Patrisious Haddad (2):
      RDMA/mlx5: Fix link status down event for MPV
      RDMA/mlx5: Fix implicit ODP use after free

Selvin Xavier (1):
      MAINTAINERS: Update the bnxt_re maintainers

Thomas Weißschuh (2):
      RDMA/hfi1: Constify 'struct bin_attribute'
      RDMA/qib: Constify 'struct bin_attribute'

Yishai Hadas (1):
      RDMA/mlx5: Fix a race for an ODP MR which leads to CQE with error

Yonatan Nachum (1):
      RDMA/efa: Align interrupt related fields to same type

Yuyu Li (12):
      RDMA/core: Add ib_query_netdev_port() to query netdev port by IB device.
      RDMA/core: Support link status events dispatching
      RDMA/bnxt_re: Remove deliver net device event
      RDMA/erdma: Remove deliver net device event
      RDMA/irdma: Remove deliver net device event
      RDMA/rxe: Remove deliver net device event
      RDMA/siw: Remove deliver net device event
      RDMA/usnic: Support report_port_event() ops
      RDMA/mlx4: Support report_port_event() ops
      RDMA/pvrdma: Support report_port_event() ops
      RDMA/mlx5: Handle link status event only for LAG device
      RDMA/hns: Support fast path for link-down events dispatching

Zhu Yanjun (1):
      RDMA/rxe: Fix the warning "__rxe_cleanup+0x12c/0x170 [rdma_rxe]"

zhenwei pi (1):
      RDMA/rxe: Fix mismatched max_msg_sz

 MAINTAINERS                                    |   1 +
 drivers/infiniband/core/cache.c                |  35 --
 drivers/infiniband/core/device.c               | 116 +++--
 drivers/infiniband/core/ud_header.c            |  83 ----
 drivers/infiniband/core/uverbs_marshall.c      |  42 --
 drivers/infiniband/hw/Makefile                 |   2 +-
 drivers/infiniband/hw/bnxt_re/bnxt_re.h        |   5 +-
 drivers/infiniband/hw/bnxt_re/hw_counters.c    |  11 +-
 drivers/infiniband/hw/bnxt_re/ib_verbs.c       |  47 +-
 drivers/infiniband/hw/bnxt_re/main.c           | 339 +++++++++------
 drivers/infiniband/hw/bnxt_re/qplib_fp.h       |   1 +
 drivers/infiniband/hw/bnxt_re/qplib_res.c      |   7 +-
 drivers/infiniband/hw/bnxt_re/qplib_res.h      |   4 +-
 drivers/infiniband/hw/bnxt_re/qplib_sp.c       | 117 ++++-
 drivers/infiniband/hw/bnxt_re/qplib_sp.h       |   6 +-
 drivers/infiniband/hw/cxgb4/device.c           |   6 +-
 drivers/infiniband/hw/cxgb4/qp.c               |   8 +
 drivers/infiniband/hw/efa/efa.h                |   8 +-
 drivers/infiniband/hw/efa/efa_com.h            |   6 +-
 drivers/infiniband/hw/efa/efa_main.c           |  28 +-
 drivers/infiniband/hw/erdma/Kconfig            |   2 +-
 drivers/infiniband/hw/erdma/erdma.h            |  14 +-
 drivers/infiniband/hw/erdma/erdma_cm.c         |  71 ++--
 drivers/infiniband/hw/erdma/erdma_cmdq.c       |  26 +-
 drivers/infiniband/hw/erdma/erdma_cq.c         |  65 +++
 drivers/infiniband/hw/erdma/erdma_eq.c         |   6 +-
 drivers/infiniband/hw/erdma/erdma_hw.h         | 135 +++++-
 drivers/infiniband/hw/erdma/erdma_main.c       |  62 ++-
 drivers/infiniband/hw/erdma/erdma_qp.c         | 301 ++++++++++---
 drivers/infiniband/hw/erdma/erdma_verbs.c      | 568 +++++++++++++++++++++----
 drivers/infiniband/hw/erdma/erdma_verbs.h      | 166 ++++++--
 drivers/infiniband/hw/hfi1/hfi.h               |  14 -
 drivers/infiniband/hw/hfi1/intr.c              |  31 --
 drivers/infiniband/hw/hfi1/sysfs.c             |  14 +-
 drivers/infiniband/hw/hns/Kconfig              |  20 +-
 drivers/infiniband/hw/hns/Makefile             |   9 +-
 drivers/infiniband/hw/hns/hns_roce_hw_v2.c     |  13 +
 drivers/infiniband/hw/irdma/osdep.h            |   4 -
 drivers/infiniband/hw/irdma/protos.h           |   4 -
 drivers/infiniband/hw/irdma/utils.c            |  71 ----
 drivers/infiniband/hw/mlx4/cq.c                |   6 +-
 drivers/infiniband/hw/mlx4/main.c              |  60 +--
 drivers/infiniband/hw/mlx4/mlx4_ib.h           |  18 +-
 drivers/infiniband/hw/mlx4/mr.c                | 286 +------------
 drivers/infiniband/hw/mlx4/qp.c                |  12 +-
 drivers/infiniband/hw/mlx5/main.c              |   4 +
 drivers/infiniband/hw/mlx5/mlx5_ib.h           |   6 +
 drivers/infiniband/hw/mlx5/mr.c                |  17 +-
 drivers/infiniband/hw/mlx5/odp.c               |  70 +--
 drivers/infiniband/hw/mlx5/restrack.c          |   9 +
 drivers/infiniband/hw/qib/qib_sysfs.c          |  16 +-
 drivers/infiniband/hw/usnic/usnic_ib_main.c    |  73 ++--
 drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c |  66 +--
 drivers/infiniband/sw/rxe/rxe_net.c            |  22 +-
 drivers/infiniband/sw/rxe/rxe_param.h          |   2 +-
 drivers/infiniband/sw/rxe/rxe_pool.c           |  11 +-
 drivers/infiniband/sw/rxe/rxe_verbs.c          |   6 +-
 drivers/infiniband/sw/siw/siw_main.c           |   8 -
 drivers/infiniband/sw/siw/siw_verbs.c          |   5 +-
 drivers/infiniband/ulp/rtrs/rtrs.c             |   3 +
 drivers/infiniband/ulp/srp/ib_srp.c            |   1 -
 drivers/net/ethernet/broadcom/bnxt/bnxt.c      |   1 +
 drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c  |  39 +-
 drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.h  |   8 +-
 include/rdma/ib_cache.h                        |  16 -
 include/rdma/ib_marshall.h                     |   3 -
 include/rdma/ib_pack.h                         |   3 -
 include/rdma/ib_verbs.h                        |  24 +-
 68 files changed, 2009 insertions(+), 1254 deletions(-)
(diffstat from tag for-linus-merged)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

             reply	other threads:[~2025-01-23 17:15 UTC|newest]

Thread overview: 318+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-23 17:14 Jason Gunthorpe [this message]
2025-01-24 21:45 ` [GIT PULL] Please pull RDMA subsystem changes pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2026-05-05 15:17 Jason Gunthorpe
2026-05-05 18:25 ` pr-tracker-bot
2026-04-20 12:19 Jason Gunthorpe
2026-04-20 19:13 ` pr-tracker-bot
2026-03-27 15:09 Jason Gunthorpe
2026-03-27 20:39 ` pr-tracker-bot
2026-02-26 15:36 Jason Gunthorpe
2026-02-26 17:53 ` pr-tracker-bot
2026-02-13  0:34 Jason Gunthorpe
2026-02-13  1:18 ` pr-tracker-bot
2026-01-02 18:16 Jason Gunthorpe
2026-01-02 20:36 ` pr-tracker-bot
2025-12-03 15:18 Jason Gunthorpe
2025-12-05  3:01 ` pr-tracker-bot
2025-11-04 14:31 Jason Gunthorpe
2025-11-04 19:11 ` pr-tracker-bot
2025-10-03  0:02 Jason Gunthorpe
2025-10-04  1:41 ` pr-tracker-bot
2025-09-22 13:58 Jason Gunthorpe
2025-09-22 18:27 ` pr-tracker-bot
2025-08-21 23:24 Jason Gunthorpe
2025-08-22 13:36 ` pr-tracker-bot
2025-08-06 18:36 Jason Gunthorpe
2025-08-07  5:30 ` pr-tracker-bot
2025-07-30 17:45 Jason Gunthorpe
2025-07-31 20:04 ` pr-tracker-bot
2025-07-02 14:36 Jason Gunthorpe
2025-07-02 17:06 ` pr-tracker-bot
2025-05-30 14:42 Jason Gunthorpe
2025-05-30 17:28 ` pr-tracker-bot
2025-05-15 19:12 Jason Gunthorpe
2025-05-15 20:32 ` pr-tracker-bot
2025-04-14 13:06 Jason Gunthorpe
2025-04-14 17:41 ` pr-tracker-bot
2025-03-28 14:23 Jason Gunthorpe
2025-03-29 18:24 ` pr-tracker-bot
2025-03-20 14:57 Jason Gunthorpe
2025-03-20 17:02 ` pr-tracker-bot
2025-02-25 19:22 Jason Gunthorpe
2025-02-26  0:20 ` pr-tracker-bot
2025-01-03 14:24 Jason Gunthorpe
2025-01-03 23:22 ` pr-tracker-bot
2024-11-22 18:36 Jason Gunthorpe
2024-11-23  4:10 ` pr-tracker-bot
2024-11-15 15:18 Jason Gunthorpe
2024-11-15 18:59 ` pr-tracker-bot
2024-10-31 16:30 Jason Gunthorpe
2024-11-01  2:52 ` pr-tracker-bot
2024-10-16 18:00 Jason Gunthorpe
2024-10-16 20:51 ` pr-tracker-bot
2024-09-23 17:16 Jason Gunthorpe
2024-09-24 19:36 ` pr-tracker-bot
2024-07-18 19:31 Jason Gunthorpe
2024-07-19 18:09 ` pr-tracker-bot
2024-06-21 13:24 Jason Gunthorpe
2024-06-21 21:09 ` pr-tracker-bot
2024-05-17 19:34 Jason Gunthorpe
2024-05-18 21:05 ` pr-tracker-bot
2024-04-19 17:19 Jason Gunthorpe
2024-04-19 21:07 ` pr-tracker-bot
2024-03-18 16:51 Jason Gunthorpe
2024-03-18 22:47 ` pr-tracker-bot
2024-02-21  0:12 Jason Gunthorpe
2024-02-21  1:03 ` pr-tracker-bot
2024-01-12  1:06 Jason Gunthorpe
2024-01-12 22:20 ` pr-tracker-bot
2023-12-08 14:19 Jason Gunthorpe
2023-12-08 20:45 ` pr-tracker-bot
2023-11-02 23:09 Jason Gunthorpe
2023-11-03  1:26 ` pr-tracker-bot
2023-10-06 18:30 Jason Gunthorpe
2023-10-07 18:12 ` pr-tracker-bot
2023-09-01  0:30 Jason Gunthorpe
2023-09-02  0:00 ` pr-tracker-bot
2023-08-11 23:55 Jason Gunthorpe
2023-08-12  2:55 ` pr-tracker-bot
2023-07-28 18:52 Jason Gunthorpe
2023-07-29  0:27 ` pr-tracker-bot
2023-06-29  0:46 Jason Gunthorpe
2023-06-30  4:10 ` Linus Torvalds
2023-07-03 21:19   ` Jason Gunthorpe
2023-06-30  4:16 ` pr-tracker-bot
2023-06-15 12:39 Jason Gunthorpe
2023-06-16  4:16 ` pr-tracker-bot
2023-05-31 16:58 Jason Gunthorpe
2023-04-28 15:34 Jason Gunthorpe
2023-04-30  0:52 ` pr-tracker-bot
2023-04-14 12:18 Jason Gunthorpe
2023-04-14 17:40 ` pr-tracker-bot
2023-02-24  1:27 Jason Gunthorpe
2023-02-24 23:27 ` pr-tracker-bot
2023-02-10  0:35 Jason Gunthorpe
2023-02-10  1:56 ` pr-tracker-bot
2023-01-20 21:13 Jason Gunthorpe
2023-01-20 22:38 ` pr-tracker-bot
2023-01-07  2:11 Jason Gunthorpe
2023-01-07 18:43 ` pr-tracker-bot
2022-12-17  1:05 Jason Gunthorpe
2022-12-17 14:28 ` pr-tracker-bot
2022-12-13 21:05 Jason Gunthorpe
2022-12-14  2:23 ` Yanjun Zhu
2022-12-14  7:40   ` Leon Romanovsky
2022-12-15  2:18     ` Yanjun Zhu
2022-12-14 18:04 ` pr-tracker-bot
2022-11-02 12:26 Jason Gunthorpe
2022-11-02 18:38 ` pr-tracker-bot
2022-10-06 23:03 Jason Gunthorpe
2022-10-07 19:20 ` pr-tracker-bot
2022-09-09 16:17 Jason Gunthorpe
2022-09-09 19:13 ` pr-tracker-bot
2022-08-19 18:21 Jason Gunthorpe
2022-08-20 17:55 ` pr-tracker-bot
2022-08-04 18:48 Jason Gunthorpe
2022-08-05  3:26 ` pr-tracker-bot
2022-07-18 23:12 Jason Gunthorpe
2022-07-19  0:19 ` pr-tracker-bot
2022-06-30 12:57 Jason Gunthorpe
2022-06-30 17:28 ` pr-tracker-bot
2022-05-26 14:46 Jason Gunthorpe
2022-05-27  4:17 ` pr-tracker-bot
2022-05-06 16:01 Jason Gunthorpe
2022-05-06 16:57 ` Linus Torvalds
2022-05-06 17:06   ` Jason Gunthorpe
2022-05-06 16:58 ` pr-tracker-bot
2022-04-08 19:03 Jason Gunthorpe
2022-04-09  4:39 ` pr-tracker-bot
2022-03-23 19:54 Jason Gunthorpe
2022-03-25  2:47 ` pr-tracker-bot
2022-02-25 21:16 Jason Gunthorpe
2022-02-25 22:15 ` pr-tracker-bot
2022-02-04 23:59 Jason Gunthorpe
2022-02-05  0:31 ` pr-tracker-bot
2022-01-13 18:53 Jason Gunthorpe
2022-01-13 19:19 ` pr-tracker-bot
2022-01-07  1:15 Jason Gunthorpe
2022-01-07  3:05 ` pr-tracker-bot
2021-12-21  1:25 Jason Gunthorpe
2021-12-21  1:37 ` pr-tracker-bot
2021-12-09 21:07 Jason Gunthorpe
2021-12-09 21:23 ` pr-tracker-bot
2021-11-19 17:19 Jason Gunthorpe
2021-11-19 19:46 ` pr-tracker-bot
2021-11-03 13:43 Jason Gunthorpe
2021-11-03 16:01 ` pr-tracker-bot
2021-10-27 12:49 Jason Gunthorpe
2021-10-27 17:44 ` pr-tracker-bot
2021-09-30  1:02 Jason Gunthorpe
2021-09-30 21:34 ` pr-tracker-bot
2021-09-08 23:40 Jason Gunthorpe
2021-09-09 18:54 ` pr-tracker-bot
2021-09-01 23:41 Jason Gunthorpe
2021-09-02 22:42 ` pr-tracker-bot
2021-08-24 14:23 Jason Gunthorpe
2021-08-24 17:01 ` pr-tracker-bot
2021-08-06 13:30 Jason Gunthorpe
2021-08-06 18:27 ` pr-tracker-bot
2021-07-26 23:10 Jason Gunthorpe
2021-07-27 21:17 ` pr-tracker-bot
2021-07-01  1:30 Jason Gunthorpe
2021-07-01 21:58 ` pr-tracker-bot
2021-06-10 12:37 Jason Gunthorpe
2021-06-10 19:18 ` pr-tracker-bot
2021-05-20 14:37 Jason Gunthorpe
2021-05-20 16:47 ` pr-tracker-bot
2021-04-30 16:55 Jason Gunthorpe
2021-04-30 17:01 ` Jason Gunthorpe
2021-05-01 17:20 ` pr-tracker-bot
2021-04-08 19:51 Jason Gunthorpe
2021-04-08 23:40 ` pr-tracker-bot
2021-03-25 18:04 Jason Gunthorpe
2021-03-25 19:13 ` pr-tracker-bot
2021-03-05 23:35 Jason Gunthorpe
2021-03-06  1:35 ` pr-tracker-bot
2021-02-22 14:59 Jason Gunthorpe
2021-02-22 18:37 ` pr-tracker-bot
2021-01-28 14:46 Jason Gunthorpe
2021-01-15 19:21 Jason Gunthorpe
2021-01-15 23:35 ` pr-tracker-bot
2020-12-16 17:57 Jason Gunthorpe
2020-12-16 21:51 ` pr-tracker-bot
2020-12-10 15:50 Jason Gunthorpe
2020-12-10 19:11 ` pr-tracker-bot
2020-11-27 14:00 Jason Gunthorpe
2020-11-27 21:21 ` pr-tracker-bot
2020-11-19 19:29 Jason Gunthorpe
2020-11-19 23:00 ` pr-tracker-bot
2020-11-05 18:16 Jason Gunthorpe
2020-11-05 20:21 ` pr-tracker-bot
2020-10-29 18:41 Jason Gunthorpe
2020-10-29 18:53 ` Linus Torvalds
2020-10-29 19:00 ` pr-tracker-bot
2020-10-16 18:51 Jason Gunthorpe
2020-10-17 18:21 ` Linus Torvalds
2020-10-17 18:42   ` Jason Gunthorpe
2020-10-17 18:22 ` pr-tracker-bot
2020-09-25 12:57 Jason Gunthorpe
2020-09-25 17:48 ` pr-tracker-bot
2020-09-10 23:38 Jason Gunthorpe
2020-09-11 18:37 ` pr-tracker-bot
2020-08-21 14:06 Jason Gunthorpe
2020-08-21 17:16 ` pr-tracker-bot
2020-08-06 18:27 Jason Gunthorpe
2020-08-07  1:55 ` pr-tracker-bot
2020-07-31 15:17 Jason Gunthorpe
2020-07-31 16:45 ` pr-tracker-bot
2020-07-24 17:47 Jason Gunthorpe
2020-07-24 21:40 ` pr-tracker-bot
2020-07-10 17:58 Jason Gunthorpe
2020-07-10 22:10 ` pr-tracker-bot
2020-06-25 17:56 Jason Gunthorpe
2020-06-25 20:15 ` pr-tracker-bot
2020-06-04 19:51 Jason Gunthorpe
2020-06-05 21:15 ` pr-tracker-bot
2020-05-29 14:15 Jason Gunthorpe
2020-05-29 21:10 ` pr-tracker-bot
2020-05-15 19:13 Jason Gunthorpe
2020-05-15 20:15 ` pr-tracker-bot
2020-04-28 19:59 Jason Gunthorpe
2020-04-28 20:40 ` pr-tracker-bot
2020-04-01 23:01 Jason Gunthorpe
2020-04-02  2:05 ` pr-tracker-bot
2020-03-26 17:31 Jason Gunthorpe
2020-03-26 17:50 ` pr-tracker-bot
2020-03-08  0:07 Jason Gunthorpe
2020-03-08  2:00 ` pr-tracker-bot
2020-02-15 21:32 Jason Gunthorpe
2020-02-16  1:20 ` pr-tracker-bot
2020-01-31 15:16 Jason Gunthorpe
2020-01-31 23:10 ` pr-tracker-bot
2020-01-10  2:16 Jason Gunthorpe
2020-01-11 14:45 ` pr-tracker-bot
2019-11-27  0:24 Jason Gunthorpe
2019-11-27 18:19 ` Linus Torvalds
2019-11-27 19:23   ` Jason Gunthorpe
2019-11-27 18:45 ` pr-tracker-bot
2019-11-14 15:16 Jason Gunthorpe
2019-11-14 16:55 ` pr-tracker-bot
2019-10-31 18:22 Jason Gunthorpe
2019-11-01 17:10 ` pr-tracker-bot
2019-10-09 14:28 Jason Gunthorpe
2019-10-09 19:30 ` pr-tracker-bot
2019-09-19 16:34 Jason Gunthorpe
2019-09-21 17:40 ` pr-tracker-bot
2019-07-30 12:15 Jason Gunthorpe
2019-07-30 20:40 ` pr-tracker-bot
2019-07-15 15:26 Jason Gunthorpe
2019-07-16  4:35 ` pr-tracker-bot
2019-06-06 20:14 Jason Gunthorpe
2019-06-07 16:45 ` pr-tracker-bot
2019-05-15  0:46 Jason Gunthorpe
2019-05-15  4:05 ` pr-tracker-bot
2019-05-09 13:37 Jason Gunthorpe
2019-05-09 16:25 ` pr-tracker-bot
2019-04-28 11:52 Jason Gunthorpe
2019-04-28 16:59 ` Linus Torvalds
2019-04-28 23:49   ` Jason Gunthorpe
2019-04-29  0:09     ` Linus Torvalds
2019-04-30 12:53       ` Jason Gunthorpe
2019-04-28 18:05 ` pr-tracker-bot
2019-04-29  6:09 ` Heiko Carstens
2019-04-29  8:40   ` Jason Gunthorpe
2019-04-29  9:00     ` Michal Kubecek
2019-04-29  9:19       ` Leon Romanovsky
2019-04-29 15:42     ` Doug Ledford
2019-04-29 16:29       ` Doug Ledford
2019-04-10 18:46 Jason Gunthorpe
2019-04-10 19:55 ` pr-tracker-bot
2019-03-18  1:04 Jason Gunthorpe
2019-03-19 18:15 ` pr-tracker-bot
2019-03-07  1:34 Jason Gunthorpe
2019-03-10  1:40 ` pr-tracker-bot
2019-02-21 23:07 Jason Gunthorpe
2019-02-22 18:40 ` pr-tracker-bot
2019-02-01 17:41 Jason Gunthorpe
2019-02-01 18:45 ` pr-tracker-bot
2019-01-18  3:56 Jason Gunthorpe
2019-01-18  5:35 ` pr-tracker-bot
2019-01-04  5:00 Jason Gunthorpe
2019-01-06  2:40 ` pr-tracker-bot
2018-12-24 22:16 Jason Gunthorpe
2018-12-29  1:30 ` pr-tracker-bot
2018-11-29 22:52 Jason Gunthorpe
2018-10-25 21:21 Jason Gunthorpe
2018-10-26 14:50 ` Linus Torvalds
2018-09-27 18:24 Jason Gunthorpe
2018-09-27 20:17 ` Greg Kroah-Hartman
2018-09-10 23:04 Jason Gunthorpe
2018-08-22 21:44 Jason Gunthorpe
2018-08-16 21:57 Jason Gunthorpe
2018-08-17 19:31 ` Linus Torvalds
2018-08-17 19:44   ` Linus Torvalds
2018-08-17 20:50     ` Linus Torvalds
2018-08-17 21:16       ` Jason Gunthorpe
2018-08-17 23:56         ` Linus Torvalds
2018-08-17 20:15   ` Jason Gunthorpe
2018-08-17 20:27     ` Linus Torvalds
2018-08-17 21:27       ` Jason Gunthorpe
2018-08-03 16:11 Jason Gunthorpe
2018-07-13 17:13 Jason Gunthorpe
2018-06-20 21:00 Jason Gunthorpe
2018-06-06 21:42 Jason Gunthorpe
2018-06-01 16:47 Jason Gunthorpe
2018-05-24 20:51 Jason Gunthorpe
2018-04-06 16:05 Jason Gunthorpe
2018-05-16 17:39 ` Eugene Syromiatnikov
2018-05-16 17:49   ` Jason Gunthorpe
2018-05-16 18:01     ` Eugene Syromiatnikov
2018-03-29 19:17 Jason Gunthorpe
2018-03-20 23:17 Jason Gunthorpe
2018-01-31 17:47 Jason Gunthorpe
     [not found] ` <20180131174735.GA18568-uk2M96/98Pc@public.gmane.org>
2018-01-31 20:11   ` Linus Torvalds
     [not found]     ` <CA+55aFxmnW-iu1Na3QC8Ci8Q_Qdfn2Ak_9wDB6+A564R=Xn9Ag-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2018-01-31 21:04       ` Jason Gunthorpe
     [not found]         ` <20180131210457.GE23352-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2018-02-01 19:12           ` Linus Torvalds
     [not found]             ` <CA+55aFxySLoCHcmZgx2PiF6jEazVOSy=2idccRsWqOzmyK2gaw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2018-02-01 20:33               ` Jason Gunthorpe
2017-12-28 21:03 Jason Gunthorpe
2017-12-16 17:12 Jason Gunthorpe

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=20250123171458.GA1053362@nvidia.com \
    --to=jgg@nvidia.com \
    --cc=leonro@nvidia.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rdma@vger.kernel.org \
    --cc=torvalds@linux-foundation.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.