https://github.com/torvalds/linux
Raw File
Tip revision: 55b637c6a003a8c4850b41a2c2fd6942d8a7f530 authored by Linus Torvalds on 19 May 2007, 04:06:17 UTC
Linux v2.6.22-rc2
Tip revision: 55b637c
scatterlist.h
#ifndef _ASMS390_SCATTERLIST_H
#define _ASMS390_SCATTERLIST_H

struct scatterlist {
    struct page *page;
    unsigned int offset;
    unsigned int length;
};

#ifdef __s390x__
#define ISA_DMA_THRESHOLD (0xffffffffffffffffUL)
#else
#define ISA_DMA_THRESHOLD (0xffffffffUL)
#endif

#endif /* _ASMS390X_SCATTERLIST_H */
back to top