Skip to content

Commit

Permalink
x86: remove dead BIO_VMERGE_BOUNDARY definition
Browse files Browse the repository at this point in the history
Impact: cleanup, remove dead code

The block layer dropped the virtual merge feature
(b8b3e16).

BIO_VMERGE_BOUNDARY definition is meaningless now.

Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Acked-by: Jens Axboe <jens.axboe@oracle.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
FUJITA Tomonori authored and Ingo Molnar committed Dec 3, 2008
1 parent 6083aa4 commit 181de82
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 10 deletions.
2 changes: 0 additions & 2 deletions arch/x86/include/asm/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,6 @@ static inline void writeq(__u64 val, volatile void __iomem *addr)
#define readq readq
#define writeq writeq

extern int iommu_bio_merge;

#ifdef CONFIG_X86_32
# include "io_32.h"
#else
Expand Down
2 changes: 0 additions & 2 deletions arch/x86/include/asm/io_64.h
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,6 @@ void memset_io(volatile void __iomem *a, int b, size_t c);

#define flush_write_buffers()

#define BIO_VMERGE_BOUNDARY iommu_bio_merge

/*
* Convert a virtual cached pointer to an uncached pointer
*/
Expand Down
6 changes: 0 additions & 6 deletions arch/x86/kernel/pci-dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@ int no_iommu __read_mostly;
/* Set this to 1 if there is a HW IOMMU in the system */
int iommu_detected __read_mostly = 0;

/* This tells the BIO block layer to assume merging. Default to off
because we cannot guarantee merging later. */
int iommu_bio_merge __read_mostly = 0;
EXPORT_SYMBOL(iommu_bio_merge);

dma_addr_t bad_dma_address __read_mostly = 0;
EXPORT_SYMBOL(bad_dma_address);

Expand Down Expand Up @@ -189,7 +184,6 @@ static __init int iommu_setup(char *p)
}

if (!strncmp(p, "biomerge", 8)) {
iommu_bio_merge = 4096;
iommu_merge = 1;
force_iommu = 1;
}
Expand Down

0 comments on commit 181de82

Please sign in to comment.