From mboxrd@z Thu Jan 1 00:00:00 1970 From: Takuya Yoshikawa Subject: Re: [PATCH 4/4 v2] KVM: Introduce kvm_memory_slot::arch and move lpage_info into it Date: Mon, 30 Jan 2012 13:58:12 +0900 Message-ID: <4F262364.20106@oss.ntt.co.jp> References: <20120130124859.6c3bb19f.yoshikawa.takuya@oss.ntt.co.jp> <20120130125308.51e22f12.yoshikawa.takuya@oss.ntt.co.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: kvm@vger.kernel.org To: avi@redhat.com, mtosatti@redhat.com Return-path: Received: from serv2.oss.ntt.co.jp ([222.151.198.100]:44038 "EHLO serv2.oss.ntt.co.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752273Ab2A3E4d (ORCPT ); Sun, 29 Jan 2012 23:56:33 -0500 In-Reply-To: <20120130125308.51e22f12.yoshikawa.takuya@oss.ntt.co.jp> Sender: kvm-owner@vger.kernel.org List-ID: (2012/01/30 12:53), Takuya Yoshikawa wrote: > @@ -833,7 +778,7 @@ int __kvm_set_memory_region(struct kvm *kvm, > if (!new.rmap) > goto out_free; > > - if (create_lpage_info(&new, npages)) > + if (kvm_arch_create_memslot(&new, npages)) > goto out_free; > #endif /* not defined CONFIG_S390 */ I have to move this #endif upwards to not include kvm_arch_create_memslot(). Will update patch 4 and resend from now. Takuya