scatterlist.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _PPC64_SCATTERLIST_H
  2. #define _PPC64_SCATTERLIST_H
  3. /*
  4.  * Copyright (C) 2001 PPC64 Team, IBM Corp
  5.  *
  6.  * This program is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License
  8.  * as published by the Free Software Foundation; either version
  9.  * 2 of the License, or (at your option) any later version.
  10.  */
  11. #include <linux/types.h>
  12. #include <asm/dma.h>
  13. struct scatterlist {
  14. char *address; /* Virtual addr data is to be transferred to */
  15. struct page *page; /* Location for highmem page, if any */
  16. unsigned int offset; /* for highmem, page offset */
  17. unsigned int length;
  18. /* For TCE support */
  19. u32 dma_address;
  20. u32 dma_length;
  21. };
  22. #define ISA_DMA_THRESHOLD (~0UL)
  23. #endif /* !(_PPC64_SCATTERLIST_H) */