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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ASMS390X_SCATTERLIST_H
  2. #define _ASMS390X_SCATTERLIST_H
  3. struct scatterlist {
  4.     /* This will disappear in 2.5.x */
  5.     char *address;
  6.     /* These two are only valid if ADDRESS member of this
  7.      * struct is NULL.
  8.      */
  9.     struct page *page;
  10.     unsigned int offset;
  11.     unsigned int length;
  12. };
  13. #define ISA_DMA_THRESHOLD (0xffffffffffffffff)
  14. #endif /* _ASMS390X_SCATTERLIST_H */