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

Linux/Unix编程

开发平台:

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. unsigned int locked : 1; /* If set, pages has been locked */
  34. struct page **  maplist;
  35. struct buffer_head ** bh;
  36. unsigned long * blocks;
  37. /* Dynamic state for IO completion: */
  38. atomic_t io_count; /* IOs still in progress */
  39. int errno; /* Status of completed IO */
  40. void (*end_io) (struct kiobuf *); /* Completion callback */
  41. wait_queue_head_t wait_queue;
  42. };
  43. /* mm/memory.c */
  44. int map_user_kiobuf(int rw, struct kiobuf *, unsigned long va, size_t len);
  45. void unmap_kiobuf(struct kiobuf *iobuf);
  46. int lock_kiovec(int nr, struct kiobuf *iovec[], int wait);
  47. int unlock_kiovec(int nr, struct kiobuf *iovec[]);
  48. void mark_dirty_kiobuf(struct kiobuf *iobuf, int bytes);
  49. /* fs/iobuf.c */
  50. void end_kio_request(struct kiobuf *, int);
  51. void simple_wakeup_kiobuf(struct kiobuf *);
  52. int alloc_kiovec(int nr, struct kiobuf **);
  53. void free_kiovec(int nr, struct kiobuf **);
  54. int expand_kiobuf(struct kiobuf *, int);
  55. void kiobuf_wait_for_io(struct kiobuf *);
  56. extern int alloc_kiobuf_bhs(struct kiobuf *);
  57. extern void free_kiobuf_bhs(struct kiobuf *);
  58. /* fs/buffer.c */
  59. int brw_kiovec(int rw, int nr, struct kiobuf *iovec[], 
  60.    kdev_t dev, unsigned long b[], int size);
  61. #endif /* __LINUX_IOBUF_H */