Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 362755
b: refs/heads/master
c: 94032c5
h: refs/heads/master
i:
  362753: 5b94437
  362751: 9fc882b
v: v3
  • Loading branch information
Konrad Rzeszutek Wilk committed Apr 16, 2013
1 parent 7e2b63e commit d5c5757
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 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: 7918c92ae9638eb8a6ec18e2b4a0de84557cccc8
refs/heads/master: 94032c506720e26402db64987e08168565b57990
20 changes: 19 additions & 1 deletion trunk/drivers/xen/events.c
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,9 @@ static void xen_free_irq(unsigned irq)
{
struct irq_info *info = irq_get_handler_data(irq);

if (WARN_ON(!info))
return;

list_del(&info->list);

irq_set_handler_data(irq, NULL);
Expand Down Expand Up @@ -1003,6 +1006,9 @@ static void unbind_from_irq(unsigned int irq)
int evtchn = evtchn_from_irq(irq);
struct irq_info *info = irq_get_handler_data(irq);

if (WARN_ON(!info))
return;

mutex_lock(&irq_mapping_update_lock);

if (info->refcnt > 0) {
Expand Down Expand Up @@ -1130,6 +1136,10 @@ int bind_ipi_to_irqhandler(enum ipi_vector ipi,

void unbind_from_irqhandler(unsigned int irq, void *dev_id)
{
struct irq_info *info = irq_get_handler_data(irq);

if (WARN_ON(!info))
return;
free_irq(irq, dev_id);
unbind_from_irq(irq);
}
Expand Down Expand Up @@ -1441,6 +1451,9 @@ void rebind_evtchn_irq(int evtchn, int irq)
{
struct irq_info *info = info_for_irq(irq);

if (WARN_ON(!info))
return;

/* Make sure the irq is masked, since the new event channel
will also be masked. */
disable_irq(irq);
Expand Down Expand Up @@ -1714,7 +1727,12 @@ void xen_poll_irq(int irq)
int xen_test_irq_shared(int irq)
{
struct irq_info *info = info_for_irq(irq);
struct physdev_irq_status_query irq_status = { .irq = info->u.pirq.pirq };
struct physdev_irq_status_query irq_status;

if (WARN_ON(!info))
return -ENOENT;

irq_status.irq = info->u.pirq.pirq;

if (HYPERVISOR_physdev_op(PHYSDEVOP_irq_status_query, &irq_status))
return 0;
Expand Down

0 comments on commit d5c5757

Please sign in to comment.