lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1369244582.2670.32.camel@bwh-desktop.uk.level5networks.com>
Date:	Wed, 22 May 2013 18:43:02 +0100
From:	Ben Hutchings <bhutchings@...arflare.com>
To:	Alex Williamson <alex.williamson@...hat.com>
CC:	<netdev@...r.kernel.org>, Daniel Pieczko <dpieczko@...arflare.com>,
	linux-net-drivers <linux-net-drivers@...arflare.com>
Subject: Re: [PATCH net-next 20/22] sfc: reuse pages to avoid DMA
 mapping/unmapping costs

On Wed, 2013-05-22 at 16:29 +0000, Alex Williamson wrote:
> Ben Hutchings <bhutchings <at> solarflare.com> writes:
> 
> > 
> > From:  Daniel Pieczko <dpieczko <at> solarflare.com>
> > 
> > On POWER systems, DMA mapping/unmapping operations are very expensive.
> > These changes reduce these costs by trying to reuse DMA mapped pages.
[...]
> > When an IOMMU is not present, the recycle ring can be small to reduce
> > memory usage, since DMA mapping operations are inexpensive.
> 
> I'm not sure I agree with the test for whether an IOMMU is present...
> 
> > diff --git a/drivers/net/ethernet/sfc/efx.c 
> b/drivers/net/ethernet/sfc/efx.c
> > index 1213af5..a70c458 100644
> > --- a/drivers/net/ethernet/sfc/efx.c
> > +++ b/drivers/net/ethernet/sfc/efx.c
> [snip]
> > +void efx_init_rx_recycle_ring(struct efx_nic *efx,
> > +			      struct efx_rx_queue *rx_queue)
> > +{
> > +	unsigned int bufs_in_recycle_ring, page_ring_size;
> > +
> > +	/* Set the RX recycle ring size */
> > +#ifdef CONFIG_PPC64
> > +	bufs_in_recycle_ring = EFX_RECYCLE_RING_SIZE_IOMMU;
> > +#else
> > +	if (efx->pci_dev->dev.iommu_group)
> > +		bufs_in_recycle_ring = EFX_RECYCLE_RING_SIZE_IOMMU;
> > +	else
> > +		bufs_in_recycle_ring = EFX_RECYCLE_RING_SIZE_NOIOMMU;
> > +#endif /* CONFIG_PPC64 */
> 
> Testing for an iommu_group is more of a test of (is an iommu present && does 
> it support the iommu api && does it support iommu groups && is the device 
> isolatable).  That doesn't seem like what we want here (besides, it's kind 
> of a hacky sidestep to the API which would suggest using iommu_group_get/put 
> here).

Since we don't try to use the iommu_group itself, those functions don't
seem to be appropriate.

> We could use iommu_present(&pci_bus_type), which reduces the test to (iommu 
> present && supports iommu api (ie. iommu_ops)).

That's the test we use OOT for older kernel version.  However I advised
Daniel, apparently wrongly, that testing iommu_group would now be more
accurate.

> Better, but I think you 
> really care about an iommu present with dma_ops.  I think we can assume that 
> if an iommu supports iommu_ops, it supports dma_ops, but that still leaves 
> out iommus that do not support iommu_ops.  Do we care about those?

Unfortunately the pSeries IOMMU code doesn't support iommu_ops yet, and
that is precisely the case where DMA map/unmap operations are most
expensive (that we've seen).

> Furthermore, what about cases where an iommu is present, but unused?  For 
> example, iommu=pt (passthrough).  I'd think the driver would want to behave 
> as it would in the non-iommu case in that configuration.  Anyway, I don't 
> think iommu_group is the correct test here.  Thanks,

Right.  The real question the driver should ask is: 'will DMA-mapping/
unmapping for this device be significantly slower than DMA-syncing?'  We
don't yet have a way to ask that; maybe that should be added to the DMA
API.

Ben.

-- 
Ben Hutchings, Staff Engineer, Solarflare
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