From patchwork Wed Jun 6 06:09:22 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 163256 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 7AB0AB6F62 for ; Wed, 6 Jun 2012 16:09:52 +1000 (EST) Received: from localhost ([::1]:42205 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sc9RG-0004v4-7Y for incoming@patchwork.ozlabs.org; Wed, 06 Jun 2012 02:09:50 -0400 Received: from eggs.gnu.org ([208.118.235.92]:52643) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sc9R2-0004rW-Lb for qemu-devel@nongnu.org; Wed, 06 Jun 2012 02:09:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sc9R1-0004MP-1c for qemu-devel@nongnu.org; Wed, 06 Jun 2012 02:09:36 -0400 Received: from mail-pb0-f45.google.com ([209.85.160.45]:57133) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sc9R0-0004M8-PS for qemu-devel@nongnu.org; Wed, 06 Jun 2012 02:09:34 -0400 Received: by pbbro12 with SMTP id ro12so9212149pbb.4 for ; Tue, 05 Jun 2012 23:09:32 -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=bSGK/4PI11RPVSveF6hAakx33bicecVY2B/0TXGZAMLDAxuTcMM84scFjCTvYZL80H C4LF9XmxyY4h3IJZsnQwQ1Vf4PFy9uDiuh6kjksjyFNTP6QBLznavZakAqFFRSABWy9P lbrGw/DpxWjineWrnOSBrU1utDn30XfDre0tVLYm9e+2Hqn3pLqQQTeoi1wX1KqeKwQs hzb//VO/TcxSKoNjElau50p/VpLKH94BEChV0jExauUUJ1XJz8ChOnZBw5/8fKX/UC3q 6Rr71ez+1TBkt9V6vaCwR1eBqOPoykhBmfVlEGkgbCT0B3o1+XF5S1DScPcj7tHhLuOt 0odQ== Received: by 10.68.197.71 with SMTP id is7mr35281245pbc.49.1338962972748; Tue, 05 Jun 2012 23:09:32 -0700 (PDT) Received: from yakj.usersys.redhat.com.usersys.redhat.com (p38067-ipngn2101hodogaya.kanagawa.ocn.ne.jp. [180.31.67.67]) by mx.google.com with ESMTPS id rv9sm1381588pbc.43.2012.06.05.23.09.30 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 05 Jun 2012 23:09:31 -0700 (PDT) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Wed, 6 Jun 2012 08:09:22 +0200 Message-Id: <1338962963-21277-1-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.7.10.1 In-Reply-To: <1338962922-21130-1-git-send-email-pbonzini@redhat.com> References: <1338962922-21130-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.160.45 Cc: lcapitulino@redhat.com Subject: [Qemu-devel] [PATCH 1/2] 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"