Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to do dma of multiple frames to send a big frame( jumbo ). I am able to send normal frame ( of size 1500 ). I need some doubts on dma.

  1. What is real advantage of dma_map_single() over other api. We could do everything with dma_map_page , right ?

  2. Suppose we need to transmit a big frame( jumbo ) in a driver , and i have stored this frame in multiple buffers. These buffers are not contiguous in physical memory or in virtual memory. But these buffers are in kernel space. How can we send it as a one frame. Should we use scatter-gather dma ?. Is this possible with other dma_api ?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.