direct-io.hg
changeset 13450:912f8af36878
[IA64] tidy up vcpu_set_itc error message
This patch enhances the error message in question in two minor ways
* typo fix: one -> once
* Print the entire message at once, otherwise it
seems to end up geting interlaced with other dom0 kernel
messages on the console (on my system at least).
Signed-Off-By: Simon Horman <horms@verge.net.au>
This patch enhances the error message in question in two minor ways
* typo fix: one -> once
* Print the entire message at once, otherwise it
seems to end up geting interlaced with other dom0 kernel
messages on the console (on my system at least).
Signed-Off-By: Simon Horman <horms@verge.net.au>
author | awilliam@xenbuild2.aw |
---|---|
date | Tue Jan 02 16:42:09 2007 -0700 (2007-01-02) |
parents | f69a329a4778 |
children | 613ccf4ca46b |
files | xen/arch/ia64/xen/vcpu.c |
line diff
1.1 --- a/xen/arch/ia64/xen/vcpu.c Tue Jan 02 16:39:42 2007 -0700 1.2 +++ b/xen/arch/ia64/xen/vcpu.c Tue Jan 02 16:42:09 2007 -0700 1.3 @@ -1207,8 +1207,8 @@ IA64FAULT vcpu_set_itc(VCPU * vcpu, u64 1.4 #ifdef DISALLOW_SETTING_ITC_FOR_NOW 1.5 static int did_print; 1.6 if (!did_print) { 1.7 - printk("vcpu_set_itc: Setting ar.itc is currently disabled\n"); 1.8 - printk("(this message is only displayed one)\n"); 1.9 + printk("vcpu_set_itc: Setting ar.itc is currently disabled " 1.10 + "(this message is only displayed once)\n"); 1.11 did_print = 1; 1.12 } 1.13 #else