From patchwork Thu Jun 7 02:02:20 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 163450 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 594D8B6FAC for ; Thu, 7 Jun 2012 12:02:55 +1000 (EST) Received: from localhost ([::1]:58184 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ScS3p-0002yi-1o for incoming@patchwork.ozlabs.org; Wed, 06 Jun 2012 22:02:53 -0400 Received: from eggs.gnu.org ([208.118.235.92]:44415) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ScS3a-0002w8-0Y for qemu-devel@nongnu.org; Wed, 06 Jun 2012 22:02:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ScS3Y-00082U-F9 for qemu-devel@nongnu.org; Wed, 06 Jun 2012 22:02:37 -0400 Received: from mail-pz0-f45.google.com ([209.85.210.45]:54817) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ScS3Y-00082I-6d for qemu-devel@nongnu.org; Wed, 06 Jun 2012 22:02:36 -0400 Received: by dadv2 with SMTP id v2so168316dad.4 for ; Wed, 06 Jun 2012 19:02:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=+0GkarQ4pjKqaDakHsiSINsL3Pq+8qJb5Nc6N3AL1a0=; b=ouxY8Zl96fYipHyosjVlN/WNjW3md4xjY9tO0qnJatBmGcriflHWKYGAN0SOna3dD/ rGR65GNBDgnTSgv9natE6uQmt8cdXlEB9KORioyXUZeN+VxjA05lNu8zkNrOkhmI9DPo qZ6+5RmlQ/N1+4qyLb8u2A9NZhesZv2Rd5chy42sWgmZloyL30LZ04CotxnLFb+HM7zA q2xJRsYqMgzooyeJPDRgsqwTFVhD7cjzMBgQEYiHBEDG98TLeizaZg22SkXy/l/Lb68e 1AR8Kw/zKf6+gYAG3/GrDAEGxrWbIR2HSrNsiViDhYWCmNARV3TmFAgPzRxzTlgHxPUs gFmA== Received: by 10.68.131.38 with SMTP id oj6mr3630520pbb.39.1339034554038; Wed, 06 Jun 2012 19:02:34 -0700 (PDT) Received: from yakj.usersys.redhat.com.usersys.redhat.com (p31127-ipngn1401hodogaya.kanagawa.ocn.ne.jp. [180.13.162.127]) by mx.google.com with ESMTPS id np8sm2282244pbc.71.2012.06.06.19.02.31 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 06 Jun 2012 19:02:32 -0700 (PDT) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Thu, 7 Jun 2012 04:02:20 +0200 Message-Id: <1339034542-8960-2-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.7.10.1 In-Reply-To: <1339034542-8960-1-git-send-email-pbonzini@redhat.com> References: <1339034542-8960-1-git-send-email-pbonzini@redhat.com> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.210.45 Cc: lcapitulino@redhat.com Subject: [Qemu-devel] [PATCH v2 1/3] kvm: add missing include files X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org These are included via monitor.h right now, add them explicitly. Signed-off-by: Paolo Bonzini --- kvm-all.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kvm-all.c b/kvm-all.c index 489ee53..831651d 100644 --- a/kvm-all.c +++ b/kvm-all.c @@ -22,6 +22,8 @@ #include "qemu-common.h" #include "qemu-barrier.h" +#include "qemu-option.h" +#include "qemu-config.h" #include "sysemu.h" #include "hw/hw.h" #include "hw/msi.h"