On Mon, Oct 01, 2007 at 01:10:59PM +0100, veerasena reddy wrote:
dma_cache_* were never documented. They respresent the earliest attempt
at coming up with an API that enables portable drivers and it has a few
shortcomings and like so many early things it was never formally documented,
so don't expect any well defined semantics. The functions never got
formally retired probably because it somehow managed to stay under the
radar.
Any drivers should use the APIs documented in Documentation/DMA-API.txt
only. The almost equivalent operation for dma_cache_* would be
dma_sync_single and dma_sync_sg.
Don't even dream about using dma_cache_* for anything but DMA coherency.
They're all internal low level APIs which know nothing about Linux's
virtual memory system.
Anyway, it would be much easier to help you if we knew what you are trying
to achieve with these functions.
Ralf
-