From mboxrd@z Thu Jan 1 00:00:00 1970 From: Don Slutz Subject: Re: [PATCH v8 1/3] xen/libxc: Allow changing max number of hypervisor cpuid leaves Date: Tue, 22 Apr 2014 10:26:16 -0400 Message-ID: <53567C08.5080702@terremark.com> References: <1398117433-6428-1-git-send-email-boris.ostrovsky@oracle.com> <1398117433-6428-2-git-send-email-boris.ostrovsky@oracle.com> <53565673020000780000AA82@nat28.tlf.novell.com> <53566159.2090105@oracle.com> <53567F9A020000780000AC42@nat28.tlf.novell.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <53567F9A020000780000AC42@nat28.tlf.novell.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Jan Beulich , Boris Ostrovsky Cc: kevin.tian@intel.com, ian.campbell@citrix.com, stefano.stabellini@eu.citrix.com, andrew.cooper3@citrix.com, eddie.dong@intel.com, xen-devel@lists.xen.org, yang.z.zhang@intel.com, ian.jackson@eu.citrix.com List-Id: xen-devel@lists.xenproject.org On 04/22/14 08:41, Jan Beulich wrote: >>>> On 22.04.14 at 14:32, wrote: >> On 04/22/2014 05:45 AM, Jan Beulich wrote: >>>>>> On 21.04.14 at 23:57, wrote: >>>> + if ( (limit < 2) || (limit > XEN_CPUID_MAX_NUM_LEAVES) ) >>>> + limit = XEN_CPUID_MAX_NUM_LEAVES; >>> Almost: If limit < 2, you would be better off using 2 rather than the >>> default (which may be growing). >> My thinking was that for any invalid limit value we should ignore what >> the user file specified, not try to guess what was meant. > And I think that 0 or 1 aren't really invalid - if a lower limit is wanted, > provided as low as possible one rather than ignoring the request (I > didn't look at what upsets hvmloader - I suppose this could be fixed > rather than going with the slightly awkward lower limit of 2). I think the routine init_hypercalls() is where hvmloader gets upset: /* Fill in hypercall transfer pages. */ cpuid(base + 2, &eax, &ebx, &ecx, &edx); for ( i = 0; i < eax; i++ ) wrmsr(ebx, HYPERCALL_PHYSICAL_ADDRESS + (i << 12) + i); -Don Slutz > Jan > > > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists.xen.org > http://lists.xen.org/xen-devel