Files
linux-apfs/include/asm-s390/scatterlist.h
T

20 lines
383 B
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
#ifndef _ASMS390_SCATTERLIST_H
#define _ASMS390_SCATTERLIST_H
struct scatterlist {
2007-10-22 20:01:06 +02:00
#ifdef CONFIG_DEBUG_SG
unsigned long sg_magic;
#endif
2007-10-22 19:57:20 +02:00
unsigned long page_link;
2005-04-16 15:20:36 -07:00
unsigned int offset;
unsigned int length;
};
#ifdef __s390x__
#define ISA_DMA_THRESHOLD (0xffffffffffffffffUL)
#else
#define ISA_DMA_THRESHOLD (0xffffffffUL)
#endif
#endif /* _ASMS390X_SCATTERLIST_H */