scatterlist.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ASM_PARISC_SCATTERLIST_H
  2. #define _ASM_PARISC_SCATTERLIST_H
  3. struct scatterlist {
  4. char *  address;    /* Location data is to be transferred to */
  5. unsigned int length;
  6. /* an IOVA can be 64-bits on some PA-Risc platforms. */
  7. dma_addr_t iova; /* I/O Virtual Address */
  8. __u32      iova_length; /* bytes mapped */
  9. };
  10. #define sg_dma_address(sg) ((sg)->iova)
  11. #define sg_dma_len(sg)     ((sg)->iova_length)
  12. #define ISA_DMA_THRESHOLD (~0UL)
  13. #endif /* _ASM_PARISC_SCATTERLIST_H */