public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [HEADS UP] planned change to <asm-generic/dma-mapping.h> will cause arch breakage
@ 2003-04-25 11:40 Christoph Hellwig
  0 siblings, 0 replies; only message in thread
From: Christoph Hellwig @ 2003-04-25 11:40 UTC (permalink / raw)
  To: linux-arch, linux-kernel

To allow including <linux/dma-mapping.h> in generic code the default
implemtation of the dma-mapping API in terms of the PCI API will have
to go away.  What does this mean for your architecture?

 - If your architecture doesn't use <asm-generic/dma-mapping.h>
   (arm, i386, parisc):  Nothing.
 - If your architecture doesn't support PCI (cris, s390. um):
   Nothing, except that your arch won't break anymore if somsone
   includes dma-mapping.h in generic code.  But it would be cool to move
   over your dma-capable busses to the dma-mapping API...
 - Everyone else:  Unless you properly implement the dma-mapping in
   your architecture the dma_* APIs won't work anymore for you.
   The simplest way to get support for it on pci busses is to change
   your implementation of the pci_* dma functions to the dma_* prototypes
   and add the following to their top:

	struct pci_dev *pdev = to_pci_dev(dev);

   and maybe

	BUG_ON(dev->bus != &pci_bus_type);

   Of course it would be much nicer if you could add support for the
   dma-mapping API to your other dma-capable busses..

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-04-25 11:28 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-04-25 11:40 [HEADS UP] planned change to <asm-generic/dma-mapping.h> will cause arch breakage Christoph Hellwig

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