scatterlist.h 319 B

12345678910111213141516
  1. #ifndef _ASMS390_SCATTERLIST_H
  2. #define _ASMS390_SCATTERLIST_H
  3. struct scatterlist {
  4. struct page *page;
  5. unsigned int offset;
  6. unsigned int length;
  7. };
  8. #ifdef __s390x__
  9. #define ISA_DMA_THRESHOLD (0xffffffffffffffffUL)
  10. #else
  11. #define ISA_DMA_THRESHOLD (0xffffffffUL)
  12. #endif
  13. #endif /* _ASMS390X_SCATTERLIST_H */