bio.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. /*
  2. * 2.5 block I/O model
  3. *
  4. * Copyright (C) 2001 Jens Axboe <axboe@suse.de>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public Licens
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-
  18. */
  19. #ifndef __LINUX_BIO_H
  20. #define __LINUX_BIO_H
  21. #include <linux/highmem.h>
  22. #include <linux/mempool.h>
  23. #include <linux/ioprio.h>
  24. #ifdef CONFIG_BLOCK
  25. /* Platforms may set this to teach the BIO layer about IOMMU hardware. */
  26. #include <asm/io.h>
  27. #if defined(BIO_VMERGE_MAX_SIZE) && defined(BIO_VMERGE_BOUNDARY)
  28. #define BIOVEC_VIRT_START_SIZE(x) (bvec_to_phys(x) & (BIO_VMERGE_BOUNDARY - 1))
  29. #define BIOVEC_VIRT_OVERSIZE(x) ((x) > BIO_VMERGE_MAX_SIZE)
  30. #else
  31. #define BIOVEC_VIRT_START_SIZE(x) 0
  32. #define BIOVEC_VIRT_OVERSIZE(x) 0
  33. #endif
  34. #ifndef BIO_VMERGE_BOUNDARY
  35. #define BIO_VMERGE_BOUNDARY 0
  36. #endif
  37. #define BIO_DEBUG
  38. #ifdef BIO_DEBUG
  39. #define BIO_BUG_ON BUG_ON
  40. #else
  41. #define BIO_BUG_ON
  42. #endif
  43. #define BIO_MAX_PAGES 256
  44. #define BIO_MAX_SIZE (BIO_MAX_PAGES << PAGE_CACHE_SHIFT)
  45. #define BIO_MAX_SECTORS (BIO_MAX_SIZE >> 9)
  46. /*
  47. * was unsigned short, but we might as well be ready for > 64kB I/O pages
  48. */
  49. struct bio_vec {
  50. struct page *bv_page;
  51. unsigned int bv_len;
  52. unsigned int bv_offset;
  53. };
  54. struct bio_set;
  55. struct bio;
  56. typedef int (bio_end_io_t) (struct bio *, unsigned int, int);
  57. typedef void (bio_destructor_t) (struct bio *);
  58. /*
  59. * main unit of I/O for the block layer and lower layers (ie drivers and
  60. * stacking drivers)
  61. */
  62. struct bio {
  63. sector_t bi_sector; /* device address in 512 byte
  64. sectors */
  65. struct bio *bi_next; /* request queue link */
  66. struct block_device *bi_bdev;
  67. unsigned long bi_flags; /* status, command, etc */
  68. unsigned long bi_rw; /* bottom bits READ/WRITE,
  69. * top bits priority
  70. */
  71. unsigned short bi_vcnt; /* how many bio_vec's */
  72. unsigned short bi_idx; /* current index into bvl_vec */
  73. /* Number of segments in this BIO after
  74. * physical address coalescing is performed.
  75. */
  76. unsigned short bi_phys_segments;
  77. /* Number of segments after physical and DMA remapping
  78. * hardware coalescing is performed.
  79. */
  80. unsigned short bi_hw_segments;
  81. unsigned int bi_size; /* residual I/O count */
  82. /*
  83. * To keep track of the max hw size, we account for the
  84. * sizes of the first and last virtually mergeable segments
  85. * in this bio
  86. */
  87. unsigned int bi_hw_front_size;
  88. unsigned int bi_hw_back_size;
  89. unsigned int bi_max_vecs; /* max bvl_vecs we can hold */
  90. struct bio_vec *bi_io_vec; /* the actual vec list */
  91. bio_end_io_t *bi_end_io;
  92. atomic_t bi_cnt; /* pin count */
  93. void *bi_private;
  94. bio_destructor_t *bi_destructor; /* destructor */
  95. };
  96. /*
  97. * bio flags
  98. */
  99. #define BIO_UPTODATE 0 /* ok after I/O completion */
  100. #define BIO_RW_BLOCK 1 /* RW_AHEAD set, and read/write would block */
  101. #define BIO_EOF 2 /* out-out-bounds error */
  102. #define BIO_SEG_VALID 3 /* nr_hw_seg valid */
  103. #define BIO_CLONED 4 /* doesn't own data */
  104. #define BIO_BOUNCED 5 /* bio is a bounce bio */
  105. #define BIO_USER_MAPPED 6 /* contains user pages */
  106. #define BIO_EOPNOTSUPP 7 /* not supported */
  107. #define bio_flagged(bio, flag) ((bio)->bi_flags & (1 << (flag)))
  108. /*
  109. * top 4 bits of bio flags indicate the pool this bio came from
  110. */
  111. #define BIO_POOL_BITS (4)
  112. #define BIO_POOL_OFFSET (BITS_PER_LONG - BIO_POOL_BITS)
  113. #define BIO_POOL_MASK (1UL << BIO_POOL_OFFSET)
  114. #define BIO_POOL_IDX(bio) ((bio)->bi_flags >> BIO_POOL_OFFSET)
  115. /*
  116. * bio bi_rw flags
  117. *
  118. * bit 0 -- read (not set) or write (set)
  119. * bit 1 -- rw-ahead when set
  120. * bit 2 -- barrier
  121. * bit 3 -- fail fast, don't want low level driver retries
  122. * bit 4 -- synchronous I/O hint: the block layer will unplug immediately
  123. */
  124. #define BIO_RW 0
  125. #define BIO_RW_AHEAD 1
  126. #define BIO_RW_BARRIER 2
  127. #define BIO_RW_FAILFAST 3
  128. #define BIO_RW_SYNC 4
  129. #define BIO_RW_META 5
  130. /*
  131. * upper 16 bits of bi_rw define the io priority of this bio
  132. */
  133. #define BIO_PRIO_SHIFT (8 * sizeof(unsigned long) - IOPRIO_BITS)
  134. #define bio_prio(bio) ((bio)->bi_rw >> BIO_PRIO_SHIFT)
  135. #define bio_prio_valid(bio) ioprio_valid(bio_prio(bio))
  136. #define bio_set_prio(bio, prio) do { \
  137. WARN_ON(prio >= (1 << IOPRIO_BITS)); \
  138. (bio)->bi_rw &= ((1UL << BIO_PRIO_SHIFT) - 1); \
  139. (bio)->bi_rw |= ((unsigned long) (prio) << BIO_PRIO_SHIFT); \
  140. } while (0)
  141. /*
  142. * various member access, note that bio_data should of course not be used
  143. * on highmem page vectors
  144. */
  145. #define bio_iovec_idx(bio, idx) (&((bio)->bi_io_vec[(idx)]))
  146. #define bio_iovec(bio) bio_iovec_idx((bio), (bio)->bi_idx)
  147. #define bio_page(bio) bio_iovec((bio))->bv_page
  148. #define bio_offset(bio) bio_iovec((bio))->bv_offset
  149. #define bio_segments(bio) ((bio)->bi_vcnt - (bio)->bi_idx)
  150. #define bio_sectors(bio) ((bio)->bi_size >> 9)
  151. #define bio_cur_sectors(bio) (bio_iovec(bio)->bv_len >> 9)
  152. #define bio_data(bio) (page_address(bio_page((bio))) + bio_offset((bio)))
  153. #define bio_barrier(bio) ((bio)->bi_rw & (1 << BIO_RW_BARRIER))
  154. #define bio_sync(bio) ((bio)->bi_rw & (1 << BIO_RW_SYNC))
  155. #define bio_failfast(bio) ((bio)->bi_rw & (1 << BIO_RW_FAILFAST))
  156. #define bio_rw_ahead(bio) ((bio)->bi_rw & (1 << BIO_RW_AHEAD))
  157. #define bio_rw_meta(bio) ((bio)->bi_rw & (1 << BIO_RW_META))
  158. /*
  159. * will die
  160. */
  161. #define bio_to_phys(bio) (page_to_phys(bio_page((bio))) + (unsigned long) bio_offset((bio)))
  162. #define bvec_to_phys(bv) (page_to_phys((bv)->bv_page) + (unsigned long) (bv)->bv_offset)
  163. /*
  164. * queues that have highmem support enabled may still need to revert to
  165. * PIO transfers occasionally and thus map high pages temporarily. For
  166. * permanent PIO fall back, user is probably better off disabling highmem
  167. * I/O completely on that queue (see ide-dma for example)
  168. */
  169. #define __bio_kmap_atomic(bio, idx, kmtype) \
  170. (kmap_atomic(bio_iovec_idx((bio), (idx))->bv_page, kmtype) + \
  171. bio_iovec_idx((bio), (idx))->bv_offset)
  172. #define __bio_kunmap_atomic(addr, kmtype) kunmap_atomic(addr, kmtype)
  173. /*
  174. * merge helpers etc
  175. */
  176. #define __BVEC_END(bio) bio_iovec_idx((bio), (bio)->bi_vcnt - 1)
  177. #define __BVEC_START(bio) bio_iovec_idx((bio), (bio)->bi_idx)
  178. /*
  179. * allow arch override, for eg virtualized architectures (put in asm/io.h)
  180. */
  181. #ifndef BIOVEC_PHYS_MERGEABLE
  182. #define BIOVEC_PHYS_MERGEABLE(vec1, vec2) \
  183. ((bvec_to_phys((vec1)) + (vec1)->bv_len) == bvec_to_phys((vec2)))
  184. #endif
  185. #define BIOVEC_VIRT_MERGEABLE(vec1, vec2) \
  186. ((((bvec_to_phys((vec1)) + (vec1)->bv_len) | bvec_to_phys((vec2))) & (BIO_VMERGE_BOUNDARY - 1)) == 0)
  187. #define __BIO_SEG_BOUNDARY(addr1, addr2, mask) \
  188. (((addr1) | (mask)) == (((addr2) - 1) | (mask)))
  189. #define BIOVEC_SEG_BOUNDARY(q, b1, b2) \
  190. __BIO_SEG_BOUNDARY(bvec_to_phys((b1)), bvec_to_phys((b2)) + (b2)->bv_len, (q)->seg_boundary_mask)
  191. #define BIO_SEG_BOUNDARY(q, b1, b2) \
  192. BIOVEC_SEG_BOUNDARY((q), __BVEC_END((b1)), __BVEC_START((b2)))
  193. #define bio_io_error(bio, bytes) bio_endio((bio), (bytes), -EIO)
  194. /*
  195. * drivers should not use the __ version unless they _really_ want to
  196. * run through the entire bio and not just pending pieces
  197. */
  198. #define __bio_for_each_segment(bvl, bio, i, start_idx) \
  199. for (bvl = bio_iovec_idx((bio), (start_idx)), i = (start_idx); \
  200. i < (bio)->bi_vcnt; \
  201. bvl++, i++)
  202. #define bio_for_each_segment(bvl, bio, i) \
  203. __bio_for_each_segment(bvl, bio, i, (bio)->bi_idx)
  204. /*
  205. * get a reference to a bio, so it won't disappear. the intended use is
  206. * something like:
  207. *
  208. * bio_get(bio);
  209. * submit_bio(rw, bio);
  210. * if (bio->bi_flags ...)
  211. * do_something
  212. * bio_put(bio);
  213. *
  214. * without the bio_get(), it could potentially complete I/O before submit_bio
  215. * returns. and then bio would be freed memory when if (bio->bi_flags ...)
  216. * runs
  217. */
  218. #define bio_get(bio) atomic_inc(&(bio)->bi_cnt)
  219. /*
  220. * A bio_pair is used when we need to split a bio.
  221. * This can only happen for a bio that refers to just one
  222. * page of data, and in the unusual situation when the
  223. * page crosses a chunk/device boundary
  224. *
  225. * The address of the master bio is stored in bio1.bi_private
  226. * The address of the pool the pair was allocated from is stored
  227. * in bio2.bi_private
  228. */
  229. struct bio_pair {
  230. struct bio bio1, bio2;
  231. struct bio_vec bv1, bv2;
  232. atomic_t cnt;
  233. int error;
  234. };
  235. extern struct bio_pair *bio_split(struct bio *bi, mempool_t *pool,
  236. int first_sectors);
  237. extern mempool_t *bio_split_pool;
  238. extern void bio_pair_release(struct bio_pair *dbio);
  239. extern struct bio_set *bioset_create(int, int);
  240. extern void bioset_free(struct bio_set *);
  241. extern struct bio *bio_alloc(gfp_t, int);
  242. extern struct bio *bio_alloc_bioset(gfp_t, int, struct bio_set *);
  243. extern void bio_put(struct bio *);
  244. extern void bio_free(struct bio *, struct bio_set *);
  245. extern void bio_endio(struct bio *, unsigned int, int);
  246. struct request_queue;
  247. extern int bio_phys_segments(struct request_queue *, struct bio *);
  248. extern int bio_hw_segments(struct request_queue *, struct bio *);
  249. extern void __bio_clone(struct bio *, struct bio *);
  250. extern struct bio *bio_clone(struct bio *, gfp_t);
  251. extern void bio_init(struct bio *);
  252. extern int bio_add_page(struct bio *, struct page *, unsigned int,unsigned int);
  253. extern int bio_add_pc_page(struct request_queue *, struct bio *, struct page *,
  254. unsigned int, unsigned int);
  255. extern int bio_get_nr_vecs(struct block_device *);
  256. extern struct bio *bio_map_user(struct request_queue *, struct block_device *,
  257. unsigned long, unsigned int, int);
  258. struct sg_iovec;
  259. extern struct bio *bio_map_user_iov(struct request_queue *,
  260. struct block_device *,
  261. struct sg_iovec *, int, int);
  262. extern void bio_unmap_user(struct bio *);
  263. extern struct bio *bio_map_kern(struct request_queue *, void *, unsigned int,
  264. gfp_t);
  265. extern void bio_set_pages_dirty(struct bio *bio);
  266. extern void bio_check_pages_dirty(struct bio *bio);
  267. extern void bio_release_pages(struct bio *bio);
  268. extern struct bio *bio_copy_user(struct request_queue *, unsigned long, unsigned int, int);
  269. extern int bio_uncopy_user(struct bio *);
  270. void zero_fill_bio(struct bio *bio);
  271. #ifdef CONFIG_HIGHMEM
  272. /*
  273. * remember to add offset! and never ever reenable interrupts between a
  274. * bvec_kmap_irq and bvec_kunmap_irq!!
  275. *
  276. * This function MUST be inlined - it plays with the CPU interrupt flags.
  277. */
  278. static inline char *bvec_kmap_irq(struct bio_vec *bvec, unsigned long *flags)
  279. {
  280. unsigned long addr;
  281. /*
  282. * might not be a highmem page, but the preempt/irq count
  283. * balancing is a lot nicer this way
  284. */
  285. local_irq_save(*flags);
  286. addr = (unsigned long) kmap_atomic(bvec->bv_page, KM_BIO_SRC_IRQ);
  287. BUG_ON(addr & ~PAGE_MASK);
  288. return (char *) addr + bvec->bv_offset;
  289. }
  290. static inline void bvec_kunmap_irq(char *buffer, unsigned long *flags)
  291. {
  292. unsigned long ptr = (unsigned long) buffer & PAGE_MASK;
  293. kunmap_atomic((void *) ptr, KM_BIO_SRC_IRQ);
  294. local_irq_restore(*flags);
  295. }
  296. #else
  297. #define bvec_kmap_irq(bvec, flags) (page_address((bvec)->bv_page) + (bvec)->bv_offset)
  298. #define bvec_kunmap_irq(buf, flags) do { *(flags) = 0; } while (0)
  299. #endif
  300. static inline char *__bio_kmap_irq(struct bio *bio, unsigned short idx,
  301. unsigned long *flags)
  302. {
  303. return bvec_kmap_irq(bio_iovec_idx(bio, idx), flags);
  304. }
  305. #define __bio_kunmap_irq(buf, flags) bvec_kunmap_irq(buf, flags)
  306. #define bio_kmap_irq(bio, flags) \
  307. __bio_kmap_irq((bio), (bio)->bi_idx, (flags))
  308. #define bio_kunmap_irq(buf,flags) __bio_kunmap_irq(buf, flags)
  309. #endif /* CONFIG_BLOCK */
  310. #endif /* __LINUX_BIO_H */