Re: [PATCH v6 01/13] PCI/P2PDMA: Support peer-to-peer memory

From: Bjorn Helgaas
Date: Thu Sep 20 2018 - 18:38:34 EST


On Wed, Sep 12, 2018 at 06:11:44PM -0600, Logan Gunthorpe wrote:
> Some PCI devices may have memory mapped in a BAR space that's
> intended for use in peer-to-peer transactions. In order to enable
> such transactions the memory must be registered with ZONE_DEVICE pages
> so it can be used by DMA interfaces in existing drivers.
>
> Add an interface for other subsystems to find and allocate chunks of P2P
> memory as necessary to facilitate transfers between two PCI peers:
>
> int pci_p2pdma_add_client();
> struct pci_dev *pci_p2pmem_find();
> void *pci_alloc_p2pmem();
>
> The new interface requires a driver to collect a list of client devices
> involved in the transaction with the pci_p2pmem_add_client*() functions
> then call pci_p2pmem_find() to obtain any suitable P2P memory. Once
> this is done the list is bound to the memory and the calling driver is
> free to add and remove clients as necessary (adding incompatible clients
> will fail). With a suitable p2pmem device, memory can then be
> allocated with pci_alloc_p2pmem() for use in DMA transactions.
>
> Depending on hardware, using peer-to-peer memory may reduce the bandwidth
> of the transfer but can significantly reduce pressure on system memory.
> This may be desirable in many cases: for example a system could be designed
> with a small CPU connected to a PCIe switch by a small number of lanes
> which would maximize the number of lanes available to connect to NVMe
> devices.
>
> The code is designed to only utilize the p2pmem device if all the devices
> involved in a transfer are behind the same PCI bridge. This is because we
> have no way of knowing whether peer-to-peer routing between PCIe Root Ports
> is supported (PCIe r4.0, sec 1.3.1). Additionally, the benefits of P2P
> transfers that go through the RC is limited to only reducing DRAM usage
> and, in some cases, coding convenience. The PCI-SIG may be exploring
> adding a new capability bit to advertise whether this is possible for
> future hardware.
>
> This commit includes significant rework and feedback from Christoph
> Hellwig.
>
> Signed-off-by: Christoph Hellwig <hch@xxxxxx>
> Signed-off-by: Logan Gunthorpe <logang@xxxxxxxxxxxx>

Acked-by: Bjorn Helgaas <bhelgaas@xxxxxxxxxx> # PCI pieces

Mostly trivial comments below. Thanks for persevering with this!

> ---
> drivers/pci/Kconfig | 17 +
> drivers/pci/Makefile | 1 +
> drivers/pci/p2pdma.c | 761 +++++++++++++++++++++++++++++++++++++
> include/linux/memremap.h | 5 +
> include/linux/mm.h | 18 +
> include/linux/pci-p2pdma.h | 102 +++++
> include/linux/pci.h | 4 +
> 7 files changed, 908 insertions(+)
> create mode 100644 drivers/pci/p2pdma.c
> create mode 100644 include/linux/pci-p2pdma.h

> +#define pr_fmt(fmt) "pci-p2pdma: " fmt

Is pr_fmt() actually used anywhere?

> + * Check if a PCI bridge has it's ACS redirection bits set to redirect P2P

s/it's/its/

> + * TLPs upstream via ACS. Returns 1 if the packets will be redirected
> + * upstream, 0 otherwise.
> + */
> +static int pci_bridge_has_acs_redir(struct pci_dev *dev)

Most of your code uses "pdev" for a struct pci_dev *.

> +static void seq_buf_print_bus_devfn(struct seq_buf *buf, struct pci_dev *dev)
> +{
> + if (!buf)
> + return;
> +
> + seq_buf_printf(buf, "%04x:%02x:%02x.%x;", pci_domain_nr(dev->bus),
> + dev->bus->number, PCI_SLOT(dev->devfn),
> + PCI_FUNC(dev->devfn));

dev vs pdev?
I think you could use pci_name() here (see pci_setup_device()).

> + * In the case where two devices are connected to different PCIe switches,
> + * this function will still return a positive distance as long as both
> + * switches evenutally have a common upstream bridge. Note this covers

s/evenutally/eventually/

> +static int upstream_bridge_distance_warn(struct pci_dev *provider,
> + struct pci_dev *client)
> +{
> + struct seq_buf acs_list;
> + int ret;
> +
> + seq_buf_init(&acs_list, kmalloc(PAGE_SIZE, GFP_KERNEL), PAGE_SIZE);

Check for kmalloc() failure here? Failure would mean acs_list->buffer is
NULL, but I gave up following the chain to see how that would be handled.

> +
> + ret = upstream_bridge_distance(provider, client, &acs_list);
> + if (ret == -2) {
> + pci_warn(client, "cannot be used for peer-to-peer DMA as ACS redirect is set between the client and provider\n");

Maybe include pci_name(provider) in these messages?

> + /* Drop final semicolon */
> + acs_list.buffer[acs_list.len-1] = 0;
> + pci_warn(client, "to disable ACS redirect for this path, add the kernel parameter: pci=disable_acs_redir=%s\n",
> + acs_list.buffer);
> +
> + } else if (ret < 0) {
> + pci_warn(client, "cannot be used for peer-to-peer DMA as the client and provider do not share an upstream bridge\n");

> + * pci_p2pdma_assign_provider - Check compatibily (as per pci_p2pdma_distance)

s/compatibily/compatibility/

> +struct pci_dev *pci_p2pmem_find(struct list_head *clients)
> +{
> + struct pci_dev *pdev = NULL;
> + struct pci_p2pdma_client *pos;
> + int distance;
> + int closest_distance = INT_MAX;
> + struct pci_dev **closest_pdevs;
> + int dev_cnt = 0;
> + const int max_devs = PAGE_SIZE / sizeof(*closest_pdevs);
> + int i;
> +
> + closest_pdevs = kmalloc(PAGE_SIZE, GFP_KERNEL);

Check for kmalloc() failure?

> +++ b/include/linux/pci-p2pdma.h
> @@ -0,0 +1,102 @@
> +/* SPDX-License-Identifier: GPL-2.0 */
> +/*
> + * PCI Peer 2 Peer DMA support.
> + *
> + * Copyright (c) 2016-2018, Logan Gunthorpe
> + * Copyright (c) 2016-2017, Microsemi Corporation
> + * Copyright (c) 2017, Christoph Hellwig
> + * Copyright (c) 2018, Eideticom Inc.
> + *

Spurious blank line.

> + */