iobuf.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * iobuf.h
  3.  *
  4.  * Defines the structures used to track abstract kernel-space io buffers.
  5.  *
  6.  */
  7. #ifndef __LINUX_IOBUF_H
  8. #define __LINUX_IOBUF_H
  9. #include <linux/mm.h>
  10. #include <linux/init.h>
  11. #include <linux/wait.h>
  12. #include <asm/atomic.h>
  13. /*
  14.  * The kiobuf structure describes a physical set of pages reserved
  15.  * locked for IO.  The reference counts on each page will have been
  16.  * incremented, and the flags field will indicate whether or not we have
  17.  * pre-locked all of the pages for IO.
  18.  *
  19.  * kiobufs may be passed in arrays to form a kiovec, but we must
  20.  * preserve the property that no page is present more than once over the
  21.  * entire iovec.
  22.  */
  23. #define KIO_MAX_ATOMIC_IO 512 /* in kb */
  24. #define KIO_STATIC_PAGES (KIO_MAX_ATOMIC_IO / (PAGE_SIZE >> 10) + 1)
  25. #define KIO_MAX_SECTORS (KIO_MAX_ATOMIC_IO * 2)
  26. /* The main kiobuf struct used for all our IO! */
  27. struct kiobuf 
  28. {
  29. int nr_pages; /* Pages actually referenced */
  30. int array_len; /* Space in the allocated lists */
  31. int offset; /* Offset to start of valid data */
  32. int length; /* Number of valid bytes of data */
  33. /* Keep separate track of the physical addresses and page
  34.  * structs involved.  If we do IO to a memory-mapped device
  35.  * region, there won't necessarily be page structs defined for
  36.  * every address. */
  37. struct page ** maplist;
  38. unsigned int locked : 1; /* If set, pages has been locked */
  39. /* Always embed enough struct pages for atomic IO */
  40. struct page * map_array[KIO_STATIC_PAGES];
  41. struct buffer_head * bh[KIO_MAX_SECTORS];
  42. unsigned long blocks[KIO_MAX_SECTORS];
  43. /* Dynamic state for IO completion: */
  44. atomic_t io_count; /* IOs still in progress */
  45. int errno; /* Status of completed IO */
  46. void (*end_io) (struct kiobuf *); /* Completion callback */
  47. wait_queue_head_t wait_queue;
  48. };
  49. /* mm/memory.c */
  50. int map_user_kiobuf(int rw, struct kiobuf *, unsigned long va, size_t len);
  51. void unmap_kiobuf(struct kiobuf *iobuf);
  52. int lock_kiovec(int nr, struct kiobuf *iovec[], int wait);
  53. int unlock_kiovec(int nr, struct kiobuf *iovec[]);
  54. void mark_dirty_kiobuf(struct kiobuf *iobuf, int bytes);
  55. /* fs/iobuf.c */
  56. void end_kio_request(struct kiobuf *, int);
  57. void simple_wakeup_kiobuf(struct kiobuf *);
  58. int alloc_kiovec(int nr, struct kiobuf **);
  59. void free_kiovec(int nr, struct kiobuf **);
  60. int expand_kiobuf(struct kiobuf *, int);
  61. void kiobuf_wait_for_io(struct kiobuf *);
  62. extern int alloc_kiobuf_bhs(struct kiobuf *);
  63. extern void free_kiobuf_bhs(struct kiobuf *);
  64. /* fs/buffer.c */
  65. int brw_kiovec(int rw, int nr, struct kiobuf *iovec[], 
  66.    kdev_t dev, unsigned long b[], int size);
  67. #endif /* __LINUX_IOBUF_H */