From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roland Dreier Subject: [PATCH] Add loglevels to all printk()s Date: Wed, 29 Nov 2006 14:11:01 -0800 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: To: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: kvm-devel-bounces-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org Errors-To: kvm-devel-bounces-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org List-Id: kvm.vger.kernel.org Here's a trivial patch that adds log levels to all printks. This avoids ugly things like Message from syslogd@roland-xeon-2 at Wed Nov 29 14:01:01 2006 ... roland-xeon-2 kernel: [81842.565619] msrs: 6 popping up in a console on my system when starting a guest. --- --- kvm-5/kernel/vmx.c 2006-11-28 05:35:33.000000000 -0800 +++ kvm-5.new/kernel/vmx.c 2006-11-29 13:43:18.000000000 -0800 @@ -1153,7 +1153,7 @@ vcpu->guest_msrs[j] = vcpu->host_msrs[j]; ++vcpu->nmsrs; } - printk("msrs: %d\n", vcpu->nmsrs); + printk(KERN_DEBUG "kvm: msrs: %d\n", vcpu->nmsrs); nr_good_msrs = vcpu->nmsrs - NR_BAD_MSRS; vmcs_writel(VM_ENTRY_MSR_LOAD_ADDR, --- kvm-5/kernel/svm.c 2006-11-28 05:10:47.000000000 -0800 +++ kvm-5.new/kernel/svm.c 2006-11-29 13:43:56.000000000 -0800 @@ -990,7 +990,7 @@ addr_mask = io_adress(vcpu, _in, &kvm_run->io.address); if (!addr_mask) { - printk("%s: get io address failed\n", __FUNCTION__); + printk(KERN_DEBUG "%s: get io address failed\n", __FUNCTION__); return 1; } @@ -1030,7 +1030,7 @@ static int task_switch_interception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run) { - printk("%s: task swiche is unsupported\n", __FUNCTION__); + printk(KERN_DEBUG "%s: task swiche is unsupported\n", __FUNCTION__); kvm_run->exit_reason = KVM_EXIT_UNKNOWN; return 0; } ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV