| 
         
xen-devel
Re: [Xen-devel] Re: [GIT PULL] xen /proc/mtrr implementation
 
| 
To:  | 
Ingo Molnar <mingo@xxxxxxx> | 
 
| 
Subject:  | 
Re: [Xen-devel] Re: [GIT PULL] xen /proc/mtrr implementation | 
 
| 
From:  | 
Jeremy Fitzhardinge <jeremy@xxxxxxxx> | 
 
| 
Date:  | 
Wed, 20 May 2009 09:35:26 -0700 | 
 
| 
Cc:  | 
Xen-devel <xen-devel@xxxxxxxxxxxxxxxxxxx>,	the arch/x86 maintainers <x86@xxxxxxxxxx>,	Linux Kernel Mailing List <linux-kernel@xxxxxxxxxxxxxxx>,	Jan Beulich <JBeulich@xxxxxxxxxx>, Jesse Barnes <jbarnes@xxxxxxxxxxxxxxxx>,	"H. Peter Anvin" <hpa@xxxxxxxxx>, Thomas Gleixner <tglx@xxxxxxxxxxxxx>,	Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx>,	"Eric W. Biederman" <ebiederm@xxxxxxxxxxxx> | 
 
| 
Delivery-date:  | 
Wed, 20 May 2009 09:35:56 -0700 | 
 
| 
Envelope-to:  | 
www-data@xxxxxxxxxxxxxxxxxxx | 
 
| 
In-reply-to:  | 
<20090519110837.GA10548@xxxxxxx> | 
 
| 
List-help:  | 
<mailto:xen-devel-request@lists.xensource.com?subject=help> | 
 
| 
List-id:  | 
Xen developer discussion <xen-devel.lists.xensource.com> | 
 
| 
List-post:  | 
<mailto:xen-devel@lists.xensource.com> | 
 
| 
List-subscribe:  | 
<http://lists.xensource.com/mailman/listinfo/xen-devel>,	<mailto:xen-devel-request@lists.xensource.com?subject=subscribe> | 
 
| 
List-unsubscribe:  | 
<http://lists.xensource.com/mailman/listinfo/xen-devel>,	<mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe> | 
 
| 
References:  | 
<4A0DCC11.10307@xxxxxxxx> <m1my9ex818.fsf@xxxxxxxxxxxxxxxxx>	<4A0DFF78.6000501@xxxxxxxx> <20090515202250.0f1218ef@jbarnes-g45>	<m1iqk1k708.fsf@xxxxxxxxxxxxxxxxx> <4A10EAC4.9070701@xxxxxxxx>	<20090518085902.GE10687@xxxxxxx> <4A11A3F8.1010202@xxxxxxxx>	<20090519095918.GA11790@xxxxxxx>	<4A12A46A02000078000017E1@xxxxxxxxxxxxxxxxxx>	<20090519110837.GA10548@xxxxxxx> | 
 
| 
Sender:  | 
xen-devel-bounces@xxxxxxxxxxxxxxxxxxx | 
 
| 
User-agent:  | 
Thunderbird 2.0.0.21 (X11/20090320) | 
 
 
 
Ingo Molnar wrote:
 
* Jan Beulich <JBeulich@xxxxxxxxxx> wrote:
   
Ingo Molnar <mingo@xxxxxxx> 19.05.09 11:59 >>>
           
  Exactly what is 'bizarre' about using the API defined by the 
_CPU_ already, without adding any ad-hoc hypecall? Catch the 
dom0 WRMSRs, filter out the MTRR indices - that's it.
      
 But that is *not* the same as using the hypercalls: The hypercall 
tells Xen "Change all CPUs' MTRRs with the indicated index to the 
indicated value", while the MSR write says "Change the MTRR with 
the given index on the physical CPU the current virtual CPU 
happens to run on to the given value". [...]
    
 
 The change of MTRR's on _any_ of the guest CPUs in a dom0 context 
should immediately be refected on all CPUs. Assymetric MTRR settings 
are madness.
 ( And the thing is, changing MTRRs is fragile and racy on native 
  Linux no matter what - even without any hypervisors - due to SMM 
  contexts possibly relying on them etc. )
   
