aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/extable.c
diff options
context:
space:
mode:
authorkaf24@localhost.localdomain <kaf24@localhost.localdomain>2006-10-27 23:47:30 +0100
committerkaf24@localhost.localdomain <kaf24@localhost.localdomain>2006-10-27 23:47:30 +0100
commitdf82928d90e66486d0f1ac390e71405fa6172bbf (patch)
tree913f24498948e2516c22f3de2d5bcc213b98d751 /xen/arch/x86/extable.c
parent9bbcb18fab4edcd8341fd0fecc888b8e886b30e8 (diff)
downloadxen-df82928d90e66486d0f1ac390e71405fa6172bbf.tar.gz
xen-df82928d90e66486d0f1ac390e71405fa6172bbf.tar.bz2
xen-df82928d90e66486d0f1ac390e71405fa6172bbf.zip
[XEN] Some cleanups to the log-level stuff. Largely this
is a rename and slight interface change to DPRINTK (now replaced by dprintk() and gdprintk()). Also shuffle some log-level definitions around and tweak the semantics of the upper threshold. Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/arch/x86/extable.c')
-rw-r--r--xen/arch/x86/extable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/arch/x86/extable.c b/xen/arch/x86/extable.c
index 642e7f5912..c578c835f4 100644
--- a/xen/arch/x86/extable.c
+++ b/xen/arch/x86/extable.c
@@ -74,7 +74,7 @@ search_pre_exception_table(struct cpu_user_regs *regs)
unsigned long addr = (unsigned long)regs->eip;
unsigned long fixup = search_one_table(
__start___pre_ex_table, __stop___pre_ex_table-1, addr);
- DPRINTK(XENLOG_INFO "Pre-exception: %p -> %p\n", _p(addr), _p(fixup));
+ dprintk(XENLOG_INFO, "Pre-exception: %p -> %p\n", _p(addr), _p(fixup));
#ifdef PERF_COUNTERS
if ( fixup )
perfc_incrc(exception_fixed);