[NETFILTER]: ctnetlink: add support for internal tcp connection tracking flags handling
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-sparc / scatterlist.h
bloba4fcf9ac964910bf65c98a553c5395e62a2d7023
1 /* $Id: scatterlist.h,v 1.8 2001/12/17 07:05:15 davem Exp $ */
2 #ifndef _SPARC_SCATTERLIST_H
3 #define _SPARC_SCATTERLIST_H
5 #include <linux/types.h>
7 struct scatterlist {
8 struct page *page;
9 unsigned int offset;
11 unsigned int length;
13 __u32 dvma_address; /* A place to hang host-specific addresses at. */
14 __u32 dvma_length;
17 #define sg_dma_address(sg) ((sg)->dvma_address)
18 #define sg_dma_len(sg) ((sg)->dvma_length)
20 #define ISA_DMA_THRESHOLD (~0UL)
22 #endif /* !(_SPARC_SCATTERLIST_H) */