scatterlist.h 573 B

12345678910111213141516
  1. #ifndef _ASM_IA64_SCATTERLIST_H
  2. #define _ASM_IA64_SCATTERLIST_H
  3. #include <asm-generic/scatterlist.h>
  4. /*
  5. * It used to be that ISA_DMA_THRESHOLD had something to do with the
  6. * DMA-limits of ISA-devices. Nowadays, its only remaining use (apart
  7. * from the aha1542.c driver, which isn't 64-bit clean anyhow) is to
  8. * tell the block-layer (via BLK_BOUNCE_ISA) what the max. physical
  9. * address of a page is that is allocated with GFP_DMA. On IA-64,
  10. * that's 4GB - 1.
  11. */
  12. #define ISA_DMA_THRESHOLD 0xffffffff
  13. #define ARCH_HAS_SG_CHAIN
  14. #endif /* _ASM_IA64_SCATTERLIST_H */