[...] A write-base/write-mask pair may happen to get interrupted 
(preempted) by the hypervisor, and hence the two writes may happen 
on different pCPU-s. Teaching the hypervisor to (correctly!) guess 
what the guest meant in that situation isn't trivial, as then it 
needs to handle all possible situations (and it can never know 
whether Dom0 really intended to do something that may look 
bogus/inconsistent at the first glance). [...]
    
 
 None of this is a problem really if a sane approach is used: a 
change to the MTRR state on dom0 is applied symmetrically on all 
CPUs.
 Or, alternatively, the hypervisor can expose its own administrative 
interface to manage MTRRs.
There's no need to fuglify the Linux kernel for that.
 
 
 I'm not sure what you mean by that, other than as a description of the 
current case.  The Xen MTRR hypercall:
  1. treats MTRR ranges as allocatable resources, and keep track of how
     many uses there are of each
  2. updates all physical cpus synchronously (ie, the MTRR is not
     presented as a property of dom0's virtual CPU, but as a
     system-wide resource)
  3. prevents guests from setting inconsistent or conflicting MTRRs
Mapping from MSR writes to this interface is moderately complex, because 
it requires a mapping from a low-semantic-content interface to a 
high-semantic-content interface.  It essentially requires parsing the 
MSR writes to map them back to the relatively high-level operations at 
the mtrr_ops interface and then present that to Xen.
 There are at least a couple of secondary issues which arise from that 
approach:
   * mtrr/generic.c also has to do a number of other things like
     disabling caching, tlb flushes, etc.  That adds complexity because
     Xen guests are never allowed to globally disable caching, so we'd
     have to add additional filtering to remove those cr0 writes
   * As we've discussed, we'd need to make the mtrr writes implicitly
     change all cpus atomically, as the dom0 kernel can't see physical cpus
The net effect would be that we would be making a pile of apparently 
generic CPU operations (MSR writes, control register writes) actually 
feed a fairly complex parser, increasing the difference between the Xen 
and native cases even more.
 mtrr/generic.c about 730 lines of fairly intricate arch-specific code.  
mtrr/xen.c is 120 lines of straightforward hypercalls.  The mtrr_ops 
interface and the Xen hypercall interface are a close semantic match, so 
there's very little glue code in there.
 But that said, this a huge distraction, an unbelievable amount of noise 
for a fairly minor point.  We can live without these changes, and 
they're certainly easy enough to carry out of tree in the meantime.  If 
you can't live with these changes, then drop them and we'll work out 
something else.
   J
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
 
 |   
 
| <Prev in Thread] | 
Current Thread | 
[Next in Thread>
 |  
- Re: [Xen-devel] Re: [GIT PULL] xen /proc/mtrr implementation, (continued)
 
- Re: [Xen-devel] Re: [GIT PULL] xen /proc/mtrr implementation, Gerd Hoffmann
 - Re: [Xen-devel] Re: [GIT PULL] xen /proc/mtrr implementation, Ingo Molnar
 - Re: [Xen-devel] Re: [GIT PULL] xen /proc/mtrr implementation, Gerd Hoffmann
 - Re: [Xen-devel] Re: [GIT PULL] xen /proc/mtrr implementation, Ingo Molnar
 - Re: [Xen-devel] Re: [GIT PULL] xen /proc/mtrr implementation, Gerd Hoffmann
 - Re: [Xen-devel] Re: [GIT PULL] xen /proc/mtrr implementation, Ingo Molnar
 - Re: [Xen-devel] Re: [GIT PULL] xen /proc/mtrr implementation, Gerd Hoffmann
 
- Re: [Xen-devel] Re: [GIT PULL] xen /proc/mtrr implementation,
Jeremy Fitzhardinge <=
 
- [Xen-devel] Re: [GIT PULL] xen /proc/mtrr implementation, Jeremy Fitzhardinge
 
- [Xen-devel] Re: [GIT PULL] xen /proc/mtrr implementation, Andi Kleen
 - [Xen-devel] Re: [GIT PULL] xen /proc/mtrr implementation, Jeremy Fitzhardinge
 - [Xen-devel] Re: [GIT PULL] xen /proc/mtrr implementation, Andi Kleen
 - [Xen-devel] Re: [GIT PULL] xen /proc/mtrr implementation, Jeremy Fitzhardinge
 
- [Xen-devel] Re: [GIT PULL] xen /proc/mtrr implementation, H. Peter Anvin
 
- [Xen-devel] Re: [GIT PULL] xen /proc/mtrr implementation, Chris Wright
 
 
 |  
  
 | 
    |