Linux Documentation
 help / color / mirror / Atom feed
* [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class
@ 2026-09-10 11:31 Leon Romanovsky
  2026-09-10 11:31 ` [PATCH v5 01/18] PCI/P2PDMA: Document pdev->p2pdma lifetime rules Leon Romanovsky
                   ` (17 more replies)
  0 siblings, 18 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:31 UTC (permalink / raw)
  To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
	Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
	Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
	Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
	Sumit Semwal, Christian König
  Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
	linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm,
	Matt Evans

PCI P2PDMA applies Request and Completion Redirect throughout both paths.
This misclassifies asymmetric and nested switches, and reports one answer
for every kind of TLP.

Three ACS controls act on TLP attributes the client chooses rather than
on the topology: Translation Blocking and Direct Translated P2P act on
a Request's Address Type, and Completion Redirect skips Completions carrying
Relaxed Ordering.

Evaluate each direction at the path divergence, decide every class from the
one walk, expose the provider to dma-buf importers, and let mlx5 ask rather
than assume.

Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
Changes in v5:
- Rebase on the posted fixes.
- Dropped tags from changed patches.
- Remove Egress Control Vector interpretation and coverage.
- Keep enabled Egress Control conservative as a Request redirect.
- Use pci_dbg()/dev_dbg() for diagnostics and drop the "debug" prefix.
- Removed code comments from "Document the pdev->p2pdma lifetime and RCU
  rules" patch and reduced description to actual lifetime explanation.
- Added note that Linux assumes that TLPs are in strict-ordering and
  untranslated.
- Added code to calculate p2p paths per-TLP type.
- Converted mlx5 to use that new proposed API.
- Link to https://patch.msgid.link/20260821-fix-p2p-acs-v4-0-v4-0-94426b96de73@nvidia.com

Changes in v4:
- Reject ACS Violations and unreadable routing state instead of treating
  them as host-bridge redirects
- Added Tested-by tags from Tushar Dave
- Added support to asymmetric ACS routing
- Limited redirect checks to the two ports at the path divergence
- Added standalone ACS routing diagnostics for hardware retesting
- Dropped " PCI: Account for Direct Translated P2P in ACS isolation checks" patch
- Link to v3: https://patch.msgid.link/20260811-fix-p2p-acs-v3-0-efc488ee7c03@nvidia.com

Changes in v3:
- Fixed pci_p2pdma_add_resource() error unwinding
- Made pdev->p2pdma teardown wait unconditionally for RCU readers
- Restricted pci_p2pmem_find_many() to pool-backed providers
- Documented the pdev->p2pdma lifetime and RCU rules
- Fixed calc_map_type_and_dist() handling of the verbose argument
- Required the ACS port and target to share a bus before indexing the
  Egress Control Vector
- Gave pci_acs_enabled() and pci_acs_path_enabled() a scope, so the ACS
  Direct Translated P2P rule no longer stops pci_enable_pasid() from
  enabling PASID
- Dropped "Report ACS ports when the paths share no upstream bridge":
  the mapping type cannot change without a shared upstream bridge, so
  the pci=disable_acs_redir= hint was not actionable there and the ACS
  walk only cost config space reads
- Folded the Request Redirect rule into pci_acs_rr_ineffective(), so
  pci_acs_flags_enabled() and the Intel SPT PCH quirk share one copy
- Renamed pci_acs_egress_ctrl_set() to pci_acs_egress_ctrl_is_set(), it
  reads the bit rather than setting it
- Reworded the blocked-path warning: ACS may also leave the direct route
  indeterminate rather than blocked
- Added KUnit coverage for the shared-bus guard, a device with no ACS
  capability and an unreadable ACS Control register
- Added the missing Fixes: tags, a second one on the
  pci_p2pdma_add_resource() unwinding fix (the dangling devres action
  dates to f58ef9d1d135) and one on the Egress Control isolation change
- Link to v2: https://patch.msgid.link/20260806-fix-p2p-acs-v2-0-0cec14812965@nvidia.com

Changes in v2:
- Added Logan's ROB tags
- Added commas in Documentation patch
- Link to v1: https://patch.msgid.link/20260802-fix-p2p-acs-v1-0-a7c5eb64fff6@nvidia.com

---
Leon Romanovsky (18):
      PCI/P2PDMA: Document pdev->p2pdma lifetime rules
      PCI/P2PDMA: Document the TLP attribute assumptions
      PCI/P2PDMA: Derive routing from directional ACS controls
      PCI: Reject unreadable ACS controls in isolation checks
      PCI/P2PDMA: Evaluate ACS controls at the path divergence
      PCI/P2PDMA: Document directional ACS routing
      PCI/P2PDMA: Collect the path's ACS controls before deciding
      PCI/P2PDMA: Answer routing per TLP class
      PCI/P2PDMA: Route Relaxed Ordering Completions directly
      PCI/P2PDMA: Reject Translated Requests blocked by Translation Blocking
      PCI/P2PDMA: Route Translated Requests under Direct Translated P2P
      PCI/P2PDMA: Log detailed ACS routing diagnostics
      PCI/P2PDMA: Add KUnit tests for the ACS routing decisions
      PCI/P2PDMA: Test the ACS P2P routing walk
      PCI: Add KUnit coverage for ACS isolation checks
      PCI/P2PDMA: Document TLP-class routing
      dma-buf: Let importers ask how peer-to-peer traffic is routed
      RDMA/mlx5: Ask P2PDMA whether ATS takes a direct peer-to-peer route

 Documentation/admin-guide/kernel-parameters.txt   |   9 +-
 Documentation/driver-api/pci/p2pdma.rst           |  69 +++
 drivers/dma-buf/dma-buf-mapping.c                 |  41 +-
 drivers/dma-buf/dma-buf.c                         |   1 +
 drivers/infiniband/core/uverbs.h                  |   1 -
 drivers/infiniband/core/uverbs_std_types_dmabuf.c |   7 +-
 drivers/infiniband/hw/mlx5/mlx5_ib.h              |  36 +-
 drivers/infiniband/hw/mlx5/mr.c                   |  40 ++
 drivers/pci/Kconfig                               |  15 +
 drivers/pci/Makefile                              |   1 +
 drivers/pci/p2pdma.c                              | 637 +++++++++++++++++++---
 drivers/pci/pci.c                                 |   7 +-
 drivers/pci/pci.h                                 |  26 +
 drivers/pci/pci_acs_test.c                        | 609 +++++++++++++++++++++
 drivers/pci/quirks.c                              |   6 +-
 drivers/vfio/pci/vfio_pci_dmabuf.c                |   8 +-
 include/linux/dma-buf-mapping.h                   |   4 +-
 include/linux/dma-buf.h                           |   5 +
 include/linux/pci-p2pdma.h                        |  57 +-
 19 files changed, 1440 insertions(+), 139 deletions(-)
---
base-commit: 08dbfad3f5040f5bdb6c529da20d6d4e81fefd72
change-id: 20260821-fix-p2p-acs-v4-0-e72455e3a261
prerequisite-message-id: <20260830-batch-p2p-fixes-v1-0-5044e8dfbe2e@nvidia.com>
prerequisite-patch-id: 6b25c7fcf164cdfc14e9fac5b908d97fcf6509d7
prerequisite-patch-id: 0d083c281001365aae4b35544cf28891a6ab9a96
prerequisite-patch-id: bfd9dabf271f3cc9a3a61f46387d20c20311363d
prerequisite-patch-id: fad0275efc722830fc591509506c0a5e4f581073
prerequisite-patch-id: 0c83bee688fec1f6d1564654df7c630fa6a4a978

Best regards,
--  
Leon Romanovsky <leonro@nvidia.com>


^ permalink raw reply	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2026-09-11 10:24 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
2026-09-10 11:31 ` [PATCH v5 01/18] PCI/P2PDMA: Document pdev->p2pdma lifetime rules Leon Romanovsky
2026-09-10 11:31 ` [PATCH v5 02/18] PCI/P2PDMA: Document the TLP attribute assumptions Leon Romanovsky
2026-09-10 11:31 ` [PATCH v5 03/18] PCI/P2PDMA: Derive routing from directional ACS controls Leon Romanovsky
2026-09-10 11:31 ` [PATCH v5 04/18] PCI: Reject unreadable ACS controls in isolation checks Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 05/18] PCI/P2PDMA: Evaluate ACS controls at the path divergence Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 06/18] PCI/P2PDMA: Document directional ACS routing Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 07/18] PCI/P2PDMA: Collect the path's ACS controls before deciding Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 08/18] PCI/P2PDMA: Answer routing per TLP class Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 09/18] PCI/P2PDMA: Route Relaxed Ordering Completions directly Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 10/18] PCI/P2PDMA: Reject Translated Requests blocked by Translation Blocking Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 11/18] PCI/P2PDMA: Route Translated Requests under Direct Translated P2P Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 12/18] PCI/P2PDMA: Log detailed ACS routing diagnostics Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 13/18] PCI/P2PDMA: Add KUnit tests for the ACS routing decisions Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 14/18] PCI/P2PDMA: Test the ACS P2P routing walk Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 15/18] PCI: Add KUnit coverage for ACS isolation checks Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 16/18] PCI/P2PDMA: Document TLP-class routing Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 17/18] dma-buf: Let importers ask how peer-to-peer traffic is routed Leon Romanovsky
2026-09-11  7:51   ` Christian König
2026-09-11 10:24     ` Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 18/18] RDMA/mlx5: Ask P2PDMA whether ATS takes a direct peer-to-peer route Leon Romanovsky

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox