diff options
author | FUJITA Tomonori <tomof@acm.org> | 2008-02-05 01:28:14 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-05 12:44:12 -0500 |
commit | 59fc67dedb46c29442989e52af39da67aea52512 (patch) | |
tree | d75eb8ce840e1f9d2a2e2dd939e28396750186fb /drivers/pci/pci.c | |
parent | d22a6966b8029913fac37d078ab2403898d94c63 (diff) |
iommu sg merging: PCI: add dma segment boundary support
This adds PCI's accessor for segment_boundary_mask in device_dma_parameters.
The default segment_boundary is set to 0xffffffff, same to the block layer's
default value (and the scsi mid layer uses the same value).
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Cc: James Bottomley <James.Bottomley@steeleye.com>
Cc: Jens Axboe <jens.axboe@oracle.com>
Cc: Greg KH <greg@kroah.com>
Cc: Jeff Garzik <jeff@garzik.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/pci/pci.c')
-rw-r--r-- | drivers/pci/pci.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index be97090ddf32..ae3df46eaabf 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c | |||
@@ -1459,6 +1459,14 @@ int pci_set_dma_max_seg_size(struct pci_dev *dev, unsigned int size) | |||
1459 | EXPORT_SYMBOL(pci_set_dma_max_seg_size); | 1459 | EXPORT_SYMBOL(pci_set_dma_max_seg_size); |
1460 | #endif | 1460 | #endif |
1461 | 1461 | ||
1462 | #ifndef HAVE_ARCH_PCI_SET_DMA_SEGMENT_BOUNDARY | ||
1463 | int pci_set_dma_seg_boundary(struct pci_dev *dev, unsigned long mask) | ||
1464 | { | ||
1465 | return dma_set_seg_boundary(&dev->dev, mask); | ||
1466 | } | ||
1467 | EXPORT_SYMBOL(pci_set_dma_seg_boundary); | ||
1468 | #endif | ||
1469 | |||
1462 | /** | 1470 | /** |
1463 | * pcix_get_max_mmrbc - get PCI-X maximum designed memory read byte count | 1471 | * pcix_get_max_mmrbc - get PCI-X maximum designed memory read byte count |
1464 | * @dev: PCI device to query | 1472 | * @dev: PCI device to query |