From mboxrd@z Thu Jan 1 00:00:00 1970 From: john cooper Subject: Re: [ANNOUNCE] kvm-78 release Date: Tue, 04 Nov 2008 21:00:40 -0500 Message-ID: <4910FE48.3030503@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: KVM list , john.cooper@redhat.com To: Avi Kivity Return-path: Received: from mx2.redhat.com ([66.187.237.31]:37329 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754227AbYKECHC (ORCPT ); Tue, 4 Nov 2008 21:07:02 -0500 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id mA5271Fr018743 for ; Tue, 4 Nov 2008 21:07:01 -0500 Sender: kvm-owner@vger.kernel.org List-ID: Avi Kivity wrote: > A fairly boring bunch of changes; most visible is that we can boot > paravirt Linux kernels again, after kvm-77 broke it. Looks like vtd.c isn't being built when CONFIG_DMAR is enabled. -john ================================================================= --- a/kernel/x86/Kbuild +++ b/kernel/x86/Kbuild @@ -9,6 +9,9 @@ kvm-objs := kvm_main.o x86.o mmu.o x86_e ifeq ($(EXT_CONFIG_KVM_TRACE),y) kvm-objs += kvm_trace.o endif +ifeq ($(CONFIG_DMAR),y) +kvm-objs += vtd.o +endif kvm-intel-objs := vmx.o vmx-debug.o ../external-module-compat.o kvm-amd-objs := svm.o ../external-module-compat.o ================================================================= -- john.cooper@redhat.com