diff mbox

kvm/apic: drop debugging

Message ID 1473951909-13185-1-git-send-email-mst@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Michael S. Tsirkin Sept. 15, 2016, 3:05 p.m. UTC
commit 78d6a05d2f69cbfa6e95f0a4a24a2c934969913b
    ("x86/lapic: Load LAPIC state at post_load")
has some debugging leftovers.

Drop them.

Cc: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 hw/i386/kvm/apic.c | 1 -
 1 file changed, 1 deletion(-)

Comments

Eduardo Habkost Sept. 16, 2016, 12:20 p.m. UTC | #1
On Thu, Sep 15, 2016 at 06:05:51PM +0300, Michael S. Tsirkin wrote:
> commit 78d6a05d2f69cbfa6e95f0a4a24a2c934969913b
>     ("x86/lapic: Load LAPIC state at post_load")
> has some debugging leftovers.
> 
> Drop them.
> 
> Cc: Dr. David Alan Gilbert <dgilbert@redhat.com>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

I have applied it to my tree because I plan to send a pull
request soon, but I believe Paolo can merge it too in case he's
going to send a pull request before I do.
diff mbox

Patch

diff --git a/hw/i386/kvm/apic.c b/hw/i386/kvm/apic.c
index 5d140b9..feb0002 100644
--- a/hw/i386/kvm/apic.c
+++ b/hw/i386/kvm/apic.c
@@ -141,7 +141,6 @@  static void kvm_apic_put(void *data)
 
 static void kvm_apic_post_load(APICCommonState *s)
 {
-    fprintf(stderr, "%s: Yeh\n", __func__);
     run_on_cpu(CPU(s->cpu), kvm_apic_put, s);
 }