diff options
author | Mikulas Patocka <mpatocka@redhat.com> | 2008-08-15 04:15:19 -0400 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2008-10-09 02:56:03 -0400 |
commit | b8b3e16cfe6435d961f6aaebcfd52a1ff2a988c5 (patch) | |
tree | 5832535c112c0504590256cb8a0bcabc6e282be3 /include | |
parent | 6a421c1dc94b12923294a359822346f12492de5e (diff) |
block: drop virtual merging accounting
Remove virtual merge accounting.
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/bio.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include/linux/bio.h b/include/linux/bio.h index 33c3947d61e9..894d16ce0020 100644 --- a/include/linux/bio.h +++ b/include/linux/bio.h | |||
@@ -26,21 +26,8 @@ | |||
26 | 26 | ||
27 | #ifdef CONFIG_BLOCK | 27 | #ifdef CONFIG_BLOCK |
28 | 28 | ||
29 | /* Platforms may set this to teach the BIO layer about IOMMU hardware. */ | ||
30 | #include <asm/io.h> | 29 | #include <asm/io.h> |
31 | 30 | ||
32 | #if defined(BIO_VMERGE_MAX_SIZE) && defined(BIO_VMERGE_BOUNDARY) | ||
33 | #define BIOVEC_VIRT_START_SIZE(x) (bvec_to_phys(x) & (BIO_VMERGE_BOUNDARY - 1)) | ||
34 | #define BIOVEC_VIRT_OVERSIZE(x) ((x) > BIO_VMERGE_MAX_SIZE) | ||
35 | #else | ||
36 | #define BIOVEC_VIRT_START_SIZE(x) 0 | ||
37 | #define BIOVEC_VIRT_OVERSIZE(x) 0 | ||
38 | #endif | ||
39 | |||
40 | #ifndef BIO_VMERGE_BOUNDARY | ||
41 | #define BIO_VMERGE_BOUNDARY 0 | ||
42 | #endif | ||
43 | |||
44 | #define BIO_DEBUG | 31 | #define BIO_DEBUG |
45 | 32 | ||
46 | #ifdef BIO_DEBUG | 33 | #ifdef BIO_DEBUG |
@@ -240,8 +227,6 @@ static inline void *bio_data(struct bio *bio) | |||
240 | ((bvec_to_phys((vec1)) + (vec1)->bv_len) == bvec_to_phys((vec2))) | 227 | ((bvec_to_phys((vec1)) + (vec1)->bv_len) == bvec_to_phys((vec2))) |
241 | #endif | 228 | #endif |
242 | 229 | ||
243 | #define BIOVEC_VIRT_MERGEABLE(vec1, vec2) \ | ||
244 | ((((bvec_to_phys((vec1)) + (vec1)->bv_len) | bvec_to_phys((vec2))) & (BIO_VMERGE_BOUNDARY - 1)) == 0) | ||
245 | #define __BIO_SEG_BOUNDARY(addr1, addr2, mask) \ | 230 | #define __BIO_SEG_BOUNDARY(addr1, addr2, mask) \ |
246 | (((addr1) | (mask)) == (((addr2) - 1) | (mask))) | 231 | (((addr1) | (mask)) == (((addr2) - 1) | (mask))) |
247 | #define BIOVEC_SEG_BOUNDARY(q, b1, b2) \ | 232 | #define BIOVEC_SEG_BOUNDARY(q, b1, b2) \ |