diff options
author | Muli Ben-Yehuda <muli@il.ibm.com> | 2006-09-26 04:52:33 -0400 |
---|---|---|
committer | Andi Kleen <andi@basil.nowhere.org> | 2006-09-26 04:52:33 -0400 |
commit | 4ccf4ae3144360ab9c00d0b53427f43369287bfb (patch) | |
tree | 243d32f93601ba6063809e1961fa222df701b5f9 /arch | |
parent | 796e4390e0378e1e57c033349610cfc741696a3d (diff) |
[PATCH] remove tce_cache_blast_stress()
tce_cache_blast_stress was useful during bringup to stress the IOMMU's
cache flushing. Now that we quiesce DMAs on every cache flush, using
_stress() brings the machine down to its knees once you put it under
load. Remove this debug / bringup code that isn't useful anymore
completely.
Signed-off-by: Muli Ben-Yehuda <muli@il.ibm.com>
Signed-off-by: Jon Mason <jdmason@us.ibm.com>
Signed-off-by: Andi Kleen <ak@suse.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86_64/kernel/pci-calgary.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/arch/x86_64/kernel/pci-calgary.c b/arch/x86_64/kernel/pci-calgary.c index 7c43cb0f71a3..cd866135e4ef 100644 --- a/arch/x86_64/kernel/pci-calgary.c +++ b/arch/x86_64/kernel/pci-calgary.c | |||
@@ -129,11 +129,6 @@ static void tce_cache_blast(struct iommu_table *tbl); | |||
129 | #ifdef CONFIG_IOMMU_DEBUG | 129 | #ifdef CONFIG_IOMMU_DEBUG |
130 | int debugging __read_mostly = 1; | 130 | int debugging __read_mostly = 1; |
131 | 131 | ||
132 | static inline void tce_cache_blast_stress(struct iommu_table *tbl) | ||
133 | { | ||
134 | tce_cache_blast(tbl); | ||
135 | } | ||
136 | |||
137 | static inline unsigned long verify_bit_range(unsigned long* bitmap, | 132 | static inline unsigned long verify_bit_range(unsigned long* bitmap, |
138 | int expected, unsigned long start, unsigned long end) | 133 | int expected, unsigned long start, unsigned long end) |
139 | { | 134 | { |
@@ -153,10 +148,6 @@ static inline unsigned long verify_bit_range(unsigned long* bitmap, | |||
153 | #else /* debugging is disabled */ | 148 | #else /* debugging is disabled */ |
154 | int debugging __read_mostly = 0; | 149 | int debugging __read_mostly = 0; |
155 | 150 | ||
156 | static inline void tce_cache_blast_stress(struct iommu_table *tbl) | ||
157 | { | ||
158 | } | ||
159 | |||
160 | static inline unsigned long verify_bit_range(unsigned long* bitmap, | 151 | static inline unsigned long verify_bit_range(unsigned long* bitmap, |
161 | int expected, unsigned long start, unsigned long end) | 152 | int expected, unsigned long start, unsigned long end) |
162 | { | 153 | { |
@@ -289,8 +280,6 @@ static void __iommu_free(struct iommu_table *tbl, dma_addr_t dma_addr, | |||
289 | } | 280 | } |
290 | 281 | ||
291 | __clear_bit_string(tbl->it_map, entry, npages); | 282 | __clear_bit_string(tbl->it_map, entry, npages); |
292 | |||
293 | tce_cache_blast_stress(tbl); | ||
294 | } | 283 | } |
295 | 284 | ||
296 | static void iommu_free(struct iommu_table *tbl, dma_addr_t dma_addr, | 285 | static void iommu_free(struct iommu_table *tbl, dma_addr_t dma_addr, |