* [PATCH 2/3] KVM: Centralize slots_lock aquisition during
@ 2010-12-15 16:43 Takuya Yoshikawa
2010-12-16 9:11 ` [PATCH 2/3] KVM: Centralize slots_lock aquisition during KVM_CREATE_IRQCHIP Avi Kivity
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Takuya Yoshikawa @ 2010-12-15 16:43 UTC (permalink / raw)
To: kvm-ia64
From: Takuya Yoshikawa <yoshikawa.takuya@oss.ntt.co.jp>
Move slots_lock aquisition from kvm_ioapic_init() and kvm_create_pic()
to their caller.
As a result, x86's KVM_CREATE_IRQCHIP is now covered by a unified slots_lock
section, including kvm_setup_default_irq_routing().
Signed-off-by: Takuya Yoshikawa <yoshikawa.takuya@oss.ntt.co.jp>
---
arch/ia64/kvm/kvm-ia64.c | 2 ++
arch/x86/kvm/i8259.c | 2 --
arch/x86/kvm/x86.c | 6 ++----
virt/kvm/ioapic.c | 2 --
4 files changed, 4 insertions(+), 8 deletions(-)
diff --git a/arch/ia64/kvm/kvm-ia64.c b/arch/ia64/kvm/kvm-ia64.c
index 70d224d..060c594 100644
--- a/arch/ia64/kvm/kvm-ia64.c
+++ b/arch/ia64/kvm/kvm-ia64.c
@@ -946,7 +946,9 @@ long kvm_arch_vm_ioctl(struct file *filp,
}
case KVM_CREATE_IRQCHIP:
r = -EFAULT;
+ mutex_lock(&kvm->slots_lock);
r = kvm_ioapic_init(kvm);
+ mutex_unlock(&kvm->slots_lock);
if (r)
goto out;
r = kvm_setup_default_irq_routing(kvm);
diff --git a/arch/x86/kvm/i8259.c b/arch/x86/kvm/i8259.c
index f628234..37d24bc 100644
--- a/arch/x86/kvm/i8259.c
+++ b/arch/x86/kvm/i8259.c
@@ -580,9 +580,7 @@ struct kvm_pic *kvm_create_pic(struct kvm *kvm)
* Initialize PIO device
*/
kvm_iodevice_init(&s->dev, &picdev_ops);
- mutex_lock(&kvm->slots_lock);
ret = kvm_io_bus_register_dev(kvm, KVM_PIO_BUS, &s->dev);
- mutex_unlock(&kvm->slots_lock);
if (ret < 0) {
kfree(s);
return NULL;
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index 3113aaf..736ab93 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -3300,6 +3300,7 @@ long kvm_arch_vm_ioctl(struct file *filp,
struct kvm_pic *vpic;
mutex_lock(&kvm->lock);
+ mutex_lock(&kvm->slots_lock);
r = -EEXIST;
if (kvm->arch.vpic)
goto create_irqchip_unlock;
@@ -3308,10 +3309,8 @@ long kvm_arch_vm_ioctl(struct file *filp,
if (vpic) {
r = kvm_ioapic_init(kvm);
if (r) {
- mutex_lock(&kvm->slots_lock);
kvm_io_bus_unregister_dev(kvm, KVM_PIO_BUS,
&vpic->dev);
- mutex_unlock(&kvm->slots_lock);
kfree(vpic);
goto create_irqchip_unlock;
}
@@ -3322,14 +3321,13 @@ long kvm_arch_vm_ioctl(struct file *filp,
smp_wmb();
r = kvm_setup_default_irq_routing(kvm);
if (r) {
- mutex_lock(&kvm->slots_lock);
mutex_lock(&kvm->irq_lock);
kvm_ioapic_destroy(kvm);
kvm_destroy_pic(kvm);
mutex_unlock(&kvm->irq_lock);
- mutex_unlock(&kvm->slots_lock);
}
create_irqchip_unlock:
+ mutex_unlock(&kvm->slots_lock);
mutex_unlock(&kvm->lock);
break;
}
diff --git a/virt/kvm/ioapic.c b/virt/kvm/ioapic.c
index 0b9df83..532bffc 100644
--- a/virt/kvm/ioapic.c
+++ b/virt/kvm/ioapic.c
@@ -393,9 +393,7 @@ int kvm_ioapic_init(struct kvm *kvm)
kvm_ioapic_reset(ioapic);
kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops);
ioapic->kvm = kvm;
- mutex_lock(&kvm->slots_lock);
ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, &ioapic->dev);
- mutex_unlock(&kvm->slots_lock);
if (ret < 0) {
kvm->arch.vioapic = NULL;
kfree(ioapic);
--
1.7.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH 2/3] KVM: Centralize slots_lock aquisition during KVM_CREATE_IRQCHIP
2010-12-15 16:43 [PATCH 2/3] KVM: Centralize slots_lock aquisition during Takuya Yoshikawa
@ 2010-12-16 9:11 ` Avi Kivity
2010-12-16 9:29 ` Takuya Yoshikawa
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Avi Kivity @ 2010-12-16 9:11 UTC (permalink / raw)
To: kvm-ia64
On 12/15/2010 06:43 PM, Takuya Yoshikawa wrote:
> From: Takuya Yoshikawa<yoshikawa.takuya@oss.ntt.co.jp>
>
> Move slots_lock aquisition from kvm_ioapic_init() and kvm_create_pic()
> to their caller.
>
> As a result, x86's KVM_CREATE_IRQCHIP is now covered by a unified slots_lock
> section, including kvm_setup_default_irq_routing().
>
>
I'm not sure about this...
> --- a/arch/x86/kvm/x86.c
> +++ b/arch/x86/kvm/x86.c
> @@ -3300,6 +3300,7 @@ long kvm_arch_vm_ioctl(struct file *filp,
> struct kvm_pic *vpic;
>
> mutex_lock(&kvm->lock);
> + mutex_lock(&kvm->slots_lock);
here, the reader might wonder why we take slots_lock, since we aren't
manipulating anything covered by the lock directly.
> r = -EEXIST;
> if (kvm->arch.vpic)
> goto create_irqchip_unlock;
> @@ -3308,10 +3309,8 @@ long kvm_arch_vm_ioctl(struct file *filp,
> if (vpic) {
> r = kvm_ioapic_init(kvm);
> if (r) {
> - mutex_lock(&kvm->slots_lock);
and here, the reader might wonder why we don't take slots_lock, which
protects io_bus.
Maybe we ought to move slots_lock acquisition to kvm_io_bus_register()
and friends.
--
error compiling committee.c: too many arguments to function
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH 2/3] KVM: Centralize slots_lock aquisition during KVM_CREATE_IRQCHIP
2010-12-15 16:43 [PATCH 2/3] KVM: Centralize slots_lock aquisition during Takuya Yoshikawa
2010-12-16 9:11 ` [PATCH 2/3] KVM: Centralize slots_lock aquisition during KVM_CREATE_IRQCHIP Avi Kivity
@ 2010-12-16 9:29 ` Takuya Yoshikawa
2010-12-16 9:34 ` Avi Kivity
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Takuya Yoshikawa @ 2010-12-16 9:29 UTC (permalink / raw)
To: kvm-ia64
(2010/12/16 18:11), Avi Kivity wrote:
> On 12/15/2010 06:43 PM, Takuya Yoshikawa wrote:
>> From: Takuya Yoshikawa<yoshikawa.takuya@oss.ntt.co.jp>
>>
>> Move slots_lock aquisition from kvm_ioapic_init() and kvm_create_pic()
>> to their caller.
>>
>> As a result, x86's KVM_CREATE_IRQCHIP is now covered by a unified slots_lock
>> section, including kvm_setup_default_irq_routing().
>>
>>
>
> I'm not sure about this...
>
>> --- a/arch/x86/kvm/x86.c
>> +++ b/arch/x86/kvm/x86.c
>> @@ -3300,6 +3300,7 @@ long kvm_arch_vm_ioctl(struct file *filp,
>> struct kvm_pic *vpic;
>>
>> mutex_lock(&kvm->lock);
>> + mutex_lock(&kvm->slots_lock);
>
> here, the reader might wonder why we take slots_lock, since we aren't manipulating anything covered by the lock directly.
>
>> r = -EEXIST;
>> if (kvm->arch.vpic)
>> goto create_irqchip_unlock;
>> @@ -3308,10 +3309,8 @@ long kvm_arch_vm_ioctl(struct file *filp,
>> if (vpic) {
>> r = kvm_ioapic_init(kvm);
>> if (r) {
>> - mutex_lock(&kvm->slots_lock);
>
> and here, the reader might wonder why we don't take slots_lock, which protects io_bus.
>
> Maybe we ought to move slots_lock acquisition to kvm_io_bus_register() and friends.
>
So it will move the lock acquisition to the opposite ( callee ) side than mine.
At first, I tried to do that, but there are so many ...
Anyway, your suggestion seems to be the best way if possible.
One question: how about kvm_io_bus_[read|write] ?
These are called from the emulator but I could not find where slots_lock
are held though I can see the comments
"kvm_io_bus_[read|write] - called under kvm->slots_lock"
Takuya
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH 2/3] KVM: Centralize slots_lock aquisition during KVM_CREATE_IRQCHIP
2010-12-15 16:43 [PATCH 2/3] KVM: Centralize slots_lock aquisition during Takuya Yoshikawa
2010-12-16 9:11 ` [PATCH 2/3] KVM: Centralize slots_lock aquisition during KVM_CREATE_IRQCHIP Avi Kivity
2010-12-16 9:29 ` Takuya Yoshikawa
@ 2010-12-16 9:34 ` Avi Kivity
2010-12-16 9:47 ` Takuya Yoshikawa
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Avi Kivity @ 2010-12-16 9:34 UTC (permalink / raw)
To: kvm-ia64
On 12/16/2010 11:29 AM, Takuya Yoshikawa wrote:
>> and here, the reader might wonder why we don't take slots_lock, which
>> protects io_bus.
>>
>> Maybe we ought to move slots_lock acquisition to
>> kvm_io_bus_register() and friends.
>>
>
>
> So it will move the lock acquisition to the opposite ( callee ) side
> than mine.
> At first, I tried to do that, but there are so many ...
>
> Anyway, your suggestion seems to be the best way if possible.
>
>
> One question: how about kvm_io_bus_[read|write] ?
>
> These are called from the emulator but I could not find where slots_lock
> are held though I can see the comments
>
> "kvm_io_bus_[read|write] - called under kvm->slots_lock"
>
They're under srcu now, the comments are outdated.
We used to have slots_lock be a rwsem, taken for read or write as
necessary. Now we use srcu for read, and the slots_lock mutex +
synchronize_srcu for write.
--
error compiling committee.c: too many arguments to function
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH 2/3] KVM: Centralize slots_lock aquisition during KVM_CREATE_IRQCHIP
2010-12-15 16:43 [PATCH 2/3] KVM: Centralize slots_lock aquisition during Takuya Yoshikawa
` (2 preceding siblings ...)
2010-12-16 9:34 ` Avi Kivity
@ 2010-12-16 9:47 ` Takuya Yoshikawa
2010-12-16 9:55 ` Avi Kivity
2010-12-16 12:51 ` [PATCH 2/3] KVM: Centralize slots_lock aquisition during Takuya Yoshikawa
5 siblings, 0 replies; 7+ messages in thread
From: Takuya Yoshikawa @ 2010-12-16 9:47 UTC (permalink / raw)
To: kvm-ia64
(2010/12/16 18:34), Avi Kivity wrote:
>>> Maybe we ought to move slots_lock acquisition to kvm_io_bus_register() and friends.
>>>
>>
>>
>> So it will move the lock acquisition to the opposite ( callee ) side than mine.
>> At first, I tried to do that, but there are so many ...
>>
>> Anyway, your suggestion seems to be the best way if possible.
>>
>>
>> One question: how about kvm_io_bus_[read|write] ?
>>
>> These are called from the emulator but I could not find where slots_lock
>> are held though I can see the comments
>>
>> "kvm_io_bus_[read|write] - called under kvm->slots_lock"
>>
>
> They're under srcu now, the comments are outdated.
>
> We used to have slots_lock be a rwsem, taken for read or write as necessary. Now we use srcu for read, and the slots_lock mutex + synchronize_srcu for write.
>
Ah, would you mind updating the comments?
- or just removing outdated ones?
I will reread these locking based on your answer!
Thanks,
Takuya
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH 2/3] KVM: Centralize slots_lock aquisition during KVM_CREATE_IRQCHIP
2010-12-15 16:43 [PATCH 2/3] KVM: Centralize slots_lock aquisition during Takuya Yoshikawa
` (3 preceding siblings ...)
2010-12-16 9:47 ` Takuya Yoshikawa
@ 2010-12-16 9:55 ` Avi Kivity
2010-12-16 12:51 ` [PATCH 2/3] KVM: Centralize slots_lock aquisition during Takuya Yoshikawa
5 siblings, 0 replies; 7+ messages in thread
From: Avi Kivity @ 2010-12-16 9:55 UTC (permalink / raw)
To: kvm-ia64
On 12/16/2010 11:47 AM, Takuya Yoshikawa wrote:
>> They're under srcu now, the comments are outdated.
>>
>> We used to have slots_lock be a rwsem, taken for read or write as
>> necessary. Now we use srcu for read, and the slots_lock mutex +
>> synchronize_srcu for write.
>>
>
>
> Ah, would you mind updating the comments?
> - or just removing outdated ones?
>
>
Fixing the comments would be good.
> I will reread these locking based on your answer!
>
One day I'll write Documentation/kvm/locking.txt, so it could get
outdated as well.
--
error compiling committee.c: too many arguments to function
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH 2/3] KVM: Centralize slots_lock aquisition during
2010-12-15 16:43 [PATCH 2/3] KVM: Centralize slots_lock aquisition during Takuya Yoshikawa
` (4 preceding siblings ...)
2010-12-16 9:55 ` Avi Kivity
@ 2010-12-16 12:51 ` Takuya Yoshikawa
5 siblings, 0 replies; 7+ messages in thread
From: Takuya Yoshikawa @ 2010-12-16 12:51 UTC (permalink / raw)
To: kvm-ia64
Avi Kivity <avi@redhat.com> wrote:
>
> One day I'll write Documentation/kvm/locking.txt, so it could get
> outdated as well.
>
I seemed to be in EOY(End Of Year) mode.
I remember why I could not move slots_lock acquisition to
kvm_io_bus_[un]register().
The locking order constraint forced me to take slots_lock
outside of irq_lock.
So there won't be much things to be done anymore except your
documentation!
Thanks,
Takuya
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2010-12-16 12:51 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-15 16:43 [PATCH 2/3] KVM: Centralize slots_lock aquisition during Takuya Yoshikawa
2010-12-16 9:11 ` [PATCH 2/3] KVM: Centralize slots_lock aquisition during KVM_CREATE_IRQCHIP Avi Kivity
2010-12-16 9:29 ` Takuya Yoshikawa
2010-12-16 9:34 ` Avi Kivity
2010-12-16 9:47 ` Takuya Yoshikawa
2010-12-16 9:55 ` Avi Kivity
2010-12-16 12:51 ` [PATCH 2/3] KVM: Centralize slots_lock aquisition during Takuya Yoshikawa
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox