diff options
| author | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2010-12-17 20:19:42 -0500 |
|---|---|---|
| committer | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2011-07-18 18:43:28 -0400 |
| commit | ffc78767f2ac5b8007aeb366e748c8dd8b8bc3a3 (patch) | |
| tree | 34ba123bd64d94a790a98fd218c4516792e76f94 | |
| parent | bc7fe1d977734efe6059d6d537b439135ad4a34c (diff) | |
xen/multicalls: disable MC_DEBUG
It's useful - and probably should be a config - but its very heavyweight,
especially with the tracing stuff to help sort out problems.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
| -rw-r--r-- | arch/x86/xen/multicalls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/xen/multicalls.c b/arch/x86/xen/multicalls.c index 7074c7ebfff2..3001162c4bce 100644 --- a/arch/x86/xen/multicalls.c +++ b/arch/x86/xen/multicalls.c | |||
| @@ -30,7 +30,7 @@ | |||
| 30 | 30 | ||
| 31 | #define MC_BATCH 32 | 31 | #define MC_BATCH 32 |
| 32 | 32 | ||
| 33 | #define MC_DEBUG 1 | 33 | #define MC_DEBUG 0 |
| 34 | 34 | ||
| 35 | #define MC_ARGS (MC_BATCH * 16) | 35 | #define MC_ARGS (MC_BATCH * 16) |
| 36 | 36 | ||
| @@ -132,7 +132,7 @@ struct multicall_space __xen_mc_entry(size_t args) | |||
| 132 | } | 132 | } |
| 133 | 133 | ||
| 134 | ret.mc = &b->entries[b->mcidx]; | 134 | ret.mc = &b->entries[b->mcidx]; |
| 135 | #ifdef MC_DEBUG | 135 | #if MC_DEBUG |
| 136 | b->caller[b->mcidx] = __builtin_return_address(0); | 136 | b->caller[b->mcidx] = __builtin_return_address(0); |
| 137 | #endif | 137 | #endif |
| 138 | b->mcidx++; | 138 | b->mcidx++; |
