From patchwork Thu Sep 15 15:05:51 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Michael S. Tsirkin" X-Patchwork-Id: 9334059 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 61E4860839 for ; Thu, 15 Sep 2016 15:26:33 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 54E442990A for ; Thu, 15 Sep 2016 15:26:33 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 497E829965; Thu, 15 Sep 2016 15:26:33 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id D7BA72990A for ; Thu, 15 Sep 2016 15:26:32 +0000 (UTC) Received: from localhost ([::1]:35493 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bkYYZ-0000KW-PX for patchwork-qemu-devel@patchwork.kernel.org; Thu, 15 Sep 2016 11:26:31 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56546) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bkYEi-0000NB-HN for qemu-devel@nongnu.org; Thu, 15 Sep 2016 11:06:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bkYEb-0008Kv-UX for qemu-devel@nongnu.org; Thu, 15 Sep 2016 11:05:59 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49724) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bkYEb-0008Ke-OF for qemu-devel@nongnu.org; Thu, 15 Sep 2016 11:05:53 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 195AD8553D; Thu, 15 Sep 2016 15:05:53 +0000 (UTC) Received: from redhat.com (unused [10.10.50.147] (may be forged)) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with SMTP id u8FF5pOm004936; Thu, 15 Sep 2016 11:05:52 -0400 Date: Thu, 15 Sep 2016 18:05:51 +0300 From: "Michael S. Tsirkin" To: qemu-devel@nongnu.org Message-ID: <1473951909-13185-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Disposition: inline X-Mutt-Fcc: =sent X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Thu, 15 Sep 2016 15:05:53 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH] kvm/apic: drop debugging X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Paolo Bonzini , "Dr . David Alan Gilbert" , Eduardo Habkost , Richard Henderson Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP commit 78d6a05d2f69cbfa6e95f0a4a24a2c934969913b ("x86/lapic: Load LAPIC state at post_load") has some debugging leftovers. Drop them. Cc: Dr. David Alan Gilbert Signed-off-by: Michael S. Tsirkin --- hw/i386/kvm/apic.c | 1 - 1 file changed, 1 deletion(-) 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); }