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

