Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1739113
| From | Paolo Bonzini <pbonzini@redhat.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall |
| Date | 2017-09-25 17:20 +0200 |
| Message-ID | <utDkR-86C-7@gated-at.bofh.it> (permalink) |
| References | (6 earlier) <usQka-22V-11@gated-at.bofh.it> <usSYG-3IO-5@gated-at.bofh.it> <utePv-EY-5@gated-at.bofh.it> <utrMK-bc-9@gated-at.bofh.it> <utxIu-4nC-27@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 25/09/2017 11:13, Peter Zijlstra wrote: > On Sun, Sep 24, 2017 at 11:57:53PM -0300, Marcelo Tosatti wrote: >> I think you are missing the following point: >> >> "vcpu0 can be interrupted when its not in a spinlock protected section, >> otherwise it can't." Who says that? Certainly a driver can dedicate a single VCPU to periodic polling of the device, in such a way that the polling does not require a spinlock. >> So you _have_ to communicate to the host when the guest enters/leaves a >> critical section. >> >> So this point of "everything needs to be RT and the priorities must be >> designed carefully", is this: >> >> WHEN in spinlock protected section (more specifically, when >> spinlock protected section _shared with realtime vcpus_), >> >> priority of vcpu0 > priority of emulator thread >> >> OTHERWISE >> >> priority of vcpu0 < priority of emulator thread. This is _not_ designed carefully, this is messy. The emulator thread can interrupt the VCPU thread, so it has to be at higher RT priority (+ priority inheritance of mutexes). Once you have done that we can decide on other approaches that e.g. let you get more sharing by placing housekeeping VCPUs at SCHED_NORMAL or SCHED_RR. >> So emulator thread can interrupt and inject interrupts to vcpu0. > > spinlock protected regions are not everything. What about lock-free > constructs where CPU's spin-wait on one another (there's plenty). > > And I'm clearly ignorant of how this emulation thread works, but why > would it run for a long time? Either it is needed for forward progress > of the VCPU or its not. If its not, it shouldn't run. The emulator thread 1) should not run for long period of times indeed, and 2) it is needed for forward progress of the VCPU. So it has to be at higher RT priority. I agree with Peter, sorry. Spinlocks are a red herring here. Paolo
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Marcelo Tosatti <mtosatti@redhat.com> - 2017-09-21 13:50 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> - 2017-09-21 15:40 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Peter Zijlstra <peterz@infradead.org> - 2017-09-21 16:10 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Marcelo Tosatti <mtosatti@redhat.com> - 2017-09-22 03:20 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Peter Zijlstra <peterz@infradead.org> - 2017-09-22 12:10 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Peter Zijlstra <peterz@infradead.org> - 2017-09-22 13:00 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Marcelo Tosatti <mtosatti@redhat.com> - 2017-09-22 14:40 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Peter Zijlstra <peterz@infradead.org> - 2017-09-22 15:00 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Paolo Bonzini <pbonzini@redhat.com> - 2017-09-23 13:00 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Peter Zijlstra <peterz@infradead.org> - 2017-09-23 15:50 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Paolo Bonzini <pbonzini@redhat.com> - 2017-09-24 15:10 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Marcelo Tosatti <mtosatti@redhat.com> - 2017-09-25 05:00 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Peter Zijlstra <peterz@infradead.org> - 2017-09-25 11:20 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Paolo Bonzini <pbonzini@redhat.com> - 2017-09-25 17:20 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> - 2017-09-25 18:30 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Marcelo Tosatti <mtosatti@redhat.com> - 2017-09-22 14:20 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Peter Zijlstra <peterz@infradead.org> - 2017-09-22 14:40 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Marcelo Tosatti <mtosatti@redhat.com> - 2017-09-22 14:40 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Peter Zijlstra <peterz@infradead.org> - 2017-09-22 15:10 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Marcelo Tosatti <mtosatti@redhat.com> - 2017-09-25 04:30 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall Peter Zijlstra <peterz@infradead.org> - 2017-09-25 10:40 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall\ Marcelo Tosatti <mtosatti@redhat.com> - 2017-09-22 14:50 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall\ Peter Zijlstra <peterz@infradead.org> - 2017-09-22 15:10 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall\ Marcelo Tosatti <mtosatti@redhat.com> - 2017-09-25 04:30 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall\ Peter Zijlstra <peterz@infradead.org> - 2017-09-25 11:00 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall\ Thomas Gleixner <tglx@linutronix.de> - 2017-09-25 12:50 +0200
Re: [patch 3/3] x86: kvm guest side support for KVM_HC_RT_PRIO hypercall\ Jan Kiszka <jan.kiszka@siemens.com> - 2017-09-25 20:40 +0200
csiph-web