Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 172269
b: refs/heads/master
c: e42bba9
h: refs/heads/master
i:
  172267: a1a8b83
v: v3
  • Loading branch information
Gleb Natapov authored and Avi Kivity committed Dec 3, 2009
1 parent e4f4b88 commit 041acf0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3e71f88bc90792a187703860cf22fbed7c12cbd9
refs/heads/master: e42bba90bfe724e32fc66ab1b6cb283c51d064b1
16 changes: 11 additions & 5 deletions trunk/virt/kvm/irq_comm.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level)
* IOAPIC. So set the bit in both. The guest will ignore
* writes to the unused one.
*/
irq_rt = kvm->irq_routing;
rcu_read_lock();
irq_rt = rcu_dereference(kvm->irq_routing);
if (irq < irq_rt->nr_rt_entries)
hlist_for_each_entry(e, n, &irq_rt->map[irq], link) {
int r = e->set(e, kvm, irq_source_id, level);
Expand All @@ -168,6 +169,7 @@ int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level)

ret = r + ((ret < 0) ? 0 : ret);
}
rcu_read_unlock();
return ret;
}

Expand All @@ -179,7 +181,10 @@ void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin)

trace_kvm_ack_irq(irqchip, pin);

gsi = kvm->irq_routing->chip[irqchip][pin];
rcu_read_lock();
gsi = rcu_dereference(kvm->irq_routing)->chip[irqchip][pin];
rcu_read_unlock();

if (gsi != -1)
hlist_for_each_entry(kian, n, &kvm->arch.irq_ack_notifier_list,
link)
Expand Down Expand Up @@ -279,9 +284,9 @@ void kvm_fire_mask_notifiers(struct kvm *kvm, int irq, bool mask)

void kvm_free_irq_routing(struct kvm *kvm)
{
mutex_lock(&kvm->irq_lock);
/* Called only during vm destruction. Nobody can use the pointer
at this stage */
kfree(kvm->irq_routing);
mutex_unlock(&kvm->irq_lock);
}

static int setup_routing_entry(struct kvm_irq_routing_table *rt,
Expand Down Expand Up @@ -387,8 +392,9 @@ int kvm_set_irq_routing(struct kvm *kvm,

mutex_lock(&kvm->irq_lock);
old = kvm->irq_routing;
kvm->irq_routing = new;
rcu_assign_pointer(kvm->irq_routing, new);
mutex_unlock(&kvm->irq_lock);
synchronize_rcu();

new = old;
r = 0;
Expand Down

0 comments on commit 041acf0

Please sign in to comment.